From 738496efbc14e11bbf412c3baa844c0796f17a86 Mon Sep 17 00:00:00 2001 From: Neil Lathwood Date: Fri, 3 Jan 2025 22:30:09 +0000 Subject: [PATCH] Corrected index for EXOS sensors (#16928) * Corrected index for EXOS sensors * Updated yaml discovery and test data --- includes/definitions/discovery/exos.yaml | 9 + .../discovery/sensors/current/exos.inc.php | 2 +- .../discovery/sensors/pre-cache/exos.inc.php | 2 +- .../sensors/temperature/exos.inc.php | 2 +- .../discovery/sensors/voltage/exos.inc.php | 2 +- tests/data/exos.json | 5828 ++++++++++++++++- tests/snmpsim/exos.snmprec | 2460 ++++++- 7 files changed, 8082 insertions(+), 223 deletions(-) diff --git a/includes/definitions/discovery/exos.yaml b/includes/definitions/discovery/exos.yaml index 45ef0c173d79..cfefe9be3f5f 100644 --- a/includes/definitions/discovery/exos.yaml +++ b/includes/definitions/discovery/exos.yaml @@ -13,6 +13,7 @@ modules: descr: 'Connectivity Unit State' index: 'connUnitState.{{ $index }}' state_name: connUnitState + snmp_flags: ['-OteQUsab'] states: - { value: 2, generic: 0, graph: 0, descr: Online } - { value: 3, generic: 2, graph: 0, descr: Offline } @@ -24,6 +25,7 @@ modules: descr: 'Connectivity Unit Status' index: 'connUnitStatus.{{ $index }}' state_name: connUnitStatus + snmp_flags: ['-OteQUsab'] states: - { value: 1, generic: 3, graph: 0, descr: none } - { value: 2, generic: 3, graph: 0, descr: Unused } @@ -37,6 +39,12 @@ modules: descr: 'Principal Unit' index: 'connUnitPrincipal.{{ $index }}' state_name: connUnitPrincipal + snmp_flags: ['-OteQUsab'] + skip_values: + - + oid: connUnitPrincipal + op: '=' + value: 1 states: - { value: 1, generic: 3, graph: 0, descr: Unknown } - { value: 2, generic: 0, graph: 0, descr: No } @@ -48,6 +56,7 @@ modules: descr: '{{ $connUnitSensorName }}' index: 'connUnitSensorName.{{ $index }}' state_name: connUnitSensorName + snmp_flags: ['-OteQUsab'] states: - { value: 1, generic: 3, graph: 0, descr: Unknown } - { value: 2, generic: 3, graph: 0, descr: Other } diff --git a/includes/discovery/sensors/current/exos.inc.php b/includes/discovery/sensors/current/exos.inc.php index ae3d565f3842..810cb9ee5ffa 100644 --- a/includes/discovery/sensors/current/exos.inc.php +++ b/includes/discovery/sensors/current/exos.inc.php @@ -6,7 +6,7 @@ foreach ($pre_cache['exos']['connUnitSensorTable'] as $index => $entry) { if (preg_match('/Current.* ([: 0-9\.]+A)/', $entry['connUnitSensorMessage'], $temp_value)) { $value = str_replace('A', '', $temp_value[1]); - discover_sensor($valid['sensor'], 'current', $device, ".1.3.6.1.3.94.1.8.1.6.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.{$entry['connUnitSensorIndex']}", $entry['connUnitSensorIndex'], 'exos', $entry['connUnitSensorName'], 1, '1', null, null, null, null, $value); + discover_sensor($valid['sensor'], 'current', $device, ".1.3.6.1.3.94.1.8.1.6.{$index}", $entry['connUnitSensorIndex'], 'exos', $entry['connUnitSensorName'], 1, '1', null, null, null, null, $value); } } } diff --git a/includes/discovery/sensors/pre-cache/exos.inc.php b/includes/discovery/sensors/pre-cache/exos.inc.php index 4e7e54c46a74..d48dc4a33813 100644 --- a/includes/discovery/sensors/pre-cache/exos.inc.php +++ b/includes/discovery/sensors/pre-cache/exos.inc.php @@ -1,4 +1,4 @@ $entry) { if (preg_match('/ Temp.* ([: 0-9]+ C)/', $entry['connUnitSensorMessage'], $temp_value)) { [$value, $dump] = explode(' ', $temp_value[1]); - discover_sensor($valid['sensor'], 'temperature', $device, ".1.3.6.1.3.94.1.8.1.6.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.{$entry['connUnitSensorIndex']}", $entry['connUnitSensorIndex'], 'exos', $entry['connUnitSensorName'], 1, '1', null, null, null, null, $value); + discover_sensor($valid['sensor'], 'temperature', $device, ".1.3.6.1.3.94.1.8.1.6.{$index}", $entry['connUnitSensorIndex'], 'exos', $entry['connUnitSensorName'], 1, '1', null, null, null, null, $value); } } } diff --git a/includes/discovery/sensors/voltage/exos.inc.php b/includes/discovery/sensors/voltage/exos.inc.php index 1fafb1e9f10b..76aa0ac387e1 100644 --- a/includes/discovery/sensors/voltage/exos.inc.php +++ b/includes/discovery/sensors/voltage/exos.inc.php @@ -6,7 +6,7 @@ foreach ($pre_cache['exos']['connUnitSensorTable'] as $index => $entry) { if (preg_match('/Voltage.* ([: 0-9\.]+V)/', $entry['connUnitSensorMessage'], $temp_value)) { $value = str_replace('V', '', $temp_value[1]); - discover_sensor($valid['sensor'], 'voltage', $device, ".1.3.6.1.3.94.1.8.1.6.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.{$entry['connUnitSensorIndex']}", $entry['connUnitSensorIndex'], 'exos', $entry['connUnitSensorName'], 1, '1', null, null, null, null, $value); + discover_sensor($valid['sensor'], 'voltage', $device, ".1.3.6.1.3.94.1.8.1.6.{$index}", $entry['connUnitSensorIndex'], 'exos', $entry['connUnitSensorName'], 1, '1', null, null, null, null, $value); } } } diff --git a/tests/data/exos.json b/tests/data/exos.json index 597c688d4684..9bf962cd473b 100644 --- a/tests/data/exos.json +++ b/tests/data/exos.json @@ -3,14 +3,14 @@ "discovery": { "devices": [ { - "sysName": null, + "sysName": "hostname", "sysObjectID": ".1.3.6.1.4.1.347.2.5730", "sysDescr": "SEAGATE 4466", - "sysContact": null, + "sysContact": "", "version": null, "hardware": null, "features": null, - "location": null, + "location": "LOC", "os": "exos", "type": "storage", "serial": null, @@ -665,11 +665,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 501131, + "ifInUcastPkts": 50758, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 501131, + "ifOutUcastPkts": 50758, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -681,11 +681,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 191370035, + "ifInOctets": 19484745, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 191370035, + "ifOutOctets": 19484745, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -849,7 +849,7 @@ "ifType": "ethernetCsmacd", "ifAlias": "eth0", "ifPhysAddress": "00c0ff6322ab", - "ifLastChange": 282526483, + "ifLastChange": 0, "ifVlan": null, "ifTrunk": null, "ignore": 0, @@ -865,11 +865,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 29832304, + "ifInUcastPkts": 9528586, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 23047118, + "ifOutUcastPkts": 6133198, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -881,11 +881,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 2625605679, + "ifInOctets": 650683083, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 3344024351, + "ifOutOctets": 522094565, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -965,11 +965,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 241293374, + "ifInUcastPkts": 36587988, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 237332067, + "ifOutUcastPkts": 36062148, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -981,11 +981,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 47503223864, + "ifInOctets": 19124608187, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 44038869134, + "ifOutOctets": 18476261335, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -1149,7 +1149,7 @@ "ifType": "ethernetCsmacd", "ifAlias": "bond0", "ifPhysAddress": "00c0ff6322ab", - "ifLastChange": 282526483, + "ifLastChange": 0, "ifVlan": null, "ifTrunk": null, "ignore": 0, @@ -1165,11 +1165,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 29832304, + "ifInUcastPkts": 9528586, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 23047118, + "ifOutUcastPkts": 6133198, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -1181,11 +1181,11 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 2625605679, + "ifInOctets": 650683083, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 3344024351, + "ifOutOctets": 522094565, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, @@ -1198,11 +1198,11 @@ "ifOutNUcastPkts_prev": 0, "ifOutNUcastPkts_delta": null, "ifOutNUcastPkts_rate": null, - "ifInDiscards": 676290, + "ifInDiscards": 68520, "ifInDiscards_prev": 0, "ifInDiscards_delta": null, "ifInDiscards_rate": null, - "ifOutDiscards": 4, + "ifOutDiscards": 0, "ifOutDiscards_prev": 0, "ifOutDiscards_delta": null, "ifOutDiscards_rate": null, @@ -1237,14 +1237,14 @@ "sensor_deleted": 0, "sensor_class": "current", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.", - "sensor_index": null, + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.62", + "sensor_index": "62", "sensor_type": "exos", - "sensor_descr": null, + "sensor_descr": "Current 12V Rail Loc: right-PSU", "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0.07, + "sensor_current": 33.67, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -1260,19 +1260,19 @@ }, { "sensor_deleted": 0, - "sensor_class": "temperature", + "sensor_class": "current", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.", - "sensor_index": null, + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.63", + "sensor_index": "63", "sensor_type": "exos", - "sensor_descr": null, + "sensor_descr": "Current 5V Rail Loc: right-PSU", "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 24, - "sensor_limit": 44, + "sensor_current": 0.07, + "sensor_limit": null, "sensor_limit_warn": null, - "sensor_limit_low": 14, + "sensor_limit_low": null, "sensor_limit_low_warn": null, "sensor_alert": 1, "sensor_custom": "No", @@ -1285,19 +1285,19 @@ }, { "sensor_deleted": 0, - "sensor_class": "voltage", + "sensor_class": "current", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.", - "sensor_index": null, + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.64", + "sensor_index": "64", "sensor_type": "exos", - "sensor_descr": null, + "sensor_descr": "Current 12V Rail Loc: left-PSU", "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 5.27, - "sensor_limit": 6.0605, + "sensor_current": 31.13, + "sensor_limit": null, "sensor_limit_warn": null, - "sensor_limit_low": 4.4795, + "sensor_limit_low": null, "sensor_limit_low_warn": null, "sensor_alert": 1, "sensor_custom": "No", @@ -1307,23 +1307,19 @@ "user_func": null, "rrd_type": "GAUGE", "state_name": null - } - ] - }, - "poller": { - "sensors": [ + }, { "sensor_deleted": 0, "sensor_class": "current", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.", - "sensor_index": null, + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.65", + "sensor_index": "65", "sensor_type": "exos", - "sensor_descr": null, + "sensor_descr": "Current 5V Rail Loc: left-PSU", "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 0.07, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -1332,60 +1328,5750 @@ "sensor_custom": "No", "entPhysicalIndex": null, "entPhysicalIndex_measured": null, - "sensor_prev": 0.07, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": null }, { "sensor_deleted": 0, - "sensor_class": "temperature", + "sensor_class": "state", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.", - "sensor_index": null, - "sensor_type": "exos", - "sensor_descr": null, + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.1", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.1", + "sensor_type": "connUnitSensorName", + "sensor_descr": "CPU Temperature-Ctlr B", "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": 44, + "sensor_current": 3, + "sensor_limit": null, "sensor_limit_warn": null, - "sensor_limit_low": 14, + "sensor_limit_low": null, "sensor_limit_low_warn": null, "sensor_alert": 1, "sensor_custom": "No", "entPhysicalIndex": null, "entPhysicalIndex_measured": null, - "sensor_prev": 24, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", - "state_name": null + "state_name": "connUnitSensorName" }, { "sensor_deleted": 0, - "sensor_class": "voltage", + "sensor_class": "state", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.", - "sensor_index": null, - "sensor_type": "exos", - "sensor_descr": null, + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.10", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.10", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Expander Temperature-Ctlr A", "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": 6.0605, + "sensor_current": 3, + "sensor_limit": null, "sensor_limit_warn": null, - "sensor_limit_low": 4.4795, + "sensor_limit_low": null, "sensor_limit_low_warn": null, "sensor_alert": 1, "sensor_custom": "No", "entPhysicalIndex": null, "entPhysicalIndex_measured": null, - "sensor_prev": 5.27, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", - "state_name": null + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.11", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.11", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Disk Controller Temperature-Ctlr A", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.12", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.12", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Host Controller Temperature-Ctlr A", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.13", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.13", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Capacitor Pack Voltage-Ctlr B", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.14", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.14", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Capacitor Cell 1 Voltage-Ctlr B", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.15", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.15", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Capacitor Cell 2 Voltage-Ctlr B", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.16", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.16", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Capacitor Cell 3 Voltage-Ctlr B", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.17", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.17", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Capacitor Cell 4 Voltage-Ctlr B", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.18", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.18", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Capacitor Pack Voltage-Ctlr A", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.19", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.19", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Capacitor Cell 1 Voltage-Ctlr A", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.2", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.2", + "sensor_type": "connUnitSensorName", + "sensor_descr": "ASIC Temperature-Ctlr B", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.20", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.20", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Capacitor Cell 2 Voltage-Ctlr A", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.21", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.21", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Capacitor Cell 3 Voltage-Ctlr A", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.22", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.22", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Capacitor Cell 4 Voltage-Ctlr A", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.23", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.23", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Capacitor Charge-Ctlr B", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.24", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.24", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Capacitor Charge-Ctlr A", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.25", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.25", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Capacitor Capacitance-Ctlr B", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.26", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.26", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Capacitor Capacitance-Ctlr A", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.27", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.27", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Capacitor Resistance-Ctlr B", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.28", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.28", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Capacitor Resistance-Ctlr A", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.29", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.29", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Overall Unit Status", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.3", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.3", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Capacitor Pack Temperature-Ctlr B", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.30", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.30", + "sensor_type": "connUnitSensorName", + "sensor_descr": "SBB IOM Inlet Temperature Loc: lower-IOM B", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.31", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.31", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Near Expander Chip Temperature Loc: lower-IOM B", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.32", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.32", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Expander Chip Temperature Loc: lower-IOM B", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.33", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.33", + "sensor_type": "connUnitSensorName", + "sensor_descr": "SBB IOM Inlet Temperature Loc: upper-IOM A", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.34", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.34", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Near Expander Chip Temperature Loc: upper-IOM A", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.35", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.35", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Expander Chip Temperature Loc: upper-IOM A", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.36", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.36", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Temperature Inlet Loc: right-PSU", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.37", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.37", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Temperature Hotspot Loc: right-PSU", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.38", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.38", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Temperature Inlet Loc: left-PSU", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.39", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.39", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Temperature Hotspot Loc: left-PSU", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.4", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.4", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Expander Temperature-Ctlr B", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.40", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.40", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Front-Right Baseplane Temp Loc: Drawer", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.41", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.41", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Middle-Left Baseplane Temp Loc: Drawer", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.42", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.42", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Rear-Left Baseplane Temp Loc: Drawer", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.43", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.43", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Rear-Right Baseplane Temp Loc: Drawer", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.44", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.44", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Front-Right Baseplane Temp Loc: Drawer", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.45", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.45", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Middle-Left Baseplane Temp Loc: Drawer", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.46", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.46", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Rear-Left Baseplane Temp Loc: Drawer", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.47", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.47", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Rear-Right Baseplane Temp Loc: Drawer", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.48", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.48", + "sensor_type": "connUnitSensorName", + "sensor_descr": "24-port Expander, Right Sideplane", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.49", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.49", + "sensor_type": "connUnitSensorName", + "sensor_descr": "36-port Expander, Right Sideplane", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.5", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.5", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Disk Controller Temperature-Ctlr B", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.50", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.50", + "sensor_type": "connUnitSensorName", + "sensor_descr": "24-port Expander, Left Sideplane", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.51", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.51", + "sensor_type": "connUnitSensorName", + "sensor_descr": "36-port Expander, Left Sideplane", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.52", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.52", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Ambient Temp, Left Sideplane", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.53", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.53", + "sensor_type": "connUnitSensorName", + "sensor_descr": "24-port Expander, Right Sideplane", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.54", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.54", + "sensor_type": "connUnitSensorName", + "sensor_descr": "36-port Expander, Right Sideplane", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.55", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.55", + "sensor_type": "connUnitSensorName", + "sensor_descr": "24-port Expander, Left Sideplane", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.56", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.56", + "sensor_type": "connUnitSensorName", + "sensor_descr": "36-port Expander, Left Sideplane", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.57", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.57", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Ambient Temp, Left Sideplane", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.58", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.58", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Voltage 12V Rail Loc: right-PSU", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.59", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.59", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Voltage 5V Rail Loc: right-PSU", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.6", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.6", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Host Controller Temperature-Ctlr B", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.60", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.60", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Voltage 12V Rail Loc: left-PSU", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.61", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.61", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Voltage 5V Rail Loc: left-PSU", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.62", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.62", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Current 12V Rail Loc: right-PSU", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.63", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.63", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Current 5V Rail Loc: right-PSU", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.64", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.64", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Current 12V Rail Loc: left-PSU", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.65", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.65", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Current 5V Rail Loc: left-PSU", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.7", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.7", + "sensor_type": "connUnitSensorName", + "sensor_descr": "CPU Temperature-Ctlr A", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.8", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.8", + "sensor_type": "connUnitSensorName", + "sensor_descr": "ASIC Temperature-Ctlr A", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.9", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.9", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Capacitor Pack Temperature-Ctlr A", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.6.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0", + "sensor_index": "connUnitState.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0", + "sensor_type": "connUnitState", + "sensor_descr": "Connectivity Unit State", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.6.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0", + "sensor_index": "connUnitStatus.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0", + "sensor_type": "connUnitStatus", + "sensor_descr": "Connectivity Unit Status", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.1", + "sensor_index": "1", + "sensor_type": "exos", + "sensor_descr": "CPU Temperature-Ctlr B", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 67, + "sensor_limit": 87, + "sensor_limit_warn": null, + "sensor_limit_low": 57, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.10", + "sensor_index": "10", + "sensor_type": "exos", + "sensor_descr": "Expander Temperature-Ctlr A", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 47, + "sensor_limit": 67, + "sensor_limit_warn": null, + "sensor_limit_low": 37, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.11", + "sensor_index": "11", + "sensor_type": "exos", + "sensor_descr": "Disk Controller Temperature-Ctlr A", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 54, + "sensor_limit": 74, + "sensor_limit_warn": null, + "sensor_limit_low": 44, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.12", + "sensor_index": "12", + "sensor_type": "exos", + "sensor_descr": "Host Controller Temperature-Ctlr A", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 45, + "sensor_limit": 65, + "sensor_limit_warn": null, + "sensor_limit_low": 35, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.2", + "sensor_index": "2", + "sensor_type": "exos", + "sensor_descr": "ASIC Temperature-Ctlr B", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 49, + "sensor_limit": 69, + "sensor_limit_warn": null, + "sensor_limit_low": 39, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.3", + "sensor_index": "3", + "sensor_type": "exos", + "sensor_descr": "Capacitor Pack Temperature-Ctlr B", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 39, + "sensor_limit": 59, + "sensor_limit_warn": null, + "sensor_limit_low": 29, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.30", + "sensor_index": "30", + "sensor_type": "exos", + "sensor_descr": "SBB IOM Inlet Temperature Loc: lower-IOM B", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 32, + "sensor_limit": 52, + "sensor_limit_warn": null, + "sensor_limit_low": 22, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.31", + "sensor_index": "31", + "sensor_type": "exos", + "sensor_descr": "Near Expander Chip Temperature Loc: lower-IOM B", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 32, + "sensor_limit": 52, + "sensor_limit_warn": null, + "sensor_limit_low": 22, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.32", + "sensor_index": "32", + "sensor_type": "exos", + "sensor_descr": "Expander Chip Temperature Loc: lower-IOM B", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 44, + "sensor_limit": 64, + "sensor_limit_warn": null, + "sensor_limit_low": 34, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.33", + "sensor_index": "33", + "sensor_type": "exos", + "sensor_descr": "SBB IOM Inlet Temperature Loc: upper-IOM A", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 34, + "sensor_limit": 54, + "sensor_limit_warn": null, + "sensor_limit_low": 24, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.34", + "sensor_index": "34", + "sensor_type": "exos", + "sensor_descr": "Near Expander Chip Temperature Loc: upper-IOM A", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 33, + "sensor_limit": 53, + "sensor_limit_warn": null, + "sensor_limit_low": 23, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.35", + "sensor_index": "35", + "sensor_type": "exos", + "sensor_descr": "Expander Chip Temperature Loc: upper-IOM A", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 47, + "sensor_limit": 67, + "sensor_limit_warn": null, + "sensor_limit_low": 37, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.4", + "sensor_index": "4", + "sensor_type": "exos", + "sensor_descr": "Expander Temperature-Ctlr B", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 44, + "sensor_limit": 64, + "sensor_limit_warn": null, + "sensor_limit_low": 34, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.40", + "sensor_index": "40", + "sensor_type": "exos", + "sensor_descr": "Front-Right Baseplane Temp Loc: Drawer", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 23, + "sensor_limit": 43, + "sensor_limit_warn": null, + "sensor_limit_low": 13, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.41", + "sensor_index": "41", + "sensor_type": "exos", + "sensor_descr": "Middle-Left Baseplane Temp Loc: Drawer", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 24, + "sensor_limit": 44, + "sensor_limit_warn": null, + "sensor_limit_low": 14, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.42", + "sensor_index": "42", + "sensor_type": "exos", + "sensor_descr": "Rear-Left Baseplane Temp Loc: Drawer", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 29, + "sensor_limit": 49, + "sensor_limit_warn": null, + "sensor_limit_low": 19, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.43", + "sensor_index": "43", + "sensor_type": "exos", + "sensor_descr": "Rear-Right Baseplane Temp Loc: Drawer", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 29, + "sensor_limit": 49, + "sensor_limit_warn": null, + "sensor_limit_low": 19, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.44", + "sensor_index": "44", + "sensor_type": "exos", + "sensor_descr": "Front-Right Baseplane Temp Loc: Drawer", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 23, + "sensor_limit": 43, + "sensor_limit_warn": null, + "sensor_limit_low": 13, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.45", + "sensor_index": "45", + "sensor_type": "exos", + "sensor_descr": "Middle-Left Baseplane Temp Loc: Drawer", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 25, + "sensor_limit": 45, + "sensor_limit_warn": null, + "sensor_limit_low": 15, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.46", + "sensor_index": "46", + "sensor_type": "exos", + "sensor_descr": "Rear-Left Baseplane Temp Loc: Drawer", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 31, + "sensor_limit": 51, + "sensor_limit_warn": null, + "sensor_limit_low": 21, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.47", + "sensor_index": "47", + "sensor_type": "exos", + "sensor_descr": "Rear-Right Baseplane Temp Loc: Drawer", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 31, + "sensor_limit": 51, + "sensor_limit_warn": null, + "sensor_limit_low": 21, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.5", + "sensor_index": "5", + "sensor_type": "exos", + "sensor_descr": "Disk Controller Temperature-Ctlr B", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 55, + "sensor_limit": 75, + "sensor_limit_warn": null, + "sensor_limit_low": 45, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.52", + "sensor_index": "52", + "sensor_type": "exos", + "sensor_descr": "Ambient Temp, Left Sideplane", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 23, + "sensor_limit": 43, + "sensor_limit_warn": null, + "sensor_limit_low": 13, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.57", + "sensor_index": "57", + "sensor_type": "exos", + "sensor_descr": "Ambient Temp, Left Sideplane", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 25, + "sensor_limit": 45, + "sensor_limit_warn": null, + "sensor_limit_low": 15, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.6", + "sensor_index": "6", + "sensor_type": "exos", + "sensor_descr": "Host Controller Temperature-Ctlr B", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 46, + "sensor_limit": 66, + "sensor_limit_warn": null, + "sensor_limit_low": 36, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.7", + "sensor_index": "7", + "sensor_type": "exos", + "sensor_descr": "CPU Temperature-Ctlr A", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 65, + "sensor_limit": 85, + "sensor_limit_warn": null, + "sensor_limit_low": 55, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.8", + "sensor_index": "8", + "sensor_type": "exos", + "sensor_descr": "ASIC Temperature-Ctlr A", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 45, + "sensor_limit": 65, + "sensor_limit_warn": null, + "sensor_limit_low": 35, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.9", + "sensor_index": "9", + "sensor_type": "exos", + "sensor_descr": "Capacitor Pack Temperature-Ctlr A", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 41, + "sensor_limit": 61, + "sensor_limit_warn": null, + "sensor_limit_low": 31, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.13", + "sensor_index": "13", + "sensor_type": "exos", + "sensor_descr": "Capacitor Pack Voltage-Ctlr B", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 10.76, + "sensor_limit": 12.374, + "sensor_limit_warn": null, + "sensor_limit_low": 9.146, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.14", + "sensor_index": "14", + "sensor_type": "exos", + "sensor_descr": "Capacitor Cell 1 Voltage-Ctlr B", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2.69, + "sensor_limit": 3.0935, + "sensor_limit_warn": null, + "sensor_limit_low": 2.2865, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.15", + "sensor_index": "15", + "sensor_type": "exos", + "sensor_descr": "Capacitor Cell 2 Voltage-Ctlr B", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2.69, + "sensor_limit": 3.0935, + "sensor_limit_warn": null, + "sensor_limit_low": 2.2865, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.16", + "sensor_index": "16", + "sensor_type": "exos", + "sensor_descr": "Capacitor Cell 3 Voltage-Ctlr B", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2.69, + "sensor_limit": 3.0935, + "sensor_limit_warn": null, + "sensor_limit_low": 2.2865, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.17", + "sensor_index": "17", + "sensor_type": "exos", + "sensor_descr": "Capacitor Cell 4 Voltage-Ctlr B", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2.7, + "sensor_limit": 3.105, + "sensor_limit_warn": null, + "sensor_limit_low": 2.295, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.18", + "sensor_index": "18", + "sensor_type": "exos", + "sensor_descr": "Capacitor Pack Voltage-Ctlr A", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 10.8, + "sensor_limit": 12.42, + "sensor_limit_warn": null, + "sensor_limit_low": 9.18, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.19", + "sensor_index": "19", + "sensor_type": "exos", + "sensor_descr": "Capacitor Cell 1 Voltage-Ctlr A", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2.69, + "sensor_limit": 3.0935, + "sensor_limit_warn": null, + "sensor_limit_low": 2.2865, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.20", + "sensor_index": "20", + "sensor_type": "exos", + "sensor_descr": "Capacitor Cell 2 Voltage-Ctlr A", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2.69, + "sensor_limit": 3.0935, + "sensor_limit_warn": null, + "sensor_limit_low": 2.2865, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.21", + "sensor_index": "21", + "sensor_type": "exos", + "sensor_descr": "Capacitor Cell 3 Voltage-Ctlr A", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2.7, + "sensor_limit": 3.105, + "sensor_limit_warn": null, + "sensor_limit_low": 2.295, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.22", + "sensor_index": "22", + "sensor_type": "exos", + "sensor_descr": "Capacitor Cell 4 Voltage-Ctlr A", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2.7, + "sensor_limit": 3.105, + "sensor_limit_warn": null, + "sensor_limit_low": 2.295, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.58", + "sensor_index": "58", + "sensor_type": "exos", + "sensor_descr": "Voltage 12V Rail Loc: right-PSU", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 12.42, + "sensor_limit": 14.283, + "sensor_limit_warn": null, + "sensor_limit_low": 10.557, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.59", + "sensor_index": "59", + "sensor_type": "exos", + "sensor_descr": "Voltage 5V Rail Loc: right-PSU", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 5.27, + "sensor_limit": 6.0605, + "sensor_limit_warn": null, + "sensor_limit_low": 4.4795, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.60", + "sensor_index": "60", + "sensor_type": "exos", + "sensor_descr": "Voltage 12V Rail Loc: left-PSU", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 12.46, + "sensor_limit": 14.329, + "sensor_limit_warn": null, + "sensor_limit_low": 10.591, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.61", + "sensor_index": "61", + "sensor_type": "exos", + "sensor_descr": "Voltage 5V Rail Loc: left-PSU", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 5.27, + "sensor_limit": 6.0605, + "sensor_limit_warn": null, + "sensor_limit_low": 4.4795, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + } + ], + "state_indexes": [ + { + "state_name": "connUnitSensorName", + "state_descr": "Unknown", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 3 + }, + { + "state_name": "connUnitSensorName", + "state_descr": "Other", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 3 + }, + { + "state_name": "connUnitSensorName", + "state_descr": "Ok", + "state_draw_graph": 0, + "state_value": 3, + "state_generic_value": 0 + }, + { + "state_name": "connUnitSensorName", + "state_descr": "Warning", + "state_draw_graph": 0, + "state_value": 4, + "state_generic_value": 1 + }, + { + "state_name": "connUnitSensorName", + "state_descr": "Failed", + "state_draw_graph": 0, + "state_value": 5, + "state_generic_value": 2 + }, + { + "state_name": "connUnitState", + "state_descr": "none", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 3 + }, + { + "state_name": "connUnitState", + "state_descr": "Online", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "connUnitState", + "state_descr": "Offline", + "state_draw_graph": 0, + "state_value": 3, + "state_generic_value": 2 + }, + { + "state_name": "connUnitStatus", + "state_descr": "none", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 3 + }, + { + "state_name": "connUnitStatus", + "state_descr": "Unused", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 3 + }, + { + "state_name": "connUnitStatus", + "state_descr": "Ok", + "state_draw_graph": 0, + "state_value": 3, + "state_generic_value": 0 + }, + { + "state_name": "connUnitStatus", + "state_descr": "Warning", + "state_draw_graph": 0, + "state_value": 4, + "state_generic_value": 1 + }, + { + "state_name": "connUnitStatus", + "state_descr": "Failed", + "state_draw_graph": 0, + "state_value": 5, + "state_generic_value": 2 + } + ] + }, + "poller": { + "sensors": [ + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.62", + "sensor_index": "62", + "sensor_type": "exos", + "sensor_descr": "Current 12V Rail Loc: right-PSU", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 12, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": 33.67, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.63", + "sensor_index": "63", + "sensor_type": "exos", + "sensor_descr": "Current 5V Rail Loc: right-PSU", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 5, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": 0.07, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.64", + "sensor_index": "64", + "sensor_type": "exos", + "sensor_descr": "Current 12V Rail Loc: left-PSU", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 12, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": 31.13, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.65", + "sensor_index": "65", + "sensor_type": "exos", + "sensor_descr": "Current 5V Rail Loc: left-PSU", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 5, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": 0.07, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.1", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.1", + "sensor_type": "connUnitSensorName", + "sensor_descr": "CPU Temperature-Ctlr B", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.10", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.10", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Expander Temperature-Ctlr A", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.11", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.11", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Disk Controller Temperature-Ctlr A", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.12", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.12", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Host Controller Temperature-Ctlr A", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.13", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.13", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Capacitor Pack Voltage-Ctlr B", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.14", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.14", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Capacitor Cell 1 Voltage-Ctlr B", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.15", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.15", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Capacitor Cell 2 Voltage-Ctlr B", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.16", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.16", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Capacitor Cell 3 Voltage-Ctlr B", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.17", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.17", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Capacitor Cell 4 Voltage-Ctlr B", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.18", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.18", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Capacitor Pack Voltage-Ctlr A", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.19", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.19", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Capacitor Cell 1 Voltage-Ctlr A", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.2", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.2", + "sensor_type": "connUnitSensorName", + "sensor_descr": "ASIC Temperature-Ctlr B", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.20", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.20", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Capacitor Cell 2 Voltage-Ctlr A", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.21", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.21", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Capacitor Cell 3 Voltage-Ctlr A", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.22", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.22", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Capacitor Cell 4 Voltage-Ctlr A", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.23", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.23", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Capacitor Charge-Ctlr B", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.24", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.24", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Capacitor Charge-Ctlr A", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.25", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.25", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Capacitor Capacitance-Ctlr B", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.26", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.26", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Capacitor Capacitance-Ctlr A", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.27", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.27", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Capacitor Resistance-Ctlr B", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.28", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.28", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Capacitor Resistance-Ctlr A", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.29", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.29", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Overall Unit Status", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.3", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.3", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Capacitor Pack Temperature-Ctlr B", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.30", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.30", + "sensor_type": "connUnitSensorName", + "sensor_descr": "SBB IOM Inlet Temperature Loc: lower-IOM B", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.31", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.31", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Near Expander Chip Temperature Loc: lower-IOM B", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.32", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.32", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Expander Chip Temperature Loc: lower-IOM B", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.33", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.33", + "sensor_type": "connUnitSensorName", + "sensor_descr": "SBB IOM Inlet Temperature Loc: upper-IOM A", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.34", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.34", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Near Expander Chip Temperature Loc: upper-IOM A", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.35", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.35", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Expander Chip Temperature Loc: upper-IOM A", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.36", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.36", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Temperature Inlet Loc: right-PSU", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.37", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.37", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Temperature Hotspot Loc: right-PSU", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.38", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.38", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Temperature Inlet Loc: left-PSU", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.39", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.39", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Temperature Hotspot Loc: left-PSU", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.4", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.4", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Expander Temperature-Ctlr B", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.40", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.40", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Front-Right Baseplane Temp Loc: Drawer", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.41", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.41", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Middle-Left Baseplane Temp Loc: Drawer", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.42", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.42", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Rear-Left Baseplane Temp Loc: Drawer", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.43", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.43", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Rear-Right Baseplane Temp Loc: Drawer", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.44", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.44", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Front-Right Baseplane Temp Loc: Drawer", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.45", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.45", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Middle-Left Baseplane Temp Loc: Drawer", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.46", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.46", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Rear-Left Baseplane Temp Loc: Drawer", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.47", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.47", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Rear-Right Baseplane Temp Loc: Drawer", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.48", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.48", + "sensor_type": "connUnitSensorName", + "sensor_descr": "24-port Expander, Right Sideplane", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.49", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.49", + "sensor_type": "connUnitSensorName", + "sensor_descr": "36-port Expander, Right Sideplane", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.5", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.5", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Disk Controller Temperature-Ctlr B", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.50", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.50", + "sensor_type": "connUnitSensorName", + "sensor_descr": "24-port Expander, Left Sideplane", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.51", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.51", + "sensor_type": "connUnitSensorName", + "sensor_descr": "36-port Expander, Left Sideplane", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.52", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.52", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Ambient Temp, Left Sideplane", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.53", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.53", + "sensor_type": "connUnitSensorName", + "sensor_descr": "24-port Expander, Right Sideplane", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.54", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.54", + "sensor_type": "connUnitSensorName", + "sensor_descr": "36-port Expander, Right Sideplane", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.55", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.55", + "sensor_type": "connUnitSensorName", + "sensor_descr": "24-port Expander, Left Sideplane", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.56", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.56", + "sensor_type": "connUnitSensorName", + "sensor_descr": "36-port Expander, Left Sideplane", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.57", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.57", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Ambient Temp, Left Sideplane", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.58", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.58", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Voltage 12V Rail Loc: right-PSU", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.59", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.59", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Voltage 5V Rail Loc: right-PSU", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.6", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.6", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Host Controller Temperature-Ctlr B", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.60", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.60", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Voltage 12V Rail Loc: left-PSU", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.61", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.61", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Voltage 5V Rail Loc: left-PSU", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.62", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.62", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Current 12V Rail Loc: right-PSU", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.63", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.63", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Current 5V Rail Loc: right-PSU", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.64", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.64", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Current 12V Rail Loc: left-PSU", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.65", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.65", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Current 5V Rail Loc: left-PSU", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.7", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.7", + "sensor_type": "connUnitSensorName", + "sensor_descr": "CPU Temperature-Ctlr A", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.8", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.8", + "sensor_type": "connUnitSensorName", + "sensor_descr": "ASIC Temperature-Ctlr A", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.9", + "sensor_index": "connUnitSensorName.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.9", + "sensor_type": "connUnitSensorName", + "sensor_descr": "Capacitor Pack Temperature-Ctlr A", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitSensorName" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.6.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0", + "sensor_index": "connUnitState.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0", + "sensor_type": "connUnitState", + "sensor_descr": "Connectivity Unit State", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.6.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0", + "sensor_index": "connUnitStatus.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0", + "sensor_type": "connUnitStatus", + "sensor_descr": "Connectivity Unit Status", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "connUnitStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.1", + "sensor_index": "1", + "sensor_type": "exos", + "sensor_descr": "CPU Temperature-Ctlr B", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 67, + "sensor_limit": 87, + "sensor_limit_warn": null, + "sensor_limit_low": 57, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.10", + "sensor_index": "10", + "sensor_type": "exos", + "sensor_descr": "Expander Temperature-Ctlr A", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 47, + "sensor_limit": 67, + "sensor_limit_warn": null, + "sensor_limit_low": 37, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.11", + "sensor_index": "11", + "sensor_type": "exos", + "sensor_descr": "Disk Controller Temperature-Ctlr A", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 54, + "sensor_limit": 74, + "sensor_limit_warn": null, + "sensor_limit_low": 44, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.12", + "sensor_index": "12", + "sensor_type": "exos", + "sensor_descr": "Host Controller Temperature-Ctlr A", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 45, + "sensor_limit": 65, + "sensor_limit_warn": null, + "sensor_limit_low": 35, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.2", + "sensor_index": "2", + "sensor_type": "exos", + "sensor_descr": "ASIC Temperature-Ctlr B", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 49, + "sensor_limit": 69, + "sensor_limit_warn": null, + "sensor_limit_low": 39, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.3", + "sensor_index": "3", + "sensor_type": "exos", + "sensor_descr": "Capacitor Pack Temperature-Ctlr B", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 39, + "sensor_limit": 59, + "sensor_limit_warn": null, + "sensor_limit_low": 29, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.30", + "sensor_index": "30", + "sensor_type": "exos", + "sensor_descr": "SBB IOM Inlet Temperature Loc: lower-IOM B", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 32, + "sensor_limit": 52, + "sensor_limit_warn": null, + "sensor_limit_low": 22, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.31", + "sensor_index": "31", + "sensor_type": "exos", + "sensor_descr": "Near Expander Chip Temperature Loc: lower-IOM B", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 32, + "sensor_limit": 52, + "sensor_limit_warn": null, + "sensor_limit_low": 22, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.32", + "sensor_index": "32", + "sensor_type": "exos", + "sensor_descr": "Expander Chip Temperature Loc: lower-IOM B", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 44, + "sensor_limit": 64, + "sensor_limit_warn": null, + "sensor_limit_low": 34, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.33", + "sensor_index": "33", + "sensor_type": "exos", + "sensor_descr": "SBB IOM Inlet Temperature Loc: upper-IOM A", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 34, + "sensor_limit": 54, + "sensor_limit_warn": null, + "sensor_limit_low": 24, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.34", + "sensor_index": "34", + "sensor_type": "exos", + "sensor_descr": "Near Expander Chip Temperature Loc: upper-IOM A", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 33, + "sensor_limit": 53, + "sensor_limit_warn": null, + "sensor_limit_low": 23, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.35", + "sensor_index": "35", + "sensor_type": "exos", + "sensor_descr": "Expander Chip Temperature Loc: upper-IOM A", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 47, + "sensor_limit": 67, + "sensor_limit_warn": null, + "sensor_limit_low": 37, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.4", + "sensor_index": "4", + "sensor_type": "exos", + "sensor_descr": "Expander Temperature-Ctlr B", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 44, + "sensor_limit": 64, + "sensor_limit_warn": null, + "sensor_limit_low": 34, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.40", + "sensor_index": "40", + "sensor_type": "exos", + "sensor_descr": "Front-Right Baseplane Temp Loc: Drawer", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 23, + "sensor_limit": 43, + "sensor_limit_warn": null, + "sensor_limit_low": 13, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.41", + "sensor_index": "41", + "sensor_type": "exos", + "sensor_descr": "Middle-Left Baseplane Temp Loc: Drawer", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 24, + "sensor_limit": 44, + "sensor_limit_warn": null, + "sensor_limit_low": 14, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.42", + "sensor_index": "42", + "sensor_type": "exos", + "sensor_descr": "Rear-Left Baseplane Temp Loc: Drawer", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 29, + "sensor_limit": 49, + "sensor_limit_warn": null, + "sensor_limit_low": 19, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.43", + "sensor_index": "43", + "sensor_type": "exos", + "sensor_descr": "Rear-Right Baseplane Temp Loc: Drawer", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 29, + "sensor_limit": 49, + "sensor_limit_warn": null, + "sensor_limit_low": 19, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.44", + "sensor_index": "44", + "sensor_type": "exos", + "sensor_descr": "Front-Right Baseplane Temp Loc: Drawer", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 23, + "sensor_limit": 43, + "sensor_limit_warn": null, + "sensor_limit_low": 13, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.45", + "sensor_index": "45", + "sensor_type": "exos", + "sensor_descr": "Middle-Left Baseplane Temp Loc: Drawer", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 25, + "sensor_limit": 45, + "sensor_limit_warn": null, + "sensor_limit_low": 15, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.46", + "sensor_index": "46", + "sensor_type": "exos", + "sensor_descr": "Rear-Left Baseplane Temp Loc: Drawer", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 31, + "sensor_limit": 51, + "sensor_limit_warn": null, + "sensor_limit_low": 21, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.47", + "sensor_index": "47", + "sensor_type": "exos", + "sensor_descr": "Rear-Right Baseplane Temp Loc: Drawer", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 31, + "sensor_limit": 51, + "sensor_limit_warn": null, + "sensor_limit_low": 21, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.5", + "sensor_index": "5", + "sensor_type": "exos", + "sensor_descr": "Disk Controller Temperature-Ctlr B", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 55, + "sensor_limit": 75, + "sensor_limit_warn": null, + "sensor_limit_low": 45, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.52", + "sensor_index": "52", + "sensor_type": "exos", + "sensor_descr": "Ambient Temp, Left Sideplane", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 23, + "sensor_limit": 43, + "sensor_limit_warn": null, + "sensor_limit_low": 13, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.57", + "sensor_index": "57", + "sensor_type": "exos", + "sensor_descr": "Ambient Temp, Left Sideplane", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 25, + "sensor_limit": 45, + "sensor_limit_warn": null, + "sensor_limit_low": 15, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.6", + "sensor_index": "6", + "sensor_type": "exos", + "sensor_descr": "Host Controller Temperature-Ctlr B", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 46, + "sensor_limit": 66, + "sensor_limit_warn": null, + "sensor_limit_low": 36, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.7", + "sensor_index": "7", + "sensor_type": "exos", + "sensor_descr": "CPU Temperature-Ctlr A", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 65, + "sensor_limit": 85, + "sensor_limit_warn": null, + "sensor_limit_low": 55, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.8", + "sensor_index": "8", + "sensor_type": "exos", + "sensor_descr": "ASIC Temperature-Ctlr A", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 45, + "sensor_limit": 65, + "sensor_limit_warn": null, + "sensor_limit_low": 35, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.9", + "sensor_index": "9", + "sensor_type": "exos", + "sensor_descr": "Capacitor Pack Temperature-Ctlr A", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 41, + "sensor_limit": 61, + "sensor_limit_warn": null, + "sensor_limit_low": 31, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.13", + "sensor_index": "13", + "sensor_type": "exos", + "sensor_descr": "Capacitor Pack Voltage-Ctlr B", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 10.76, + "sensor_limit": 12.374, + "sensor_limit_warn": null, + "sensor_limit_low": 9.146, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.14", + "sensor_index": "14", + "sensor_type": "exos", + "sensor_descr": "Capacitor Cell 1 Voltage-Ctlr B", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2.69, + "sensor_limit": 3.0935, + "sensor_limit_warn": null, + "sensor_limit_low": 2.2865, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.15", + "sensor_index": "15", + "sensor_type": "exos", + "sensor_descr": "Capacitor Cell 2 Voltage-Ctlr B", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2.69, + "sensor_limit": 3.0935, + "sensor_limit_warn": null, + "sensor_limit_low": 2.2865, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.16", + "sensor_index": "16", + "sensor_type": "exos", + "sensor_descr": "Capacitor Cell 3 Voltage-Ctlr B", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2.69, + "sensor_limit": 3.0935, + "sensor_limit_warn": null, + "sensor_limit_low": 2.2865, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.17", + "sensor_index": "17", + "sensor_type": "exos", + "sensor_descr": "Capacitor Cell 4 Voltage-Ctlr B", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2.7, + "sensor_limit": 3.105, + "sensor_limit_warn": null, + "sensor_limit_low": 2.295, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.18", + "sensor_index": "18", + "sensor_type": "exos", + "sensor_descr": "Capacitor Pack Voltage-Ctlr A", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 10.8, + "sensor_limit": 12.42, + "sensor_limit_warn": null, + "sensor_limit_low": 9.18, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.19", + "sensor_index": "19", + "sensor_type": "exos", + "sensor_descr": "Capacitor Cell 1 Voltage-Ctlr A", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2.69, + "sensor_limit": 3.0935, + "sensor_limit_warn": null, + "sensor_limit_low": 2.2865, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.20", + "sensor_index": "20", + "sensor_type": "exos", + "sensor_descr": "Capacitor Cell 2 Voltage-Ctlr A", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2.69, + "sensor_limit": 3.0935, + "sensor_limit_warn": null, + "sensor_limit_low": 2.2865, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.21", + "sensor_index": "21", + "sensor_type": "exos", + "sensor_descr": "Capacitor Cell 3 Voltage-Ctlr A", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2.7, + "sensor_limit": 3.105, + "sensor_limit_warn": null, + "sensor_limit_low": 2.295, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.22", + "sensor_index": "22", + "sensor_type": "exos", + "sensor_descr": "Capacitor Cell 4 Voltage-Ctlr A", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2.7, + "sensor_limit": 3.105, + "sensor_limit_warn": null, + "sensor_limit_low": 2.295, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.58", + "sensor_index": "58", + "sensor_type": "exos", + "sensor_descr": "Voltage 12V Rail Loc: right-PSU", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 12.42, + "sensor_limit": 14.283, + "sensor_limit_warn": null, + "sensor_limit_low": 10.557, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.59", + "sensor_index": "59", + "sensor_type": "exos", + "sensor_descr": "Voltage 5V Rail Loc: right-PSU", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 5.27, + "sensor_limit": 6.0605, + "sensor_limit_warn": null, + "sensor_limit_low": 4.4795, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.60", + "sensor_index": "60", + "sensor_type": "exos", + "sensor_descr": "Voltage 12V Rail Loc: left-PSU", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 12.46, + "sensor_limit": 14.329, + "sensor_limit_warn": null, + "sensor_limit_low": 10.591, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.61", + "sensor_index": "61", + "sensor_type": "exos", + "sensor_descr": "Voltage 5V Rail Loc: left-PSU", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 5.27, + "sensor_limit": 6.0605, + "sensor_limit_warn": null, + "sensor_limit_low": 4.4795, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + } + ], + "state_indexes": [ + { + "state_name": "connUnitSensorName", + "state_descr": "Unknown", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 3 + }, + { + "state_name": "connUnitSensorName", + "state_descr": "Other", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 3 + }, + { + "state_name": "connUnitSensorName", + "state_descr": "Ok", + "state_draw_graph": 0, + "state_value": 3, + "state_generic_value": 0 + }, + { + "state_name": "connUnitSensorName", + "state_descr": "Warning", + "state_draw_graph": 0, + "state_value": 4, + "state_generic_value": 1 + }, + { + "state_name": "connUnitSensorName", + "state_descr": "Failed", + "state_draw_graph": 0, + "state_value": 5, + "state_generic_value": 2 + }, + { + "state_name": "connUnitState", + "state_descr": "none", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 3 + }, + { + "state_name": "connUnitState", + "state_descr": "Online", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "connUnitState", + "state_descr": "Offline", + "state_draw_graph": 0, + "state_value": 3, + "state_generic_value": 2 + }, + { + "state_name": "connUnitStatus", + "state_descr": "none", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 3 + }, + { + "state_name": "connUnitStatus", + "state_descr": "Unused", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 3 + }, + { + "state_name": "connUnitStatus", + "state_descr": "Ok", + "state_draw_graph": 0, + "state_value": 3, + "state_generic_value": 0 + }, + { + "state_name": "connUnitStatus", + "state_descr": "Warning", + "state_draw_graph": 0, + "state_value": 4, + "state_generic_value": 1 + }, + { + "state_name": "connUnitStatus", + "state_descr": "Failed", + "state_draw_graph": 0, + "state_value": 5, + "state_generic_value": 2 } ] } diff --git a/tests/snmpsim/exos.snmprec b/tests/snmpsim/exos.snmprec index dec3d76cbe6e..c9df4ac53b22 100644 --- a/tests/snmpsim/exos.snmprec +++ b/tests/snmpsim/exos.snmprec @@ -1,6 +1,42 @@ -1.3.6.1.2.1.1.1.0|4|SEAGATE 4466 +1.3.6.1.2.1.1.1.0|4x|534541474154452034343636 1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.347.2.5730 -1.3.6.1.2.1.1.3.0|67|1876723003 +1.3.6.1.2.1.1.3.0|67|190235497 +1.3.6.1.2.1.1.4.0|4x|3c707269766174653e +1.3.6.1.2.1.1.5.0|4|HOSTNAME +1.3.6.1.2.1.1.6.0|4|LOC +1.3.6.1.2.1.1.7.0|2|64 +1.3.6.1.2.1.1.8.0|67|190235497 +1.3.6.1.2.1.1.9.1.2.1|6|1.3.6.1.6.3.11.2.3.1.1 +1.3.6.1.2.1.1.9.1.2.2|6|1.3.6.1.6.3.15.2.1.1 +1.3.6.1.2.1.1.9.1.2.3|6|1.3.6.1.6.3.10.3.1.1 +1.3.6.1.2.1.1.9.1.2.4|6|1.3.6.1.6.3.1 +1.3.6.1.2.1.1.9.1.2.5|6|1.3.6.1.2.1.49 +1.3.6.1.2.1.1.9.1.2.6|6|1.3.6.1.2.1.4 +1.3.6.1.2.1.1.9.1.2.7|6|1.3.6.1.2.1.50 +1.3.6.1.2.1.1.9.1.2.8|6|1.3.6.1.6.3.16.2.2.1 +1.3.6.1.2.1.1.9.1.3.1|4x|546865204d494220666f72204d6573736167652050726f63657373696e6720616e64204469737061746368696e672e +1.3.6.1.2.1.1.9.1.3.2|4x|546865204d494220666f72204d6573736167652050726f63657373696e6720616e64204469737061746368696e672e +1.3.6.1.2.1.1.9.1.3.3|4x|54686520534e4d50204d616e6167656d656e7420417263686974656374757265204d49422e +1.3.6.1.2.1.1.9.1.3.4|4x|546865204d4942206d6f64756c6520666f7220534e4d50763220656e746974696573 +1.3.6.1.2.1.1.9.1.3.5|4x|546865204d4942206d6f64756c6520666f72206d616e6167696e672054435020696d706c656d656e746174696f6e73 +1.3.6.1.2.1.1.9.1.3.6|4x|546865204d4942206d6f64756c6520666f72206d616e6167696e6720495020616e642049434d5020696d706c656d656e746174696f6e73 +1.3.6.1.2.1.1.9.1.3.7|4x|546865204d4942206d6f64756c6520666f72206d616e6167696e672055445020696d706c656d656e746174696f6e73 +1.3.6.1.2.1.1.9.1.3.8|4x|566965772d62617365642041636365737320436f6e74726f6c204d6f64656c20666f7220534e4d502e +1.3.6.1.2.1.1.9.1.4.1|67|40 +1.3.6.1.2.1.1.9.1.4.2|67|40 +1.3.6.1.2.1.1.9.1.4.3|67|40 +1.3.6.1.2.1.1.9.1.4.4|67|41 +1.3.6.1.2.1.1.9.1.4.5|67|41 +1.3.6.1.2.1.1.9.1.4.6|67|41 +1.3.6.1.2.1.1.9.1.4.7|67|41 +1.3.6.1.2.1.1.9.1.4.8|67|41 +1.3.6.1.2.1.2.1.0|2|6 +1.3.6.1.2.1.2.2.1.1.1|2|1 +1.3.6.1.2.1.2.2.1.1.2|2|2 +1.3.6.1.2.1.2.2.1.1.3|2|3 +1.3.6.1.2.1.2.2.1.1.4|2|4 +1.3.6.1.2.1.2.2.1.1.5|2|5 +1.3.6.1.2.1.2.2.1.1.6|2|6 1.3.6.1.2.1.2.2.1.2.1|4|lo 1.3.6.1.2.1.2.2.1.2.2|4|can0 1.3.6.1.2.1.2.2.1.2.3|4|eth0 @@ -19,6 +55,12 @@ 1.3.6.1.2.1.2.2.1.4.4|2|1500 1.3.6.1.2.1.2.2.1.4.5|2|1480 1.3.6.1.2.1.2.2.1.4.6|2|1500 +1.3.6.1.2.1.2.2.1.5.1|66|10000000 +1.3.6.1.2.1.2.2.1.5.2|66|0 +1.3.6.1.2.1.2.2.1.5.3|66|1000000000 +1.3.6.1.2.1.2.2.1.5.4|66|1000000000 +1.3.6.1.2.1.2.2.1.5.5|66|0 +1.3.6.1.2.1.2.2.1.5.6|66|1000000000 1.3.6.1.2.1.2.2.1.6.1|4| 1.3.6.1.2.1.2.2.1.6.2|4| 1.3.6.1.2.1.2.2.1.6.3|4x|00c0ff6322ab @@ -39,86 +81,335 @@ 1.3.6.1.2.1.2.2.1.8.6|2|1 1.3.6.1.2.1.2.2.1.9.1|67|0 1.3.6.1.2.1.2.2.1.9.2|67|0 -1.3.6.1.2.1.2.2.1.9.3|67|282526483 +1.3.6.1.2.1.2.2.1.9.3|67|0 1.3.6.1.2.1.2.2.1.9.4|67|0 1.3.6.1.2.1.2.2.1.9.5|67|0 -1.3.6.1.2.1.2.2.1.9.6|67|282526483 +1.3.6.1.2.1.2.2.1.9.6|67|0 +1.3.6.1.2.1.2.2.1.10.1|65|19484745 +1.3.6.1.2.1.2.2.1.10.2|65|0 +1.3.6.1.2.1.2.2.1.10.3|65|650683083 +1.3.6.1.2.1.2.2.1.10.4|65|1944739003 +1.3.6.1.2.1.2.2.1.10.5|65|0 +1.3.6.1.2.1.2.2.1.10.6|65|650683083 +1.3.6.1.2.1.2.2.1.11.1|65|50758 +1.3.6.1.2.1.2.2.1.11.2|65|0 +1.3.6.1.2.1.2.2.1.11.3|65|9528586 +1.3.6.1.2.1.2.2.1.11.4|65|36587988 +1.3.6.1.2.1.2.2.1.11.5|65|0 +1.3.6.1.2.1.2.2.1.11.6|65|9528586 +1.3.6.1.2.1.2.2.1.12.1|65|0 +1.3.6.1.2.1.2.2.1.12.2|65|0 +1.3.6.1.2.1.2.2.1.12.3|65|0 +1.3.6.1.2.1.2.2.1.12.4|65|0 +1.3.6.1.2.1.2.2.1.12.5|65|0 +1.3.6.1.2.1.2.2.1.12.6|65|0 1.3.6.1.2.1.2.2.1.13.1|65|0 1.3.6.1.2.1.2.2.1.13.2|65|0 1.3.6.1.2.1.2.2.1.13.3|65|0 1.3.6.1.2.1.2.2.1.13.4|65|0 1.3.6.1.2.1.2.2.1.13.5|65|0 -1.3.6.1.2.1.2.2.1.13.6|65|676290 +1.3.6.1.2.1.2.2.1.13.6|65|68520 1.3.6.1.2.1.2.2.1.14.1|65|0 1.3.6.1.2.1.2.2.1.14.2|65|0 1.3.6.1.2.1.2.2.1.14.3|65|0 1.3.6.1.2.1.2.2.1.14.4|65|0 1.3.6.1.2.1.2.2.1.14.5|65|0 1.3.6.1.2.1.2.2.1.14.6|65|0 +1.3.6.1.2.1.2.2.1.15.1|65|0 +1.3.6.1.2.1.2.2.1.15.2|65|0 +1.3.6.1.2.1.2.2.1.15.3|65|0 +1.3.6.1.2.1.2.2.1.15.4|65|0 +1.3.6.1.2.1.2.2.1.15.5|65|0 +1.3.6.1.2.1.2.2.1.15.6|65|0 +1.3.6.1.2.1.2.2.1.16.1|65|19484745 +1.3.6.1.2.1.2.2.1.16.2|65|0 +1.3.6.1.2.1.2.2.1.16.3|65|522094565 +1.3.6.1.2.1.2.2.1.16.4|65|1296392151 +1.3.6.1.2.1.2.2.1.16.5|65|0 +1.3.6.1.2.1.2.2.1.16.6|65|522094565 +1.3.6.1.2.1.2.2.1.17.1|65|50758 +1.3.6.1.2.1.2.2.1.17.2|65|0 +1.3.6.1.2.1.2.2.1.17.3|65|6133198 +1.3.6.1.2.1.2.2.1.17.4|65|36062148 +1.3.6.1.2.1.2.2.1.17.5|65|0 +1.3.6.1.2.1.2.2.1.17.6|65|6133198 +1.3.6.1.2.1.2.2.1.18.1|65|0 +1.3.6.1.2.1.2.2.1.18.2|65|0 +1.3.6.1.2.1.2.2.1.18.3|65|0 +1.3.6.1.2.1.2.2.1.18.4|65|0 +1.3.6.1.2.1.2.2.1.18.5|65|0 +1.3.6.1.2.1.2.2.1.18.6|65|0 1.3.6.1.2.1.2.2.1.19.1|65|0 1.3.6.1.2.1.2.2.1.19.2|65|0 1.3.6.1.2.1.2.2.1.19.3|65|0 1.3.6.1.2.1.2.2.1.19.4|65|0 1.3.6.1.2.1.2.2.1.19.5|65|0 -1.3.6.1.2.1.2.2.1.19.6|65|4 +1.3.6.1.2.1.2.2.1.19.6|65|0 1.3.6.1.2.1.2.2.1.20.1|65|0 1.3.6.1.2.1.2.2.1.20.2|65|0 1.3.6.1.2.1.2.2.1.20.3|65|0 1.3.6.1.2.1.2.2.1.20.4|65|0 1.3.6.1.2.1.2.2.1.20.5|65|0 1.3.6.1.2.1.2.2.1.20.6|65|0 -1.3.6.1.2.1.4.3.0|65|252556649 +1.3.6.1.2.1.2.2.1.21.1|66|0 +1.3.6.1.2.1.2.2.1.21.2|66|0 +1.3.6.1.2.1.2.2.1.21.3|66|0 +1.3.6.1.2.1.2.2.1.21.4|66|0 +1.3.6.1.2.1.2.2.1.21.5|66|0 +1.3.6.1.2.1.2.2.1.21.6|66|0 +1.3.6.1.2.1.2.2.1.22.1|6|0.0 +1.3.6.1.2.1.2.2.1.22.2|6|0.0 +1.3.6.1.2.1.2.2.1.22.3|6|0.0 +1.3.6.1.2.1.2.2.1.22.4|6|0.0 +1.3.6.1.2.1.2.2.1.22.5|6|0.0 +1.3.6.1.2.1.2.2.1.22.6|6|0.0 +1.3.6.1.2.1.3.1.1.1.4.1.169.254.255.4|2|4 +1.3.6.1.2.1.3.1.1.1.6.1.172.18.172.1|2|6 +1.3.6.1.2.1.3.1.1.1.6.1.172.18.172.52|2|6 +1.3.6.1.2.1.3.1.1.2.4.1.169.254.255.4|4x|02c0ff000001 +1.3.6.1.2.1.3.1.1.2.6.1.172.18.172.1|4x|001b17000131 +1.3.6.1.2.1.3.1.1.2.6.1.172.18.172.52|4x|00c0ff632164 +1.3.6.1.2.1.3.1.1.3.4.1.169.254.255.4|64x|a9feff04 +1.3.6.1.2.1.3.1.1.3.6.1.172.18.172.1|64x|ac12ac01 +1.3.6.1.2.1.3.1.1.3.6.1.172.18.172.52|64x|ac12ac34 +1.3.6.1.2.1.4.1.0|2|2 +1.3.6.1.2.1.4.2.0|2|64 +1.3.6.1.2.1.4.3.0|65|33924129 1.3.6.1.2.1.4.4.0|65|0 1.3.6.1.2.1.4.5.0|65|0 1.3.6.1.2.1.4.6.0|65|0 -1.3.6.1.2.1.4.7.0|65|372 +1.3.6.1.2.1.4.7.0|65|144 1.3.6.1.2.1.4.8.0|65|0 -1.3.6.1.2.1.4.9.0|65|252451337 -1.3.6.1.2.1.4.10.0|65|250456722 +1.3.6.1.2.1.4.9.0|65|33857093 +1.3.6.1.2.1.4.10.0|65|34111714 1.3.6.1.2.1.4.11.0|65|0 1.3.6.1.2.1.4.12.0|65|0 -1.3.6.1.2.1.4.14.0|65|2 -1.3.6.1.2.1.4.15.0|65|1 +1.3.6.1.2.1.4.13.0|2|30 +1.3.6.1.2.1.4.14.0|65|0 +1.3.6.1.2.1.4.15.0|65|0 1.3.6.1.2.1.4.16.0|65|0 1.3.6.1.2.1.4.17.0|65|0 1.3.6.1.2.1.4.18.0|65|0 1.3.6.1.2.1.4.19.0|65|0 -1.3.6.1.2.1.4.31.1.1.3.1|65|252554529 -1.3.6.1.2.1.4.31.1.1.3.2|65|166525 -1.3.6.1.2.1.4.31.1.1.4.1|70|252554529 -1.3.6.1.2.1.4.31.1.1.4.2|70|166525 -1.3.6.1.2.1.4.31.1.1.5.2|65|23770990 -1.3.6.1.2.1.4.31.1.1.6.2|70|23770990 +1.3.6.1.2.1.4.20.1.1.127.0.0.1|64x|7f000001 +1.3.6.1.2.1.4.20.1.1.169.254.255.3|64x|a9feff03 +1.3.6.1.2.1.4.20.1.1.169.254.255.101|64x|a9feff65 +1.3.6.1.2.1.4.20.1.1.169.254.255.102|64x|a9feff66 +1.3.6.1.2.1.4.20.1.1.169.254.255.103|64x|a9feff67 +1.3.6.1.2.1.4.20.1.1.169.254.255.104|64x|a9feff68 +1.3.6.1.2.1.4.20.1.1.169.254.255.105|64x|a9feff69 +1.3.6.1.2.1.4.20.1.1.172.18.172.51|64x|ac12ac33 +1.3.6.1.2.1.4.20.1.2.127.0.0.1|2|1 +1.3.6.1.2.1.4.20.1.2.169.254.255.3|2|4 +1.3.6.1.2.1.4.20.1.2.169.254.255.101|2|4 +1.3.6.1.2.1.4.20.1.2.169.254.255.102|2|4 +1.3.6.1.2.1.4.20.1.2.169.254.255.103|2|4 +1.3.6.1.2.1.4.20.1.2.169.254.255.104|2|4 +1.3.6.1.2.1.4.20.1.2.169.254.255.105|2|4 +1.3.6.1.2.1.4.20.1.2.172.18.172.51|2|6 +1.3.6.1.2.1.4.20.1.3.127.0.0.1|64x|ff000000 +1.3.6.1.2.1.4.20.1.3.169.254.255.3|64x|ffffff00 +1.3.6.1.2.1.4.20.1.3.169.254.255.101|64x|ffffff00 +1.3.6.1.2.1.4.20.1.3.169.254.255.102|64x|ffffff00 +1.3.6.1.2.1.4.20.1.3.169.254.255.103|64x|ffffff00 +1.3.6.1.2.1.4.20.1.3.169.254.255.104|64x|ffffff00 +1.3.6.1.2.1.4.20.1.3.169.254.255.105|64x|ffffff00 +1.3.6.1.2.1.4.20.1.3.172.18.172.51|64x|fffffe00 +1.3.6.1.2.1.4.20.1.4.127.0.0.1|2|0 +1.3.6.1.2.1.4.20.1.4.169.254.255.3|2|0 +1.3.6.1.2.1.4.20.1.4.169.254.255.101|2|1 +1.3.6.1.2.1.4.20.1.4.169.254.255.102|2|1 +1.3.6.1.2.1.4.20.1.4.169.254.255.103|2|1 +1.3.6.1.2.1.4.20.1.4.169.254.255.104|2|1 +1.3.6.1.2.1.4.20.1.4.169.254.255.105|2|1 +1.3.6.1.2.1.4.20.1.4.172.18.172.51|2|0 +1.3.6.1.2.1.4.21.1.1.0.0.0.0|64x|00000000 +1.3.6.1.2.1.4.21.1.1.169.254.255.0|64x|a9feff00 +1.3.6.1.2.1.4.21.1.1.172.18.172.0|64x|ac12ac00 +1.3.6.1.2.1.4.21.1.2.0.0.0.0|2|6 +1.3.6.1.2.1.4.21.1.2.169.254.255.0|2|4 +1.3.6.1.2.1.4.21.1.2.172.18.172.0|2|6 +1.3.6.1.2.1.4.21.1.3.0.0.0.0|2|1 +1.3.6.1.2.1.4.21.1.3.169.254.255.0|2|0 +1.3.6.1.2.1.4.21.1.3.172.18.172.0|2|0 +1.3.6.1.2.1.4.21.1.7.0.0.0.0|64x|ac12ac01 +1.3.6.1.2.1.4.21.1.7.169.254.255.0|64x|00000000 +1.3.6.1.2.1.4.21.1.7.172.18.172.0|64x|00000000 +1.3.6.1.2.1.4.21.1.8.0.0.0.0|2|4 +1.3.6.1.2.1.4.21.1.8.169.254.255.0|2|3 +1.3.6.1.2.1.4.21.1.8.172.18.172.0|2|3 +1.3.6.1.2.1.4.21.1.9.0.0.0.0|2|2 +1.3.6.1.2.1.4.21.1.9.169.254.255.0|2|2 +1.3.6.1.2.1.4.21.1.9.172.18.172.0|2|2 +1.3.6.1.2.1.4.21.1.11.0.0.0.0|64x|00000000 +1.3.6.1.2.1.4.21.1.11.169.254.255.0|64x|ffffff00 +1.3.6.1.2.1.4.21.1.11.172.18.172.0|64x|fffffe00 +1.3.6.1.2.1.4.21.1.13.0.0.0.0|6|0.0 +1.3.6.1.2.1.4.21.1.13.169.254.255.0|6|0.0 +1.3.6.1.2.1.4.21.1.13.172.18.172.0|6|0.0 +1.3.6.1.2.1.4.22.1.1.4.169.254.255.4|2|4 +1.3.6.1.2.1.4.22.1.1.6.172.18.172.1|2|6 +1.3.6.1.2.1.4.22.1.1.6.172.18.172.52|2|6 +1.3.6.1.2.1.4.22.1.2.4.169.254.255.4|4x|02c0ff000001 +1.3.6.1.2.1.4.22.1.2.6.172.18.172.1|4x|001b17000131 +1.3.6.1.2.1.4.22.1.2.6.172.18.172.52|4x|00c0ff632164 +1.3.6.1.2.1.4.22.1.3.4.169.254.255.4|64x|a9feff04 +1.3.6.1.2.1.4.22.1.3.6.172.18.172.1|64x|ac12ac01 +1.3.6.1.2.1.4.22.1.3.6.172.18.172.52|64x|ac12ac34 +1.3.6.1.2.1.4.22.1.4.4.169.254.255.4|2|3 +1.3.6.1.2.1.4.22.1.4.6.172.18.172.1|2|3 +1.3.6.1.2.1.4.22.1.4.6.172.18.172.52|2|3 +1.3.6.1.2.1.4.23.0|65|0 +1.3.6.1.2.1.4.24.4.1.1.0.0.0.0.0.0.0.0.0.172.18.172.1|64x|00000000 +1.3.6.1.2.1.4.24.4.1.1.169.254.255.0.0.255.255.255.0.0.0.0.0|64x|a9feff00 +1.3.6.1.2.1.4.24.4.1.1.172.18.172.0.0.254.255.255.0.0.0.0.0|64x|ac12ac00 +1.3.6.1.2.1.4.24.4.1.2.0.0.0.0.0.0.0.0.0.172.18.172.1|64x|00000000 +1.3.6.1.2.1.4.24.4.1.2.169.254.255.0.0.255.255.255.0.0.0.0.0|64x|00ffffff +1.3.6.1.2.1.4.24.4.1.2.172.18.172.0.0.254.255.255.0.0.0.0.0|64x|00feffff +1.3.6.1.2.1.4.24.4.1.3.0.0.0.0.0.0.0.0.0.172.18.172.1|2|0 +1.3.6.1.2.1.4.24.4.1.3.169.254.255.0.0.255.255.255.0.0.0.0.0|2|0 +1.3.6.1.2.1.4.24.4.1.3.172.18.172.0.0.254.255.255.0.0.0.0.0|2|0 +1.3.6.1.2.1.4.24.4.1.4.0.0.0.0.0.0.0.0.0.172.18.172.1|64x|ac12ac01 +1.3.6.1.2.1.4.24.4.1.4.169.254.255.0.0.255.255.255.0.0.0.0.0|64x|00000000 +1.3.6.1.2.1.4.24.4.1.4.172.18.172.0.0.254.255.255.0.0.0.0.0|64x|00000000 +1.3.6.1.2.1.4.24.4.1.5.0.0.0.0.0.0.0.0.0.172.18.172.1|2|6 +1.3.6.1.2.1.4.24.4.1.5.169.254.255.0.0.255.255.255.0.0.0.0.0|2|4 +1.3.6.1.2.1.4.24.4.1.5.172.18.172.0.0.254.255.255.0.0.0.0.0|2|6 +1.3.6.1.2.1.4.24.4.1.6.0.0.0.0.0.0.0.0.0.172.18.172.1|2|4 +1.3.6.1.2.1.4.24.4.1.6.169.254.255.0.0.255.255.255.0.0.0.0.0|2|3 +1.3.6.1.2.1.4.24.4.1.6.172.18.172.0.0.254.255.255.0.0.0.0.0|2|3 +1.3.6.1.2.1.4.24.4.1.7.0.0.0.0.0.0.0.0.0.172.18.172.1|2|2 +1.3.6.1.2.1.4.24.4.1.7.169.254.255.0.0.255.255.255.0.0.0.0.0|2|2 +1.3.6.1.2.1.4.24.4.1.7.172.18.172.0.0.254.255.255.0.0.0.0.0|2|2 +1.3.6.1.2.1.4.24.4.1.9.0.0.0.0.0.0.0.0.0.172.18.172.1|6|0.0 +1.3.6.1.2.1.4.24.4.1.9.169.254.255.0.0.255.255.255.0.0.0.0.0|6|0.0 +1.3.6.1.2.1.4.24.4.1.9.172.18.172.0.0.254.255.255.0.0.0.0.0|6|0.0 +1.3.6.1.2.1.4.24.4.1.10.0.0.0.0.0.0.0.0.0.172.18.172.1|2|0 +1.3.6.1.2.1.4.24.4.1.10.169.254.255.0.0.255.255.255.0.0.0.0.0|2|0 +1.3.6.1.2.1.4.24.4.1.10.172.18.172.0.0.254.255.255.0.0.0.0.0|2|0 +1.3.6.1.2.1.4.24.4.1.11.0.0.0.0.0.0.0.0.0.172.18.172.1|2|0 +1.3.6.1.2.1.4.24.4.1.11.169.254.255.0.0.255.255.255.0.0.0.0.0|2|0 +1.3.6.1.2.1.4.24.4.1.11.172.18.172.0.0.254.255.255.0.0.0.0.0|2|0 +1.3.6.1.2.1.4.24.4.1.12.0.0.0.0.0.0.0.0.0.172.18.172.1|2|-1 +1.3.6.1.2.1.4.24.4.1.12.169.254.255.0.0.255.255.255.0.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.4.1.12.172.18.172.0.0.254.255.255.0.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.4.1.13.0.0.0.0.0.0.0.0.0.172.18.172.1|2|-1 +1.3.6.1.2.1.4.24.4.1.13.169.254.255.0.0.255.255.255.0.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.4.1.13.172.18.172.0.0.254.255.255.0.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.4.1.14.0.0.0.0.0.0.0.0.0.172.18.172.1|2|-1 +1.3.6.1.2.1.4.24.4.1.14.169.254.255.0.0.255.255.255.0.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.4.1.14.172.18.172.0.0.254.255.255.0.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.4.1.15.0.0.0.0.0.0.0.0.0.172.18.172.1|2|-1 +1.3.6.1.2.1.4.24.4.1.15.169.254.255.0.0.255.255.255.0.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.4.1.15.172.18.172.0.0.254.255.255.0.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.4.1.16.0.0.0.0.0.0.0.0.0.172.18.172.1|2|1 +1.3.6.1.2.1.4.24.4.1.16.169.254.255.0.0.255.255.255.0.0.0.0.0|2|1 +1.3.6.1.2.1.4.24.4.1.16.172.18.172.0.0.254.255.255.0.0.0.0.0|2|1 +1.3.6.1.2.1.4.24.6.0|66|6 +1.3.6.1.2.1.4.24.7.1.7.1.4.0.0.0.0.0.2.0.0.1.4.172.18.172.1|2|6 +1.3.6.1.2.1.4.24.7.1.7.1.4.169.254.255.0.24.3.0.0.4.1.4.0.0.0.0|2|4 +1.3.6.1.2.1.4.24.7.1.7.1.4.172.18.172.0.23.3.0.0.6.1.4.0.0.0.0|2|6 +1.3.6.1.2.1.4.24.7.1.7.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|6 +1.3.6.1.2.1.4.24.7.1.7.2.16.254.128.0.0.0.0.0.0.118.89.198.230.2.77.192.55.128.3.0.0.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|6 +1.3.6.1.2.1.4.24.7.1.7.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|6 +1.3.6.1.2.1.4.24.7.1.8.1.4.0.0.0.0.0.2.0.0.1.4.172.18.172.1|2|4 +1.3.6.1.2.1.4.24.7.1.8.1.4.169.254.255.0.24.3.0.0.4.1.4.0.0.0.0|2|3 +1.3.6.1.2.1.4.24.7.1.8.1.4.172.18.172.0.23.3.0.0.6.1.4.0.0.0.0|2|3 +1.3.6.1.2.1.4.24.7.1.8.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|3 +1.3.6.1.2.1.4.24.7.1.8.2.16.254.128.0.0.0.0.0.0.118.89.198.230.2.77.192.55.128.3.0.0.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|3 +1.3.6.1.2.1.4.24.7.1.8.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|3 +1.3.6.1.2.1.4.24.7.1.9.1.4.0.0.0.0.0.2.0.0.1.4.172.18.172.1|2|2 +1.3.6.1.2.1.4.24.7.1.9.1.4.169.254.255.0.24.3.0.0.4.1.4.0.0.0.0|2|2 +1.3.6.1.2.1.4.24.7.1.9.1.4.172.18.172.0.23.3.0.0.6.1.4.0.0.0.0|2|2 +1.3.6.1.2.1.4.24.7.1.9.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|2 +1.3.6.1.2.1.4.24.7.1.9.2.16.254.128.0.0.0.0.0.0.118.89.198.230.2.77.192.55.128.3.0.0.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|2 +1.3.6.1.2.1.4.24.7.1.9.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|2 +1.3.6.1.2.1.4.24.7.1.10.1.4.0.0.0.0.0.2.0.0.1.4.172.18.172.1|66|0 +1.3.6.1.2.1.4.24.7.1.10.1.4.169.254.255.0.24.3.0.0.4.1.4.0.0.0.0|66|0 +1.3.6.1.2.1.4.24.7.1.10.1.4.172.18.172.0.23.3.0.0.6.1.4.0.0.0.0|66|0 +1.3.6.1.2.1.4.24.7.1.10.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|66|0 +1.3.6.1.2.1.4.24.7.1.10.2.16.254.128.0.0.0.0.0.0.118.89.198.230.2.77.192.55.128.3.0.0.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|66|0 +1.3.6.1.2.1.4.24.7.1.10.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|66|0 +1.3.6.1.2.1.4.24.7.1.11.1.4.0.0.0.0.0.2.0.0.1.4.172.18.172.1|66|0 +1.3.6.1.2.1.4.24.7.1.11.1.4.169.254.255.0.24.3.0.0.4.1.4.0.0.0.0|66|0 +1.3.6.1.2.1.4.24.7.1.11.1.4.172.18.172.0.23.3.0.0.6.1.4.0.0.0.0|66|0 +1.3.6.1.2.1.4.24.7.1.11.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|66|0 +1.3.6.1.2.1.4.24.7.1.11.2.16.254.128.0.0.0.0.0.0.118.89.198.230.2.77.192.55.128.3.0.0.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|66|0 +1.3.6.1.2.1.4.24.7.1.11.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|66|0 +1.3.6.1.2.1.4.24.7.1.12.1.4.0.0.0.0.0.2.0.0.1.4.172.18.172.1|2|0 +1.3.6.1.2.1.4.24.7.1.12.1.4.169.254.255.0.24.3.0.0.4.1.4.0.0.0.0|2|0 +1.3.6.1.2.1.4.24.7.1.12.1.4.172.18.172.0.23.3.0.0.6.1.4.0.0.0.0|2|0 +1.3.6.1.2.1.4.24.7.1.12.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|256 +1.3.6.1.2.1.4.24.7.1.12.2.16.254.128.0.0.0.0.0.0.118.89.198.230.2.77.192.55.128.3.0.0.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|0 +1.3.6.1.2.1.4.24.7.1.12.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|256 +1.3.6.1.2.1.4.24.7.1.13.1.4.0.0.0.0.0.2.0.0.1.4.172.18.172.1|2|-1 +1.3.6.1.2.1.4.24.7.1.13.1.4.169.254.255.0.24.3.0.0.4.1.4.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.7.1.13.1.4.172.18.172.0.23.3.0.0.6.1.4.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.7.1.13.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.7.1.13.2.16.254.128.0.0.0.0.0.0.118.89.198.230.2.77.192.55.128.3.0.0.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.7.1.13.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.7.1.14.1.4.0.0.0.0.0.2.0.0.1.4.172.18.172.1|2|-1 +1.3.6.1.2.1.4.24.7.1.14.1.4.169.254.255.0.24.3.0.0.4.1.4.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.7.1.14.1.4.172.18.172.0.23.3.0.0.6.1.4.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.7.1.14.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.7.1.14.2.16.254.128.0.0.0.0.0.0.118.89.198.230.2.77.192.55.128.3.0.0.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.7.1.14.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.7.1.15.1.4.0.0.0.0.0.2.0.0.1.4.172.18.172.1|2|-1 +1.3.6.1.2.1.4.24.7.1.15.1.4.169.254.255.0.24.3.0.0.4.1.4.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.7.1.15.1.4.172.18.172.0.23.3.0.0.6.1.4.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.7.1.15.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.7.1.15.2.16.254.128.0.0.0.0.0.0.118.89.198.230.2.77.192.55.128.3.0.0.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.7.1.15.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.7.1.16.1.4.0.0.0.0.0.2.0.0.1.4.172.18.172.1|2|-1 +1.3.6.1.2.1.4.24.7.1.16.1.4.169.254.255.0.24.3.0.0.4.1.4.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.7.1.16.1.4.172.18.172.0.23.3.0.0.6.1.4.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.7.1.16.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.7.1.16.2.16.254.128.0.0.0.0.0.0.118.89.198.230.2.77.192.55.128.3.0.0.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.7.1.16.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.7.1.17.1.4.0.0.0.0.0.2.0.0.1.4.172.18.172.1|2|1 +1.3.6.1.2.1.4.24.7.1.17.1.4.169.254.255.0.24.3.0.0.4.1.4.0.0.0.0|2|1 +1.3.6.1.2.1.4.24.7.1.17.1.4.172.18.172.0.23.3.0.0.6.1.4.0.0.0.0|2|1 +1.3.6.1.2.1.4.24.7.1.17.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|1 +1.3.6.1.2.1.4.24.7.1.17.2.16.254.128.0.0.0.0.0.0.118.89.198.230.2.77.192.55.128.3.0.0.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|1 +1.3.6.1.2.1.4.24.7.1.17.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|1 +1.3.6.1.2.1.4.25.0|2|2 +1.3.6.1.2.1.4.26.0|2|64 +1.3.6.1.2.1.4.31.1.1.3.1|65|33920095 +1.3.6.1.2.1.4.31.1.1.3.2|65|17233 +1.3.6.1.2.1.4.31.1.1.4.1|70|33920095 +1.3.6.1.2.1.4.31.1.1.4.2|70|17233 +1.3.6.1.2.1.4.31.1.1.5.2|65|2421397 +1.3.6.1.2.1.4.31.1.1.6.2|70|2421397 1.3.6.1.2.1.4.31.1.1.7.1|65|0 1.3.6.1.2.1.4.31.1.1.7.2|65|0 1.3.6.1.2.1.4.31.1.1.8.1|65|0 -1.3.6.1.2.1.4.31.1.1.8.2|65|166525 +1.3.6.1.2.1.4.31.1.1.8.2|65|17233 1.3.6.1.2.1.4.31.1.1.9.1|65|0 1.3.6.1.2.1.4.31.1.1.9.2|65|0 -1.3.6.1.2.1.4.31.1.1.10.1|65|372 +1.3.6.1.2.1.4.31.1.1.10.1|65|144 1.3.6.1.2.1.4.31.1.1.10.2|65|0 1.3.6.1.2.1.4.31.1.1.11.1|65|0 1.3.6.1.2.1.4.31.1.1.11.2|65|0 1.3.6.1.2.1.4.31.1.1.12.1|65|0 -1.3.6.1.2.1.4.31.1.1.12.2|65|166525 +1.3.6.1.2.1.4.31.1.1.12.2|65|17233 1.3.6.1.2.1.4.31.1.1.13.1|70|0 -1.3.6.1.2.1.4.31.1.1.13.2|70|166525 -1.3.6.1.2.1.4.31.1.1.14.1|65|2 +1.3.6.1.2.1.4.31.1.1.13.2|70|17233 +1.3.6.1.2.1.4.31.1.1.14.1|65|0 1.3.6.1.2.1.4.31.1.1.14.2|65|0 -1.3.6.1.2.1.4.31.1.1.15.1|65|1 +1.3.6.1.2.1.4.31.1.1.15.1|65|0 1.3.6.1.2.1.4.31.1.1.15.2|65|0 1.3.6.1.2.1.4.31.1.1.16.1|65|0 1.3.6.1.2.1.4.31.1.1.16.2|65|0 1.3.6.1.2.1.4.31.1.1.17.1|65|0 1.3.6.1.2.1.4.31.1.1.17.2|65|0 -1.3.6.1.2.1.4.31.1.1.18.1|65|252449217 +1.3.6.1.2.1.4.31.1.1.18.1|65|33853059 1.3.6.1.2.1.4.31.1.1.18.2|65|0 -1.3.6.1.2.1.4.31.1.1.19.1|70|252449217 +1.3.6.1.2.1.4.31.1.1.19.1|70|33853059 1.3.6.1.2.1.4.31.1.1.19.2|70|0 -1.3.6.1.2.1.4.31.1.1.20.1|65|250454589 -1.3.6.1.2.1.4.31.1.1.20.2|65|154053 -1.3.6.1.2.1.4.31.1.1.21.1|70|250454589 -1.3.6.1.2.1.4.31.1.1.21.2|70|154053 +1.3.6.1.2.1.4.31.1.1.20.1|65|34107783 +1.3.6.1.2.1.4.31.1.1.20.2|65|16147 +1.3.6.1.2.1.4.31.1.1.21.1|70|34107783 +1.3.6.1.2.1.4.31.1.1.21.2|70|16147 1.3.6.1.2.1.4.31.1.1.22.1|65|0 1.3.6.1.2.1.4.31.1.1.22.2|65|3 1.3.6.1.2.1.4.31.1.1.23.1|65|0 @@ -135,78 +426,815 @@ 1.3.6.1.2.1.4.31.1.1.28.2|65|0 1.3.6.1.2.1.4.31.1.1.29.1|65|0 1.3.6.1.2.1.4.31.1.1.29.2|65|0 -1.3.6.1.2.1.4.31.1.1.30.1|65|250454589 -1.3.6.1.2.1.4.31.1.1.30.2|65|154050 -1.3.6.1.2.1.4.31.1.1.31.1|70|250454589 -1.3.6.1.2.1.4.31.1.1.31.2|70|154050 -1.3.6.1.2.1.4.31.1.1.32.2|65|22335235 -1.3.6.1.2.1.4.31.1.1.33.2|70|22335235 -1.3.6.1.2.1.4.31.1.1.34.1|65|238297 -1.3.6.1.2.1.4.31.1.1.34.2|65|166525 -1.3.6.1.2.1.4.31.1.1.35.1|70|238297 -1.3.6.1.2.1.4.31.1.1.35.2|70|166525 -1.3.6.1.2.1.4.31.1.1.36.2|65|23770990 -1.3.6.1.2.1.4.31.1.1.37.2|70|23770990 -1.3.6.1.2.1.4.31.1.1.38.1|65|119168 -1.3.6.1.2.1.4.31.1.1.38.2|65|154053 -1.3.6.1.2.1.4.31.1.1.39.1|70|119168 -1.3.6.1.2.1.4.31.1.1.39.2|70|154053 -1.3.6.1.2.1.4.31.1.1.40.2|65|22335235 -1.3.6.1.2.1.4.31.1.1.41.2|70|22335235 -1.3.6.1.2.1.4.31.1.1.42.1|65|0 -1.3.6.1.2.1.4.31.1.1.43.1|70|0 -1.3.6.1.2.1.4.31.1.1.44.1|65|0 -1.3.6.1.2.1.4.31.1.1.45.1|70|0 +1.3.6.1.2.1.4.31.1.1.30.1|65|34107783 +1.3.6.1.2.1.4.31.1.1.30.2|65|16144 +1.3.6.1.2.1.4.31.1.1.31.1|70|34107783 +1.3.6.1.2.1.4.31.1.1.31.2|70|16144 +1.3.6.1.2.1.4.31.1.1.32.2|65|2293905 +1.3.6.1.2.1.4.31.1.1.33.2|70|2293905 +1.3.6.1.2.1.4.31.1.1.34.1|65|84539 +1.3.6.1.2.1.4.31.1.1.34.2|65|17233 +1.3.6.1.2.1.4.31.1.1.35.1|70|84539 +1.3.6.1.2.1.4.31.1.1.35.2|70|17233 +1.3.6.1.2.1.4.31.1.1.36.2|65|2421397 +1.3.6.1.2.1.4.31.1.1.37.2|70|2421397 +1.3.6.1.2.1.4.31.1.1.38.1|65|42270 +1.3.6.1.2.1.4.31.1.1.38.2|65|16147 +1.3.6.1.2.1.4.31.1.1.39.1|70|42270 +1.3.6.1.2.1.4.31.1.1.39.2|70|16147 +1.3.6.1.2.1.4.31.1.1.40.2|65|2293905 +1.3.6.1.2.1.4.31.1.1.41.2|70|2293905 +1.3.6.1.2.1.4.31.1.1.42.1|65|2 +1.3.6.1.2.1.4.31.1.1.43.1|70|2 +1.3.6.1.2.1.4.31.1.1.44.1|65|2 +1.3.6.1.2.1.4.31.1.1.45.1|70|2 1.3.6.1.2.1.4.31.1.1.46.1|67|0 1.3.6.1.2.1.4.31.1.1.46.2|67|0 1.3.6.1.2.1.4.31.1.1.47.1|66|60000 1.3.6.1.2.1.4.31.1.1.47.2|66|60000 -1.3.6.1.2.1.5.1.0|65|9353574 -1.3.6.1.2.1.5.2.0|65|322 +1.3.6.1.2.1.4.31.2.0|67|0 +1.3.6.1.2.1.4.31.3.1.3.2.1|65|0 +1.3.6.1.2.1.4.31.3.1.3.2.3|65|0 +1.3.6.1.2.1.4.31.3.1.3.2.4|65|0 +1.3.6.1.2.1.4.31.3.1.3.2.5|65|0 +1.3.6.1.2.1.4.31.3.1.3.2.6|65|17233 +1.3.6.1.2.1.4.31.3.1.4.2.1|70|0 +1.3.6.1.2.1.4.31.3.1.4.2.3|70|0 +1.3.6.1.2.1.4.31.3.1.4.2.4|70|0 +1.3.6.1.2.1.4.31.3.1.4.2.5|70|0 +1.3.6.1.2.1.4.31.3.1.4.2.6|70|17233 +1.3.6.1.2.1.4.31.3.1.5.2.1|65|0 +1.3.6.1.2.1.4.31.3.1.5.2.3|65|0 +1.3.6.1.2.1.4.31.3.1.5.2.4|65|0 +1.3.6.1.2.1.4.31.3.1.5.2.5|65|0 +1.3.6.1.2.1.4.31.3.1.5.2.6|65|2421397 +1.3.6.1.2.1.4.31.3.1.6.2.1|70|0 +1.3.6.1.2.1.4.31.3.1.6.2.3|70|0 +1.3.6.1.2.1.4.31.3.1.6.2.4|70|0 +1.3.6.1.2.1.4.31.3.1.6.2.5|70|0 +1.3.6.1.2.1.4.31.3.1.6.2.6|70|2421397 +1.3.6.1.2.1.4.31.3.1.7.2.1|65|0 +1.3.6.1.2.1.4.31.3.1.7.2.3|65|0 +1.3.6.1.2.1.4.31.3.1.7.2.4|65|0 +1.3.6.1.2.1.4.31.3.1.7.2.5|65|0 +1.3.6.1.2.1.4.31.3.1.7.2.6|65|0 +1.3.6.1.2.1.4.31.3.1.8.2.1|65|0 +1.3.6.1.2.1.4.31.3.1.8.2.3|65|0 +1.3.6.1.2.1.4.31.3.1.8.2.4|65|0 +1.3.6.1.2.1.4.31.3.1.8.2.5|65|0 +1.3.6.1.2.1.4.31.3.1.8.2.6|65|17233 +1.3.6.1.2.1.4.31.3.1.9.2.1|65|0 +1.3.6.1.2.1.4.31.3.1.9.2.3|65|0 +1.3.6.1.2.1.4.31.3.1.9.2.4|65|0 +1.3.6.1.2.1.4.31.3.1.9.2.5|65|0 +1.3.6.1.2.1.4.31.3.1.9.2.6|65|0 +1.3.6.1.2.1.4.31.3.1.10.2.1|65|0 +1.3.6.1.2.1.4.31.3.1.10.2.3|65|0 +1.3.6.1.2.1.4.31.3.1.10.2.4|65|0 +1.3.6.1.2.1.4.31.3.1.10.2.5|65|0 +1.3.6.1.2.1.4.31.3.1.10.2.6|65|0 +1.3.6.1.2.1.4.31.3.1.11.2.1|65|0 +1.3.6.1.2.1.4.31.3.1.11.2.3|65|0 +1.3.6.1.2.1.4.31.3.1.11.2.4|65|0 +1.3.6.1.2.1.4.31.3.1.11.2.5|65|0 +1.3.6.1.2.1.4.31.3.1.11.2.6|65|0 +1.3.6.1.2.1.4.31.3.1.12.2.1|65|0 +1.3.6.1.2.1.4.31.3.1.12.2.3|65|0 +1.3.6.1.2.1.4.31.3.1.12.2.4|65|0 +1.3.6.1.2.1.4.31.3.1.12.2.5|65|0 +1.3.6.1.2.1.4.31.3.1.12.2.6|65|17233 +1.3.6.1.2.1.4.31.3.1.13.2.1|70|0 +1.3.6.1.2.1.4.31.3.1.13.2.3|70|0 +1.3.6.1.2.1.4.31.3.1.13.2.4|70|0 +1.3.6.1.2.1.4.31.3.1.13.2.5|70|0 +1.3.6.1.2.1.4.31.3.1.13.2.6|70|17233 +1.3.6.1.2.1.4.31.3.1.14.2.1|65|0 +1.3.6.1.2.1.4.31.3.1.14.2.3|65|0 +1.3.6.1.2.1.4.31.3.1.14.2.4|65|0 +1.3.6.1.2.1.4.31.3.1.14.2.5|65|0 +1.3.6.1.2.1.4.31.3.1.14.2.6|65|0 +1.3.6.1.2.1.4.31.3.1.15.2.1|65|0 +1.3.6.1.2.1.4.31.3.1.15.2.3|65|0 +1.3.6.1.2.1.4.31.3.1.15.2.4|65|0 +1.3.6.1.2.1.4.31.3.1.15.2.5|65|0 +1.3.6.1.2.1.4.31.3.1.15.2.6|65|0 +1.3.6.1.2.1.4.31.3.1.16.2.1|65|0 +1.3.6.1.2.1.4.31.3.1.16.2.3|65|0 +1.3.6.1.2.1.4.31.3.1.16.2.4|65|0 +1.3.6.1.2.1.4.31.3.1.16.2.5|65|0 +1.3.6.1.2.1.4.31.3.1.16.2.6|65|0 +1.3.6.1.2.1.4.31.3.1.17.2.1|65|0 +1.3.6.1.2.1.4.31.3.1.17.2.3|65|0 +1.3.6.1.2.1.4.31.3.1.17.2.4|65|0 +1.3.6.1.2.1.4.31.3.1.17.2.5|65|0 +1.3.6.1.2.1.4.31.3.1.17.2.6|65|0 +1.3.6.1.2.1.4.31.3.1.18.2.1|65|0 +1.3.6.1.2.1.4.31.3.1.18.2.3|65|0 +1.3.6.1.2.1.4.31.3.1.18.2.4|65|0 +1.3.6.1.2.1.4.31.3.1.18.2.5|65|0 +1.3.6.1.2.1.4.31.3.1.18.2.6|65|0 +1.3.6.1.2.1.4.31.3.1.19.2.1|70|0 +1.3.6.1.2.1.4.31.3.1.19.2.3|70|0 +1.3.6.1.2.1.4.31.3.1.19.2.4|70|0 +1.3.6.1.2.1.4.31.3.1.19.2.5|70|0 +1.3.6.1.2.1.4.31.3.1.19.2.6|70|0 +1.3.6.1.2.1.4.31.3.1.20.2.1|65|0 +1.3.6.1.2.1.4.31.3.1.20.2.3|65|0 +1.3.6.1.2.1.4.31.3.1.20.2.4|65|0 +1.3.6.1.2.1.4.31.3.1.20.2.5|65|0 +1.3.6.1.2.1.4.31.3.1.20.2.6|65|16147 +1.3.6.1.2.1.4.31.3.1.21.2.1|70|0 +1.3.6.1.2.1.4.31.3.1.21.2.3|70|0 +1.3.6.1.2.1.4.31.3.1.21.2.4|70|0 +1.3.6.1.2.1.4.31.3.1.21.2.5|70|0 +1.3.6.1.2.1.4.31.3.1.21.2.6|70|16147 +1.3.6.1.2.1.4.31.3.1.23.2.1|65|0 +1.3.6.1.2.1.4.31.3.1.23.2.3|65|0 +1.3.6.1.2.1.4.31.3.1.23.2.4|65|0 +1.3.6.1.2.1.4.31.3.1.23.2.5|65|0 +1.3.6.1.2.1.4.31.3.1.23.2.6|65|0 +1.3.6.1.2.1.4.31.3.1.24.2.1|70|0 +1.3.6.1.2.1.4.31.3.1.24.2.3|70|0 +1.3.6.1.2.1.4.31.3.1.24.2.4|70|0 +1.3.6.1.2.1.4.31.3.1.24.2.5|70|0 +1.3.6.1.2.1.4.31.3.1.24.2.6|70|0 +1.3.6.1.2.1.4.31.3.1.25.2.1|65|0 +1.3.6.1.2.1.4.31.3.1.25.2.3|65|0 +1.3.6.1.2.1.4.31.3.1.25.2.4|65|0 +1.3.6.1.2.1.4.31.3.1.25.2.5|65|0 +1.3.6.1.2.1.4.31.3.1.25.2.6|65|0 +1.3.6.1.2.1.4.31.3.1.26.2.1|65|0 +1.3.6.1.2.1.4.31.3.1.26.2.3|65|0 +1.3.6.1.2.1.4.31.3.1.26.2.4|65|0 +1.3.6.1.2.1.4.31.3.1.26.2.5|65|0 +1.3.6.1.2.1.4.31.3.1.26.2.6|65|0 +1.3.6.1.2.1.4.31.3.1.27.2.1|65|0 +1.3.6.1.2.1.4.31.3.1.27.2.3|65|0 +1.3.6.1.2.1.4.31.3.1.27.2.4|65|0 +1.3.6.1.2.1.4.31.3.1.27.2.5|65|0 +1.3.6.1.2.1.4.31.3.1.27.2.6|65|0 +1.3.6.1.2.1.4.31.3.1.28.2.1|65|0 +1.3.6.1.2.1.4.31.3.1.28.2.3|65|0 +1.3.6.1.2.1.4.31.3.1.28.2.4|65|0 +1.3.6.1.2.1.4.31.3.1.28.2.5|65|0 +1.3.6.1.2.1.4.31.3.1.28.2.6|65|0 +1.3.6.1.2.1.4.31.3.1.29.2.1|65|0 +1.3.6.1.2.1.4.31.3.1.29.2.3|65|0 +1.3.6.1.2.1.4.31.3.1.29.2.4|65|0 +1.3.6.1.2.1.4.31.3.1.29.2.5|65|0 +1.3.6.1.2.1.4.31.3.1.29.2.6|65|0 +1.3.6.1.2.1.4.31.3.1.30.2.1|65|0 +1.3.6.1.2.1.4.31.3.1.30.2.3|65|0 +1.3.6.1.2.1.4.31.3.1.30.2.4|65|0 +1.3.6.1.2.1.4.31.3.1.30.2.5|65|0 +1.3.6.1.2.1.4.31.3.1.30.2.6|65|16147 +1.3.6.1.2.1.4.31.3.1.31.2.1|70|0 +1.3.6.1.2.1.4.31.3.1.31.2.3|70|0 +1.3.6.1.2.1.4.31.3.1.31.2.4|70|0 +1.3.6.1.2.1.4.31.3.1.31.2.5|70|0 +1.3.6.1.2.1.4.31.3.1.31.2.6|70|16147 +1.3.6.1.2.1.4.31.3.1.32.2.1|65|0 +1.3.6.1.2.1.4.31.3.1.32.2.3|65|0 +1.3.6.1.2.1.4.31.3.1.32.2.4|65|0 +1.3.6.1.2.1.4.31.3.1.32.2.5|65|0 +1.3.6.1.2.1.4.31.3.1.32.2.6|65|2293905 +1.3.6.1.2.1.4.31.3.1.33.2.1|70|0 +1.3.6.1.2.1.4.31.3.1.33.2.3|70|0 +1.3.6.1.2.1.4.31.3.1.33.2.4|70|0 +1.3.6.1.2.1.4.31.3.1.33.2.5|70|0 +1.3.6.1.2.1.4.31.3.1.33.2.6|70|2293905 +1.3.6.1.2.1.4.31.3.1.34.2.1|65|0 +1.3.6.1.2.1.4.31.3.1.34.2.3|65|0 +1.3.6.1.2.1.4.31.3.1.34.2.4|65|0 +1.3.6.1.2.1.4.31.3.1.34.2.5|65|0 +1.3.6.1.2.1.4.31.3.1.34.2.6|65|17233 +1.3.6.1.2.1.4.31.3.1.35.2.1|70|0 +1.3.6.1.2.1.4.31.3.1.35.2.3|70|0 +1.3.6.1.2.1.4.31.3.1.35.2.4|70|0 +1.3.6.1.2.1.4.31.3.1.35.2.5|70|0 +1.3.6.1.2.1.4.31.3.1.35.2.6|70|17233 +1.3.6.1.2.1.4.31.3.1.36.2.1|65|0 +1.3.6.1.2.1.4.31.3.1.36.2.3|65|0 +1.3.6.1.2.1.4.31.3.1.36.2.4|65|0 +1.3.6.1.2.1.4.31.3.1.36.2.5|65|0 +1.3.6.1.2.1.4.31.3.1.36.2.6|65|2421397 +1.3.6.1.2.1.4.31.3.1.37.2.1|70|0 +1.3.6.1.2.1.4.31.3.1.37.2.3|70|0 +1.3.6.1.2.1.4.31.3.1.37.2.4|70|0 +1.3.6.1.2.1.4.31.3.1.37.2.5|70|0 +1.3.6.1.2.1.4.31.3.1.37.2.6|70|2421397 +1.3.6.1.2.1.4.31.3.1.38.2.1|65|0 +1.3.6.1.2.1.4.31.3.1.38.2.3|65|0 +1.3.6.1.2.1.4.31.3.1.38.2.4|65|0 +1.3.6.1.2.1.4.31.3.1.38.2.5|65|0 +1.3.6.1.2.1.4.31.3.1.38.2.6|65|16147 +1.3.6.1.2.1.4.31.3.1.39.2.1|70|0 +1.3.6.1.2.1.4.31.3.1.39.2.3|70|0 +1.3.6.1.2.1.4.31.3.1.39.2.4|70|0 +1.3.6.1.2.1.4.31.3.1.39.2.5|70|0 +1.3.6.1.2.1.4.31.3.1.39.2.6|70|16147 +1.3.6.1.2.1.4.31.3.1.40.2.1|65|0 +1.3.6.1.2.1.4.31.3.1.40.2.3|65|0 +1.3.6.1.2.1.4.31.3.1.40.2.4|65|0 +1.3.6.1.2.1.4.31.3.1.40.2.5|65|0 +1.3.6.1.2.1.4.31.3.1.40.2.6|65|2293905 +1.3.6.1.2.1.4.31.3.1.41.2.1|70|0 +1.3.6.1.2.1.4.31.3.1.41.2.3|70|0 +1.3.6.1.2.1.4.31.3.1.41.2.4|70|0 +1.3.6.1.2.1.4.31.3.1.41.2.5|70|0 +1.3.6.1.2.1.4.31.3.1.41.2.6|70|2293905 +1.3.6.1.2.1.4.31.3.1.46.2.1|67|0 +1.3.6.1.2.1.4.31.3.1.46.2.3|67|0 +1.3.6.1.2.1.4.31.3.1.46.2.4|67|0 +1.3.6.1.2.1.4.31.3.1.46.2.5|67|0 +1.3.6.1.2.1.4.31.3.1.46.2.6|67|0 +1.3.6.1.2.1.4.31.3.1.47.2.1|66|60000 +1.3.6.1.2.1.4.31.3.1.47.2.3|66|60000 +1.3.6.1.2.1.4.31.3.1.47.2.4|66|60000 +1.3.6.1.2.1.4.31.3.1.47.2.5|66|60000 +1.3.6.1.2.1.4.31.3.1.47.2.6|66|60000 +1.3.6.1.2.1.4.33.0|2|1424297772 +1.3.6.1.2.1.4.34.1.3.1.4.127.0.0.1|2|1 +1.3.6.1.2.1.4.34.1.3.1.4.169.254.255.3|2|4 +1.3.6.1.2.1.4.34.1.3.1.4.169.254.255.255|2|4 +1.3.6.1.2.1.4.34.1.3.1.4.172.18.172.51|2|6 +1.3.6.1.2.1.4.34.1.3.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1|2|1 +1.3.6.1.2.1.4.34.1.3.2.16.254.128.0.0.0.0.0.0.118.89.198.230.2.77.192.55|2|6 +1.3.6.1.2.1.4.34.1.4.1.4.127.0.0.1|2|1 +1.3.6.1.2.1.4.34.1.4.1.4.169.254.255.3|2|1 +1.3.6.1.2.1.4.34.1.4.1.4.169.254.255.255|2|3 +1.3.6.1.2.1.4.34.1.4.1.4.172.18.172.51|2|1 +1.3.6.1.2.1.4.34.1.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1|2|1 +1.3.6.1.2.1.4.34.1.4.2.16.254.128.0.0.0.0.0.0.118.89.198.230.2.77.192.55|2|1 +1.3.6.1.2.1.4.34.1.5.1.4.127.0.0.1|6|1.3.6.1.2.1.4.32.1.5.1.1.4.127.0.0.0.8 +1.3.6.1.2.1.4.34.1.5.1.4.169.254.255.3|6|1.3.6.1.2.1.4.32.1.5.4.1.4.169.254.255.0.24 +1.3.6.1.2.1.4.34.1.5.1.4.169.254.255.255|6|1.3.6.1.2.1.4.32.1.5.4.1.4.169.254.255.0.24 +1.3.6.1.2.1.4.34.1.5.1.4.172.18.172.51|6|1.3.6.1.2.1.4.32.1.5.6.1.4.172.18.172.0.23 +1.3.6.1.2.1.4.34.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1|6|1.3.6.1.2.1.4.32.1.5.1.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128 +1.3.6.1.2.1.4.34.1.5.2.16.254.128.0.0.0.0.0.0.118.89.198.230.2.77.192.55|6|1.3.6.1.2.1.4.32.1.5.6.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64 +1.3.6.1.2.1.4.34.1.6.1.4.127.0.0.1|2|2 +1.3.6.1.2.1.4.34.1.6.1.4.169.254.255.3|2|6 +1.3.6.1.2.1.4.34.1.6.1.4.169.254.255.255|2|6 +1.3.6.1.2.1.4.34.1.6.1.4.172.18.172.51|2|2 +1.3.6.1.2.1.4.34.1.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1|2|2 +1.3.6.1.2.1.4.34.1.6.2.16.254.128.0.0.0.0.0.0.118.89.198.230.2.77.192.55|2|5 +1.3.6.1.2.1.4.34.1.7.1.4.127.0.0.1|2|1 +1.3.6.1.2.1.4.34.1.7.1.4.169.254.255.3|2|1 +1.3.6.1.2.1.4.34.1.7.1.4.169.254.255.255|2|1 +1.3.6.1.2.1.4.34.1.7.1.4.172.18.172.51|2|1 +1.3.6.1.2.1.4.34.1.7.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1|2|1 +1.3.6.1.2.1.4.34.1.7.2.16.254.128.0.0.0.0.0.0.118.89.198.230.2.77.192.55|2|1 +1.3.6.1.2.1.4.34.1.8.1.4.127.0.0.1|67|0 +1.3.6.1.2.1.4.34.1.8.1.4.169.254.255.3|67|0 +1.3.6.1.2.1.4.34.1.8.1.4.169.254.255.255|67|0 +1.3.6.1.2.1.4.34.1.8.1.4.172.18.172.51|67|0 +1.3.6.1.2.1.4.34.1.8.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1|67|0 +1.3.6.1.2.1.4.34.1.8.2.16.254.128.0.0.0.0.0.0.118.89.198.230.2.77.192.55|67|0 +1.3.6.1.2.1.4.34.1.9.1.4.127.0.0.1|67|0 +1.3.6.1.2.1.4.34.1.9.1.4.169.254.255.3|67|0 +1.3.6.1.2.1.4.34.1.9.1.4.169.254.255.255|67|0 +1.3.6.1.2.1.4.34.1.9.1.4.172.18.172.51|67|0 +1.3.6.1.2.1.4.34.1.9.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1|67|0 +1.3.6.1.2.1.4.34.1.9.2.16.254.128.0.0.0.0.0.0.118.89.198.230.2.77.192.55|67|0 +1.3.6.1.2.1.4.34.1.10.1.4.127.0.0.1|2|1 +1.3.6.1.2.1.4.34.1.10.1.4.169.254.255.3|2|1 +1.3.6.1.2.1.4.34.1.10.1.4.169.254.255.255|2|1 +1.3.6.1.2.1.4.34.1.10.1.4.172.18.172.51|2|1 +1.3.6.1.2.1.4.34.1.10.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1|2|1 +1.3.6.1.2.1.4.34.1.10.2.16.254.128.0.0.0.0.0.0.118.89.198.230.2.77.192.55|2|1 +1.3.6.1.2.1.4.34.1.11.1.4.127.0.0.1|2|2 +1.3.6.1.2.1.4.34.1.11.1.4.169.254.255.3|2|2 +1.3.6.1.2.1.4.34.1.11.1.4.169.254.255.255|2|2 +1.3.6.1.2.1.4.34.1.11.1.4.172.18.172.51|2|2 +1.3.6.1.2.1.4.34.1.11.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1|2|2 +1.3.6.1.2.1.4.34.1.11.2.16.254.128.0.0.0.0.0.0.118.89.198.230.2.77.192.55|2|4 +1.3.6.1.2.1.4.35.1.4.4.1.4.169.254.255.4|4x|02c0ff000001 +1.3.6.1.2.1.4.35.1.4.6.1.4.172.18.172.1|4x|001b17000131 +1.3.6.1.2.1.4.35.1.4.6.1.4.172.18.172.52|4x|00c0ff632164 +1.3.6.1.2.1.4.35.1.5.4.1.4.169.254.255.4|67|6043 +1.3.6.1.2.1.4.35.1.5.6.1.4.172.18.172.1|67|6043 +1.3.6.1.2.1.4.35.1.5.6.1.4.172.18.172.52|67|6043 +1.3.6.1.2.1.4.35.1.6.4.1.4.169.254.255.4|2|3 +1.3.6.1.2.1.4.35.1.6.6.1.4.172.18.172.1|2|3 +1.3.6.1.2.1.4.35.1.6.6.1.4.172.18.172.52|2|3 +1.3.6.1.2.1.4.35.1.7.4.1.4.169.254.255.4|2|1 +1.3.6.1.2.1.4.35.1.7.6.1.4.172.18.172.1|2|1 +1.3.6.1.2.1.4.35.1.7.6.1.4.172.18.172.52|2|1 +1.3.6.1.2.1.4.35.1.8.4.1.4.169.254.255.4|2|1 +1.3.6.1.2.1.4.35.1.8.6.1.4.172.18.172.1|2|1 +1.3.6.1.2.1.4.35.1.8.6.1.4.172.18.172.52|2|1 +1.3.6.1.2.1.4.36.1.2.6|66|6 +1.3.6.1.2.1.4.36.1.3.6|66|0 +1.3.6.1.2.1.4.36.1.4.6|66|0 +1.3.6.1.2.1.4.36.1.5.6|66|0 +1.3.6.1.2.1.4.36.1.6.6|66|0 +1.3.6.1.2.1.4.36.1.7.6|66|0 +1.3.6.1.2.1.4.36.1.8.6|66|0 +1.3.6.1.2.1.4.36.1.9.6|66|0 +1.3.6.1.2.1.4.36.1.10.6|66|0 +1.3.6.1.2.1.4.36.1.11.6|66|0 +1.3.6.1.2.1.4.36.1.12.6|66|0 +1.3.6.1.2.1.4.36.1.13.6|66|0 +1.3.6.1.2.1.5.1.0|65|806759 +1.3.6.1.2.1.5.2.0|65|98 1.3.6.1.2.1.5.3.0|65|0 -1.3.6.1.2.1.5.4.0|65|385288 +1.3.6.1.2.1.5.4.0|65|7206 1.3.6.1.2.1.5.5.0|65|0 1.3.6.1.2.1.5.6.0|65|0 1.3.6.1.2.1.5.7.0|65|0 1.3.6.1.2.1.5.8.0|65|0 -1.3.6.1.2.1.5.9.0|65|4589885 -1.3.6.1.2.1.5.10.0|65|4377774 -1.3.6.1.2.1.5.11.0|65|126 +1.3.6.1.2.1.5.9.0|65|418962 +1.3.6.1.2.1.5.10.0|65|380350 +1.3.6.1.2.1.5.11.0|65|49 1.3.6.1.2.1.5.12.0|65|0 -1.3.6.1.2.1.5.13.0|65|127 +1.3.6.1.2.1.5.13.0|65|48 1.3.6.1.2.1.5.14.0|65|0 -1.3.6.1.2.1.5.15.0|65|9009302 +1.3.6.1.2.1.5.15.0|65|818012 1.3.6.1.2.1.5.16.0|65|0 -1.3.6.1.2.1.5.15.0|65|9009302 -1.3.6.1.2.1.5.16.0|65|0 -1.3.6.1.2.1.5.17.0|65|41497 +1.3.6.1.2.1.5.17.0|65|18651 1.3.6.1.2.1.5.18.0|65|0 1.3.6.1.2.1.5.19.0|65|0 1.3.6.1.2.1.5.20.0|65|0 1.3.6.1.2.1.5.21.0|65|0 -1.3.6.1.2.1.5.22.0|65|4377794 -1.3.6.1.2.1.5.23.0|65|4589885 +1.3.6.1.2.1.5.22.0|65|380350 +1.3.6.1.2.1.5.23.0|65|418962 1.3.6.1.2.1.5.24.0|65|0 -1.3.6.1.2.1.5.25.0|65|126 +1.3.6.1.2.1.5.25.0|65|49 1.3.6.1.2.1.5.26.0|65|0 -1.3.6.1.2.1.6.5.0|65|8067057 -1.3.6.1.2.1.6.6.0|65|9903643 -1.3.6.1.2.1.6.7.0|65|59547 -1.3.6.1.2.1.6.8.0|65|16453 -1.3.6.1.2.1.6.9.0|66|2 -1.3.6.1.2.1.6.10.0|65|236133652 -1.3.6.1.2.1.6.11.0|65|242287838 -1.3.6.1.2.1.6.12.0|65|48960 +1.3.6.1.2.1.5.29.1.2.1|65|806759 +1.3.6.1.2.1.5.29.1.2.2|65|0 +1.3.6.1.2.1.5.29.1.3.1|65|98 +1.3.6.1.2.1.5.29.1.3.2|65|0 +1.3.6.1.2.1.5.29.1.4.1|65|0 +1.3.6.1.2.1.5.29.1.4.2|65|535 +1.3.6.1.2.1.5.29.1.5.1|65|818012 +1.3.6.1.2.1.5.29.1.5.2|65|0 +1.3.6.1.2.1.5.30.1.3.1.0|65|380350 +1.3.6.1.2.1.5.30.1.3.1.3|65|7206 +1.3.6.1.2.1.5.30.1.3.1.8|65|418962 +1.3.6.1.2.1.5.30.1.3.1.13|65|49 +1.3.6.1.2.1.5.30.1.3.1.15|65|48 +1.3.6.1.2.1.5.30.1.3.1.17|65|48 +1.3.6.1.2.1.5.30.1.3.1.37|65|48 +1.3.6.1.2.1.5.30.1.3.1.165|65|48 +1.3.6.1.2.1.5.30.1.4.1.0|65|418962 +1.3.6.1.2.1.5.30.1.4.1.3|65|18651 +1.3.6.1.2.1.5.30.1.4.1.8|65|380350 +1.3.6.1.2.1.5.30.1.4.1.14|65|49 +1.3.6.1.2.1.5.30.1.4.2.133|65|529 +1.3.6.1.2.1.5.30.1.4.2.135|65|1 +1.3.6.1.2.1.5.30.1.4.2.143|65|5 +1.3.6.1.2.1.6.1.0|2|1 +1.3.6.1.2.1.6.2.0|2|200 +1.3.6.1.2.1.6.3.0|2|120000 +1.3.6.1.2.1.6.4.0|2|-1 +1.3.6.1.2.1.6.5.0|65|1083001 +1.3.6.1.2.1.6.6.0|65|1274257 +1.3.6.1.2.1.6.7.0|65|21093 +1.3.6.1.2.1.6.8.0|65|4939 +1.3.6.1.2.1.6.9.0|66|4 +1.3.6.1.2.1.6.10.0|65|32492982 +1.3.6.1.2.1.6.11.0|65|40812800 +1.3.6.1.2.1.6.12.0|65|17815 +1.3.6.1.2.1.6.13.1.1.0.0.0.0.22.0.0.0.0.0|2|2 +1.3.6.1.2.1.6.13.1.1.0.0.0.0.1022.0.0.0.0.0|2|2 +1.3.6.1.2.1.6.13.1.1.0.0.0.0.7950.0.0.0.0.0|2|2 +1.3.6.1.2.1.6.13.1.1.0.0.0.0.8000.0.0.0.0.0|2|2 +1.3.6.1.2.1.6.13.1.1.127.0.0.1.427.0.0.0.0.0|2|2 +1.3.6.1.2.1.6.13.1.1.169.254.255.3.427.0.0.0.0.0|2|2 +1.3.6.1.2.1.6.13.1.1.169.254.255.3.873.0.0.0.0.0|2|2 +1.3.6.1.2.1.6.13.1.1.169.254.255.3.6970.0.0.0.0.0|2|2 +1.3.6.1.2.1.6.13.1.1.169.254.255.3.6975.0.0.0.0.0|2|2 +1.3.6.1.2.1.6.13.1.1.169.254.255.3.6980.0.0.0.0.0|2|2 +1.3.6.1.2.1.6.13.1.1.169.254.255.3.9599.0.0.0.0.0|2|2 +1.3.6.1.2.1.6.13.1.1.169.254.255.3.9599.169.254.255.4.37000|2|11 +1.3.6.1.2.1.6.13.1.1.169.254.255.3.9599.169.254.255.4.37010|2|11 +1.3.6.1.2.1.6.13.1.1.169.254.255.3.9599.169.254.255.4.43386|2|11 +1.3.6.1.2.1.6.13.1.1.169.254.255.3.9599.169.254.255.4.43398|2|11 +1.3.6.1.2.1.6.13.1.1.169.254.255.3.9599.169.254.255.4.45018|2|11 +1.3.6.1.2.1.6.13.1.1.169.254.255.3.9599.169.254.255.4.45030|2|11 +1.3.6.1.2.1.6.13.1.1.169.254.255.3.9599.169.254.255.4.45252|2|11 +1.3.6.1.2.1.6.13.1.1.169.254.255.3.9599.169.254.255.4.45264|2|11 +1.3.6.1.2.1.6.13.1.1.169.254.255.3.9599.169.254.255.4.51844|2|11 +1.3.6.1.2.1.6.13.1.1.169.254.255.3.9599.169.254.255.4.51850|2|11 +1.3.6.1.2.1.6.13.1.1.169.254.255.3.9599.169.254.255.4.57480|2|11 +1.3.6.1.2.1.6.13.1.1.169.254.255.3.9599.169.254.255.4.57494|2|11 +1.3.6.1.2.1.6.13.1.1.169.254.255.3.9599.169.254.255.4.57500|2|11 +1.3.6.1.2.1.6.13.1.1.169.254.255.3.9599.169.254.255.4.57516|2|11 +1.3.6.1.2.1.6.13.1.1.169.254.255.3.33308.169.254.255.4.6960|2|11 +1.3.6.1.2.1.6.13.1.1.169.254.255.3.35778.169.254.255.4.873|2|11 +1.3.6.1.2.1.6.13.1.1.169.254.255.3.38710.169.254.255.4.6960|2|11 +1.3.6.1.2.1.6.13.1.1.169.254.255.3.39448.169.254.255.4.6960|2|11 +1.3.6.1.2.1.6.13.1.1.169.254.255.3.40938.169.254.255.4.873|2|11 +1.3.6.1.2.1.6.13.1.1.169.254.255.3.45016.169.254.255.4.6980|2|11 +1.3.6.1.2.1.6.13.1.1.169.254.255.3.45018.169.254.255.4.6980|2|11 +1.3.6.1.2.1.6.13.1.1.169.254.255.3.45096.169.254.255.4.873|2|11 +1.3.6.1.2.1.6.13.1.1.169.254.255.3.49458.169.254.255.4.6980|2|11 +1.3.6.1.2.1.6.13.1.1.169.254.255.3.49468.169.254.255.4.6980|2|11 +1.3.6.1.2.1.6.13.1.1.169.254.255.3.50112.169.254.255.4.6980|2|11 +1.3.6.1.2.1.6.13.1.1.169.254.255.3.50848.169.254.255.4.873|2|11 +1.3.6.1.2.1.6.13.1.1.169.254.255.3.52018.169.254.255.4.8801|2|5 +1.3.6.1.2.1.6.13.1.1.169.254.255.3.52034.169.254.255.4.6980|2|11 +1.3.6.1.2.1.6.13.1.1.169.254.255.3.52044.169.254.255.4.6980|2|11 +1.3.6.1.2.1.6.13.1.1.169.254.255.3.53034.169.254.255.4.873|2|11 +1.3.6.1.2.1.6.13.1.1.169.254.255.3.54206.169.254.255.4.6960|2|11 +1.3.6.1.2.1.6.13.1.1.169.254.255.3.55606.169.254.255.4.6960|2|11 +1.3.6.1.2.1.6.13.1.1.169.254.255.3.56934.169.254.255.4.6960|2|11 +1.3.6.1.2.1.6.13.1.1.169.254.255.3.57140.169.254.255.4.873|2|11 +1.3.6.1.2.1.6.13.1.1.169.254.255.3.58250.169.254.255.4.6980|2|11 +1.3.6.1.2.1.6.13.1.1.169.254.255.3.58266.169.254.255.4.6980|2|11 +1.3.6.1.2.1.6.13.1.1.169.254.255.3.60638.169.254.255.4.8801|2|5 +1.3.6.1.2.1.6.13.1.1.169.254.255.101.427.0.0.0.0.0|2|2 +1.3.6.1.2.1.6.13.1.1.169.254.255.102.427.0.0.0.0.0|2|2 +1.3.6.1.2.1.6.13.1.1.169.254.255.103.427.0.0.0.0.0|2|2 +1.3.6.1.2.1.6.13.1.1.169.254.255.104.427.0.0.0.0.0|2|2 +1.3.6.1.2.1.6.13.1.1.169.254.255.105.427.0.0.0.0.0|2|2 +1.3.6.1.2.1.6.13.1.1.172.18.172.51.427.0.0.0.0.0|2|2 +1.3.6.1.2.1.6.13.1.2.0.0.0.0.22.0.0.0.0.0|64x|00000000 +1.3.6.1.2.1.6.13.1.2.0.0.0.0.1022.0.0.0.0.0|64x|00000000 +1.3.6.1.2.1.6.13.1.2.0.0.0.0.7950.0.0.0.0.0|64x|00000000 +1.3.6.1.2.1.6.13.1.2.0.0.0.0.8000.0.0.0.0.0|64x|00000000 +1.3.6.1.2.1.6.13.1.2.127.0.0.1.427.0.0.0.0.0|64x|7f000001 +1.3.6.1.2.1.6.13.1.2.169.254.255.3.427.0.0.0.0.0|64x|a9feff03 +1.3.6.1.2.1.6.13.1.2.169.254.255.3.873.0.0.0.0.0|64x|a9feff03 +1.3.6.1.2.1.6.13.1.2.169.254.255.3.6970.0.0.0.0.0|64x|a9feff03 +1.3.6.1.2.1.6.13.1.2.169.254.255.3.6975.0.0.0.0.0|64x|a9feff03 +1.3.6.1.2.1.6.13.1.2.169.254.255.3.6980.0.0.0.0.0|64x|a9feff03 +1.3.6.1.2.1.6.13.1.2.169.254.255.3.9599.0.0.0.0.0|64x|a9feff03 +1.3.6.1.2.1.6.13.1.2.169.254.255.3.9599.169.254.255.4.37000|64x|a9feff03 +1.3.6.1.2.1.6.13.1.2.169.254.255.3.9599.169.254.255.4.37010|64x|a9feff03 +1.3.6.1.2.1.6.13.1.2.169.254.255.3.9599.169.254.255.4.43386|64x|a9feff03 +1.3.6.1.2.1.6.13.1.2.169.254.255.3.9599.169.254.255.4.43398|64x|a9feff03 +1.3.6.1.2.1.6.13.1.2.169.254.255.3.9599.169.254.255.4.45018|64x|a9feff03 +1.3.6.1.2.1.6.13.1.2.169.254.255.3.9599.169.254.255.4.45030|64x|a9feff03 +1.3.6.1.2.1.6.13.1.2.169.254.255.3.9599.169.254.255.4.45252|64x|a9feff03 +1.3.6.1.2.1.6.13.1.2.169.254.255.3.9599.169.254.255.4.45264|64x|a9feff03 +1.3.6.1.2.1.6.13.1.2.169.254.255.3.9599.169.254.255.4.51844|64x|a9feff03 +1.3.6.1.2.1.6.13.1.2.169.254.255.3.9599.169.254.255.4.51850|64x|a9feff03 +1.3.6.1.2.1.6.13.1.2.169.254.255.3.9599.169.254.255.4.57480|64x|a9feff03 +1.3.6.1.2.1.6.13.1.2.169.254.255.3.9599.169.254.255.4.57494|64x|a9feff03 +1.3.6.1.2.1.6.13.1.2.169.254.255.3.9599.169.254.255.4.57500|64x|a9feff03 +1.3.6.1.2.1.6.13.1.2.169.254.255.3.9599.169.254.255.4.57516|64x|a9feff03 +1.3.6.1.2.1.6.13.1.2.169.254.255.3.33308.169.254.255.4.6960|64x|a9feff03 +1.3.6.1.2.1.6.13.1.2.169.254.255.3.35778.169.254.255.4.873|64x|a9feff03 +1.3.6.1.2.1.6.13.1.2.169.254.255.3.38710.169.254.255.4.6960|64x|a9feff03 +1.3.6.1.2.1.6.13.1.2.169.254.255.3.39448.169.254.255.4.6960|64x|a9feff03 +1.3.6.1.2.1.6.13.1.2.169.254.255.3.40938.169.254.255.4.873|64x|a9feff03 +1.3.6.1.2.1.6.13.1.2.169.254.255.3.45016.169.254.255.4.6980|64x|a9feff03 +1.3.6.1.2.1.6.13.1.2.169.254.255.3.45018.169.254.255.4.6980|64x|a9feff03 +1.3.6.1.2.1.6.13.1.2.169.254.255.3.45096.169.254.255.4.873|64x|a9feff03 +1.3.6.1.2.1.6.13.1.2.169.254.255.3.49458.169.254.255.4.6980|64x|a9feff03 +1.3.6.1.2.1.6.13.1.2.169.254.255.3.49468.169.254.255.4.6980|64x|a9feff03 +1.3.6.1.2.1.6.13.1.2.169.254.255.3.50112.169.254.255.4.6980|64x|a9feff03 +1.3.6.1.2.1.6.13.1.2.169.254.255.3.50848.169.254.255.4.873|64x|a9feff03 +1.3.6.1.2.1.6.13.1.2.169.254.255.3.52018.169.254.255.4.8801|64x|a9feff03 +1.3.6.1.2.1.6.13.1.2.169.254.255.3.52034.169.254.255.4.6980|64x|a9feff03 +1.3.6.1.2.1.6.13.1.2.169.254.255.3.52044.169.254.255.4.6980|64x|a9feff03 +1.3.6.1.2.1.6.13.1.2.169.254.255.3.53034.169.254.255.4.873|64x|a9feff03 +1.3.6.1.2.1.6.13.1.2.169.254.255.3.54206.169.254.255.4.6960|64x|a9feff03 +1.3.6.1.2.1.6.13.1.2.169.254.255.3.55606.169.254.255.4.6960|64x|a9feff03 +1.3.6.1.2.1.6.13.1.2.169.254.255.3.56934.169.254.255.4.6960|64x|a9feff03 +1.3.6.1.2.1.6.13.1.2.169.254.255.3.57140.169.254.255.4.873|64x|a9feff03 +1.3.6.1.2.1.6.13.1.2.169.254.255.3.58250.169.254.255.4.6980|64x|a9feff03 +1.3.6.1.2.1.6.13.1.2.169.254.255.3.58266.169.254.255.4.6980|64x|a9feff03 +1.3.6.1.2.1.6.13.1.2.169.254.255.3.60638.169.254.255.4.8801|64x|a9feff03 +1.3.6.1.2.1.6.13.1.2.169.254.255.101.427.0.0.0.0.0|64x|a9feff65 +1.3.6.1.2.1.6.13.1.2.169.254.255.102.427.0.0.0.0.0|64x|a9feff66 +1.3.6.1.2.1.6.13.1.2.169.254.255.103.427.0.0.0.0.0|64x|a9feff67 +1.3.6.1.2.1.6.13.1.2.169.254.255.104.427.0.0.0.0.0|64x|a9feff68 +1.3.6.1.2.1.6.13.1.2.169.254.255.105.427.0.0.0.0.0|64x|a9feff69 +1.3.6.1.2.1.6.13.1.2.172.18.172.51.427.0.0.0.0.0|64x|ac12ac33 +1.3.6.1.2.1.6.13.1.3.0.0.0.0.22.0.0.0.0.0|2|22 +1.3.6.1.2.1.6.13.1.3.0.0.0.0.1022.0.0.0.0.0|2|1022 +1.3.6.1.2.1.6.13.1.3.0.0.0.0.7950.0.0.0.0.0|2|7950 +1.3.6.1.2.1.6.13.1.3.0.0.0.0.8000.0.0.0.0.0|2|8000 +1.3.6.1.2.1.6.13.1.3.127.0.0.1.427.0.0.0.0.0|2|427 +1.3.6.1.2.1.6.13.1.3.169.254.255.3.427.0.0.0.0.0|2|427 +1.3.6.1.2.1.6.13.1.3.169.254.255.3.873.0.0.0.0.0|2|873 +1.3.6.1.2.1.6.13.1.3.169.254.255.3.6970.0.0.0.0.0|2|6970 +1.3.6.1.2.1.6.13.1.3.169.254.255.3.6975.0.0.0.0.0|2|6975 +1.3.6.1.2.1.6.13.1.3.169.254.255.3.6980.0.0.0.0.0|2|6980 +1.3.6.1.2.1.6.13.1.3.169.254.255.3.9599.0.0.0.0.0|2|9599 +1.3.6.1.2.1.6.13.1.3.169.254.255.3.9599.169.254.255.4.37000|2|9599 +1.3.6.1.2.1.6.13.1.3.169.254.255.3.9599.169.254.255.4.37010|2|9599 +1.3.6.1.2.1.6.13.1.3.169.254.255.3.9599.169.254.255.4.43386|2|9599 +1.3.6.1.2.1.6.13.1.3.169.254.255.3.9599.169.254.255.4.43398|2|9599 +1.3.6.1.2.1.6.13.1.3.169.254.255.3.9599.169.254.255.4.45018|2|9599 +1.3.6.1.2.1.6.13.1.3.169.254.255.3.9599.169.254.255.4.45030|2|9599 +1.3.6.1.2.1.6.13.1.3.169.254.255.3.9599.169.254.255.4.45252|2|9599 +1.3.6.1.2.1.6.13.1.3.169.254.255.3.9599.169.254.255.4.45264|2|9599 +1.3.6.1.2.1.6.13.1.3.169.254.255.3.9599.169.254.255.4.51844|2|9599 +1.3.6.1.2.1.6.13.1.3.169.254.255.3.9599.169.254.255.4.51850|2|9599 +1.3.6.1.2.1.6.13.1.3.169.254.255.3.9599.169.254.255.4.57480|2|9599 +1.3.6.1.2.1.6.13.1.3.169.254.255.3.9599.169.254.255.4.57494|2|9599 +1.3.6.1.2.1.6.13.1.3.169.254.255.3.9599.169.254.255.4.57500|2|9599 +1.3.6.1.2.1.6.13.1.3.169.254.255.3.9599.169.254.255.4.57516|2|9599 +1.3.6.1.2.1.6.13.1.3.169.254.255.3.33308.169.254.255.4.6960|2|33308 +1.3.6.1.2.1.6.13.1.3.169.254.255.3.35778.169.254.255.4.873|2|35778 +1.3.6.1.2.1.6.13.1.3.169.254.255.3.38710.169.254.255.4.6960|2|38710 +1.3.6.1.2.1.6.13.1.3.169.254.255.3.39448.169.254.255.4.6960|2|39448 +1.3.6.1.2.1.6.13.1.3.169.254.255.3.40938.169.254.255.4.873|2|40938 +1.3.6.1.2.1.6.13.1.3.169.254.255.3.45016.169.254.255.4.6980|2|45016 +1.3.6.1.2.1.6.13.1.3.169.254.255.3.45018.169.254.255.4.6980|2|45018 +1.3.6.1.2.1.6.13.1.3.169.254.255.3.45096.169.254.255.4.873|2|45096 +1.3.6.1.2.1.6.13.1.3.169.254.255.3.49458.169.254.255.4.6980|2|49458 +1.3.6.1.2.1.6.13.1.3.169.254.255.3.49468.169.254.255.4.6980|2|49468 +1.3.6.1.2.1.6.13.1.3.169.254.255.3.50112.169.254.255.4.6980|2|50112 +1.3.6.1.2.1.6.13.1.3.169.254.255.3.50848.169.254.255.4.873|2|50848 +1.3.6.1.2.1.6.13.1.3.169.254.255.3.52018.169.254.255.4.8801|2|52018 +1.3.6.1.2.1.6.13.1.3.169.254.255.3.52034.169.254.255.4.6980|2|52034 +1.3.6.1.2.1.6.13.1.3.169.254.255.3.52044.169.254.255.4.6980|2|52044 +1.3.6.1.2.1.6.13.1.3.169.254.255.3.53034.169.254.255.4.873|2|53034 +1.3.6.1.2.1.6.13.1.3.169.254.255.3.54206.169.254.255.4.6960|2|54206 +1.3.6.1.2.1.6.13.1.3.169.254.255.3.55606.169.254.255.4.6960|2|55606 +1.3.6.1.2.1.6.13.1.3.169.254.255.3.56934.169.254.255.4.6960|2|56934 +1.3.6.1.2.1.6.13.1.3.169.254.255.3.57140.169.254.255.4.873|2|57140 +1.3.6.1.2.1.6.13.1.3.169.254.255.3.58250.169.254.255.4.6980|2|58250 +1.3.6.1.2.1.6.13.1.3.169.254.255.3.58266.169.254.255.4.6980|2|58266 +1.3.6.1.2.1.6.13.1.3.169.254.255.3.60638.169.254.255.4.8801|2|60638 +1.3.6.1.2.1.6.13.1.3.169.254.255.101.427.0.0.0.0.0|2|427 +1.3.6.1.2.1.6.13.1.3.169.254.255.102.427.0.0.0.0.0|2|427 +1.3.6.1.2.1.6.13.1.3.169.254.255.103.427.0.0.0.0.0|2|427 +1.3.6.1.2.1.6.13.1.3.169.254.255.104.427.0.0.0.0.0|2|427 +1.3.6.1.2.1.6.13.1.3.169.254.255.105.427.0.0.0.0.0|2|427 +1.3.6.1.2.1.6.13.1.3.172.18.172.51.427.0.0.0.0.0|2|427 +1.3.6.1.2.1.6.13.1.4.0.0.0.0.22.0.0.0.0.0|64x|00000000 +1.3.6.1.2.1.6.13.1.4.0.0.0.0.1022.0.0.0.0.0|64x|00000000 +1.3.6.1.2.1.6.13.1.4.0.0.0.0.7950.0.0.0.0.0|64x|00000000 +1.3.6.1.2.1.6.13.1.4.0.0.0.0.8000.0.0.0.0.0|64x|00000000 +1.3.6.1.2.1.6.13.1.4.127.0.0.1.427.0.0.0.0.0|64x|00000000 +1.3.6.1.2.1.6.13.1.4.169.254.255.3.427.0.0.0.0.0|64x|00000000 +1.3.6.1.2.1.6.13.1.4.169.254.255.3.873.0.0.0.0.0|64x|00000000 +1.3.6.1.2.1.6.13.1.4.169.254.255.3.6970.0.0.0.0.0|64x|00000000 +1.3.6.1.2.1.6.13.1.4.169.254.255.3.6975.0.0.0.0.0|64x|00000000 +1.3.6.1.2.1.6.13.1.4.169.254.255.3.6980.0.0.0.0.0|64x|00000000 +1.3.6.1.2.1.6.13.1.4.169.254.255.3.9599.0.0.0.0.0|64x|00000000 +1.3.6.1.2.1.6.13.1.4.169.254.255.3.9599.169.254.255.4.37000|64x|a9feff04 +1.3.6.1.2.1.6.13.1.4.169.254.255.3.9599.169.254.255.4.37010|64x|a9feff04 +1.3.6.1.2.1.6.13.1.4.169.254.255.3.9599.169.254.255.4.43386|64x|a9feff04 +1.3.6.1.2.1.6.13.1.4.169.254.255.3.9599.169.254.255.4.43398|64x|a9feff04 +1.3.6.1.2.1.6.13.1.4.169.254.255.3.9599.169.254.255.4.45018|64x|a9feff04 +1.3.6.1.2.1.6.13.1.4.169.254.255.3.9599.169.254.255.4.45030|64x|a9feff04 +1.3.6.1.2.1.6.13.1.4.169.254.255.3.9599.169.254.255.4.45252|64x|a9feff04 +1.3.6.1.2.1.6.13.1.4.169.254.255.3.9599.169.254.255.4.45264|64x|a9feff04 +1.3.6.1.2.1.6.13.1.4.169.254.255.3.9599.169.254.255.4.51844|64x|a9feff04 +1.3.6.1.2.1.6.13.1.4.169.254.255.3.9599.169.254.255.4.51850|64x|a9feff04 +1.3.6.1.2.1.6.13.1.4.169.254.255.3.9599.169.254.255.4.57480|64x|a9feff04 +1.3.6.1.2.1.6.13.1.4.169.254.255.3.9599.169.254.255.4.57494|64x|a9feff04 +1.3.6.1.2.1.6.13.1.4.169.254.255.3.9599.169.254.255.4.57500|64x|a9feff04 +1.3.6.1.2.1.6.13.1.4.169.254.255.3.9599.169.254.255.4.57516|64x|a9feff04 +1.3.6.1.2.1.6.13.1.4.169.254.255.3.33308.169.254.255.4.6960|64x|a9feff04 +1.3.6.1.2.1.6.13.1.4.169.254.255.3.35778.169.254.255.4.873|64x|a9feff04 +1.3.6.1.2.1.6.13.1.4.169.254.255.3.38710.169.254.255.4.6960|64x|a9feff04 +1.3.6.1.2.1.6.13.1.4.169.254.255.3.39448.169.254.255.4.6960|64x|a9feff04 +1.3.6.1.2.1.6.13.1.4.169.254.255.3.40938.169.254.255.4.873|64x|a9feff04 +1.3.6.1.2.1.6.13.1.4.169.254.255.3.45016.169.254.255.4.6980|64x|a9feff04 +1.3.6.1.2.1.6.13.1.4.169.254.255.3.45018.169.254.255.4.6980|64x|a9feff04 +1.3.6.1.2.1.6.13.1.4.169.254.255.3.45096.169.254.255.4.873|64x|a9feff04 +1.3.6.1.2.1.6.13.1.4.169.254.255.3.49458.169.254.255.4.6980|64x|a9feff04 +1.3.6.1.2.1.6.13.1.4.169.254.255.3.49468.169.254.255.4.6980|64x|a9feff04 +1.3.6.1.2.1.6.13.1.4.169.254.255.3.50112.169.254.255.4.6980|64x|a9feff04 +1.3.6.1.2.1.6.13.1.4.169.254.255.3.50848.169.254.255.4.873|64x|a9feff04 +1.3.6.1.2.1.6.13.1.4.169.254.255.3.52018.169.254.255.4.8801|64x|a9feff04 +1.3.6.1.2.1.6.13.1.4.169.254.255.3.52034.169.254.255.4.6980|64x|a9feff04 +1.3.6.1.2.1.6.13.1.4.169.254.255.3.52044.169.254.255.4.6980|64x|a9feff04 +1.3.6.1.2.1.6.13.1.4.169.254.255.3.53034.169.254.255.4.873|64x|a9feff04 +1.3.6.1.2.1.6.13.1.4.169.254.255.3.54206.169.254.255.4.6960|64x|a9feff04 +1.3.6.1.2.1.6.13.1.4.169.254.255.3.55606.169.254.255.4.6960|64x|a9feff04 +1.3.6.1.2.1.6.13.1.4.169.254.255.3.56934.169.254.255.4.6960|64x|a9feff04 +1.3.6.1.2.1.6.13.1.4.169.254.255.3.57140.169.254.255.4.873|64x|a9feff04 +1.3.6.1.2.1.6.13.1.4.169.254.255.3.58250.169.254.255.4.6980|64x|a9feff04 +1.3.6.1.2.1.6.13.1.4.169.254.255.3.58266.169.254.255.4.6980|64x|a9feff04 +1.3.6.1.2.1.6.13.1.4.169.254.255.3.60638.169.254.255.4.8801|64x|a9feff04 +1.3.6.1.2.1.6.13.1.4.169.254.255.101.427.0.0.0.0.0|64x|00000000 +1.3.6.1.2.1.6.13.1.4.169.254.255.102.427.0.0.0.0.0|64x|00000000 +1.3.6.1.2.1.6.13.1.4.169.254.255.103.427.0.0.0.0.0|64x|00000000 +1.3.6.1.2.1.6.13.1.4.169.254.255.104.427.0.0.0.0.0|64x|00000000 +1.3.6.1.2.1.6.13.1.4.169.254.255.105.427.0.0.0.0.0|64x|00000000 +1.3.6.1.2.1.6.13.1.4.172.18.172.51.427.0.0.0.0.0|64x|00000000 +1.3.6.1.2.1.6.13.1.5.0.0.0.0.22.0.0.0.0.0|2|0 +1.3.6.1.2.1.6.13.1.5.0.0.0.0.1022.0.0.0.0.0|2|0 +1.3.6.1.2.1.6.13.1.5.0.0.0.0.7950.0.0.0.0.0|2|0 +1.3.6.1.2.1.6.13.1.5.0.0.0.0.8000.0.0.0.0.0|2|0 +1.3.6.1.2.1.6.13.1.5.127.0.0.1.427.0.0.0.0.0|2|0 +1.3.6.1.2.1.6.13.1.5.169.254.255.3.427.0.0.0.0.0|2|0 +1.3.6.1.2.1.6.13.1.5.169.254.255.3.873.0.0.0.0.0|2|0 +1.3.6.1.2.1.6.13.1.5.169.254.255.3.6970.0.0.0.0.0|2|0 +1.3.6.1.2.1.6.13.1.5.169.254.255.3.6975.0.0.0.0.0|2|0 +1.3.6.1.2.1.6.13.1.5.169.254.255.3.6980.0.0.0.0.0|2|0 +1.3.6.1.2.1.6.13.1.5.169.254.255.3.9599.0.0.0.0.0|2|0 +1.3.6.1.2.1.6.13.1.5.169.254.255.3.9599.169.254.255.4.37000|2|37000 +1.3.6.1.2.1.6.13.1.5.169.254.255.3.9599.169.254.255.4.37010|2|37010 +1.3.6.1.2.1.6.13.1.5.169.254.255.3.9599.169.254.255.4.43386|2|43386 +1.3.6.1.2.1.6.13.1.5.169.254.255.3.9599.169.254.255.4.43398|2|43398 +1.3.6.1.2.1.6.13.1.5.169.254.255.3.9599.169.254.255.4.45018|2|45018 +1.3.6.1.2.1.6.13.1.5.169.254.255.3.9599.169.254.255.4.45030|2|45030 +1.3.6.1.2.1.6.13.1.5.169.254.255.3.9599.169.254.255.4.45252|2|45252 +1.3.6.1.2.1.6.13.1.5.169.254.255.3.9599.169.254.255.4.45264|2|45264 +1.3.6.1.2.1.6.13.1.5.169.254.255.3.9599.169.254.255.4.51844|2|51844 +1.3.6.1.2.1.6.13.1.5.169.254.255.3.9599.169.254.255.4.51850|2|51850 +1.3.6.1.2.1.6.13.1.5.169.254.255.3.9599.169.254.255.4.57480|2|57480 +1.3.6.1.2.1.6.13.1.5.169.254.255.3.9599.169.254.255.4.57494|2|57494 +1.3.6.1.2.1.6.13.1.5.169.254.255.3.9599.169.254.255.4.57500|2|57500 +1.3.6.1.2.1.6.13.1.5.169.254.255.3.9599.169.254.255.4.57516|2|57516 +1.3.6.1.2.1.6.13.1.5.169.254.255.3.33308.169.254.255.4.6960|2|6960 +1.3.6.1.2.1.6.13.1.5.169.254.255.3.35778.169.254.255.4.873|2|873 +1.3.6.1.2.1.6.13.1.5.169.254.255.3.38710.169.254.255.4.6960|2|6960 +1.3.6.1.2.1.6.13.1.5.169.254.255.3.39448.169.254.255.4.6960|2|6960 +1.3.6.1.2.1.6.13.1.5.169.254.255.3.40938.169.254.255.4.873|2|873 +1.3.6.1.2.1.6.13.1.5.169.254.255.3.45016.169.254.255.4.6980|2|6980 +1.3.6.1.2.1.6.13.1.5.169.254.255.3.45018.169.254.255.4.6980|2|6980 +1.3.6.1.2.1.6.13.1.5.169.254.255.3.45096.169.254.255.4.873|2|873 +1.3.6.1.2.1.6.13.1.5.169.254.255.3.49458.169.254.255.4.6980|2|6980 +1.3.6.1.2.1.6.13.1.5.169.254.255.3.49468.169.254.255.4.6980|2|6980 +1.3.6.1.2.1.6.13.1.5.169.254.255.3.50112.169.254.255.4.6980|2|6980 +1.3.6.1.2.1.6.13.1.5.169.254.255.3.50848.169.254.255.4.873|2|873 +1.3.6.1.2.1.6.13.1.5.169.254.255.3.52018.169.254.255.4.8801|2|8801 +1.3.6.1.2.1.6.13.1.5.169.254.255.3.52034.169.254.255.4.6980|2|6980 +1.3.6.1.2.1.6.13.1.5.169.254.255.3.52044.169.254.255.4.6980|2|6980 +1.3.6.1.2.1.6.13.1.5.169.254.255.3.53034.169.254.255.4.873|2|873 +1.3.6.1.2.1.6.13.1.5.169.254.255.3.54206.169.254.255.4.6960|2|6960 +1.3.6.1.2.1.6.13.1.5.169.254.255.3.55606.169.254.255.4.6960|2|6960 +1.3.6.1.2.1.6.13.1.5.169.254.255.3.56934.169.254.255.4.6960|2|6960 +1.3.6.1.2.1.6.13.1.5.169.254.255.3.57140.169.254.255.4.873|2|873 +1.3.6.1.2.1.6.13.1.5.169.254.255.3.58250.169.254.255.4.6980|2|6980 +1.3.6.1.2.1.6.13.1.5.169.254.255.3.58266.169.254.255.4.6980|2|6980 +1.3.6.1.2.1.6.13.1.5.169.254.255.3.60638.169.254.255.4.8801|2|8801 +1.3.6.1.2.1.6.13.1.5.169.254.255.101.427.0.0.0.0.0|2|0 +1.3.6.1.2.1.6.13.1.5.169.254.255.102.427.0.0.0.0.0|2|0 +1.3.6.1.2.1.6.13.1.5.169.254.255.103.427.0.0.0.0.0|2|0 +1.3.6.1.2.1.6.13.1.5.169.254.255.104.427.0.0.0.0.0|2|0 +1.3.6.1.2.1.6.13.1.5.169.254.255.105.427.0.0.0.0.0|2|0 +1.3.6.1.2.1.6.13.1.5.172.18.172.51.427.0.0.0.0.0|2|0 1.3.6.1.2.1.6.14.0|65|0 -1.3.6.1.2.1.6.15.0|65|11834465 -1.3.6.1.2.1.7.1.0|65|7161981 -1.3.6.1.2.1.7.2.0|65|40523 +1.3.6.1.2.1.6.15.0|65|5309842 +1.3.6.1.2.1.6.19.1.7.1.4.169.254.255.3.9599.1.4.169.254.255.4.37000|2|11 +1.3.6.1.2.1.6.19.1.7.1.4.169.254.255.3.9599.1.4.169.254.255.4.37010|2|11 +1.3.6.1.2.1.6.19.1.7.1.4.169.254.255.3.9599.1.4.169.254.255.4.43386|2|11 +1.3.6.1.2.1.6.19.1.7.1.4.169.254.255.3.9599.1.4.169.254.255.4.43398|2|11 +1.3.6.1.2.1.6.19.1.7.1.4.169.254.255.3.9599.1.4.169.254.255.4.44056|2|11 +1.3.6.1.2.1.6.19.1.7.1.4.169.254.255.3.9599.1.4.169.254.255.4.44068|2|11 +1.3.6.1.2.1.6.19.1.7.1.4.169.254.255.3.9599.1.4.169.254.255.4.45018|2|11 +1.3.6.1.2.1.6.19.1.7.1.4.169.254.255.3.9599.1.4.169.254.255.4.45030|2|11 +1.3.6.1.2.1.6.19.1.7.1.4.169.254.255.3.9599.1.4.169.254.255.4.51844|2|11 +1.3.6.1.2.1.6.19.1.7.1.4.169.254.255.3.9599.1.4.169.254.255.4.51850|2|11 +1.3.6.1.2.1.6.19.1.7.1.4.169.254.255.3.9599.1.4.169.254.255.4.57480|2|11 +1.3.6.1.2.1.6.19.1.7.1.4.169.254.255.3.9599.1.4.169.254.255.4.57494|2|11 +1.3.6.1.2.1.6.19.1.7.1.4.169.254.255.3.9599.1.4.169.254.255.4.57500|2|11 +1.3.6.1.2.1.6.19.1.7.1.4.169.254.255.3.9599.1.4.169.254.255.4.57516|2|11 +1.3.6.1.2.1.6.19.1.7.1.4.169.254.255.3.32924.1.4.169.254.255.4.6960|2|11 +1.3.6.1.2.1.6.19.1.7.1.4.169.254.255.3.33308.1.4.169.254.255.4.6960|2|11 +1.3.6.1.2.1.6.19.1.7.1.4.169.254.255.3.39448.1.4.169.254.255.4.6960|2|11 +1.3.6.1.2.1.6.19.1.7.1.4.169.254.255.3.40938.1.4.169.254.255.4.873|2|11 +1.3.6.1.2.1.6.19.1.7.1.4.169.254.255.3.42364.1.4.169.254.255.4.6980|2|11 +1.3.6.1.2.1.6.19.1.7.1.4.169.254.255.3.42368.1.4.169.254.255.4.6980|2|11 +1.3.6.1.2.1.6.19.1.7.1.4.169.254.255.3.42502.1.4.169.254.255.4.873|2|11 +1.3.6.1.2.1.6.19.1.7.1.4.169.254.255.3.45016.1.4.169.254.255.4.6980|2|11 +1.3.6.1.2.1.6.19.1.7.1.4.169.254.255.3.45096.1.4.169.254.255.4.873|2|11 +1.3.6.1.2.1.6.19.1.7.1.4.169.254.255.3.49458.1.4.169.254.255.4.6980|2|11 +1.3.6.1.2.1.6.19.1.7.1.4.169.254.255.3.49468.1.4.169.254.255.4.6980|2|11 +1.3.6.1.2.1.6.19.1.7.1.4.169.254.255.3.50112.1.4.169.254.255.4.6980|2|11 +1.3.6.1.2.1.6.19.1.7.1.4.169.254.255.3.50848.1.4.169.254.255.4.873|2|11 +1.3.6.1.2.1.6.19.1.7.1.4.169.254.255.3.52018.1.4.169.254.255.4.8801|2|5 +1.3.6.1.2.1.6.19.1.7.1.4.169.254.255.3.52034.1.4.169.254.255.4.6980|2|11 +1.3.6.1.2.1.6.19.1.7.1.4.169.254.255.3.52044.1.4.169.254.255.4.6980|2|11 +1.3.6.1.2.1.6.19.1.7.1.4.169.254.255.3.53034.1.4.169.254.255.4.873|2|11 +1.3.6.1.2.1.6.19.1.7.1.4.169.254.255.3.54206.1.4.169.254.255.4.6960|2|11 +1.3.6.1.2.1.6.19.1.7.1.4.169.254.255.3.55606.1.4.169.254.255.4.6960|2|11 +1.3.6.1.2.1.6.19.1.7.1.4.169.254.255.3.56934.1.4.169.254.255.4.6960|2|11 +1.3.6.1.2.1.6.19.1.7.1.4.169.254.255.3.57140.1.4.169.254.255.4.873|2|11 +1.3.6.1.2.1.6.19.1.7.1.4.169.254.255.3.58250.1.4.169.254.255.4.6980|2|11 +1.3.6.1.2.1.6.19.1.7.1.4.169.254.255.3.58266.1.4.169.254.255.4.6980|2|11 +1.3.6.1.2.1.6.19.1.7.1.4.169.254.255.3.60638.1.4.169.254.255.4.8801|2|5 +1.3.6.1.2.1.6.19.1.7.2.16.0.0.0.0.0.0.0.0.0.0.255.255.169.254.255.3.8801.2.16.0.0.0.0.0.0.0.0.0.0.255.255.169.254.255.4.46066|2|5 +1.3.6.1.2.1.6.19.1.7.2.16.0.0.0.0.0.0.0.0.0.0.255.255.169.254.255.3.8801.2.16.0.0.0.0.0.0.0.0.0.0.255.255.169.254.255.4.58344|2|5 +1.3.6.1.2.1.6.19.1.8.1.4.169.254.255.3.9599.1.4.169.254.255.4.37000|66|0 +1.3.6.1.2.1.6.19.1.8.1.4.169.254.255.3.9599.1.4.169.254.255.4.37010|66|0 +1.3.6.1.2.1.6.19.1.8.1.4.169.254.255.3.9599.1.4.169.254.255.4.43386|66|0 +1.3.6.1.2.1.6.19.1.8.1.4.169.254.255.3.9599.1.4.169.254.255.4.43398|66|0 +1.3.6.1.2.1.6.19.1.8.1.4.169.254.255.3.9599.1.4.169.254.255.4.44056|66|0 +1.3.6.1.2.1.6.19.1.8.1.4.169.254.255.3.9599.1.4.169.254.255.4.44068|66|0 +1.3.6.1.2.1.6.19.1.8.1.4.169.254.255.3.9599.1.4.169.254.255.4.45018|66|0 +1.3.6.1.2.1.6.19.1.8.1.4.169.254.255.3.9599.1.4.169.254.255.4.45030|66|0 +1.3.6.1.2.1.6.19.1.8.1.4.169.254.255.3.9599.1.4.169.254.255.4.51844|66|0 +1.3.6.1.2.1.6.19.1.8.1.4.169.254.255.3.9599.1.4.169.254.255.4.51850|66|0 +1.3.6.1.2.1.6.19.1.8.1.4.169.254.255.3.9599.1.4.169.254.255.4.57480|66|0 +1.3.6.1.2.1.6.19.1.8.1.4.169.254.255.3.9599.1.4.169.254.255.4.57494|66|0 +1.3.6.1.2.1.6.19.1.8.1.4.169.254.255.3.9599.1.4.169.254.255.4.57500|66|0 +1.3.6.1.2.1.6.19.1.8.1.4.169.254.255.3.9599.1.4.169.254.255.4.57516|66|0 +1.3.6.1.2.1.6.19.1.8.1.4.169.254.255.3.32924.1.4.169.254.255.4.6960|66|0 +1.3.6.1.2.1.6.19.1.8.1.4.169.254.255.3.33308.1.4.169.254.255.4.6960|66|0 +1.3.6.1.2.1.6.19.1.8.1.4.169.254.255.3.39448.1.4.169.254.255.4.6960|66|0 +1.3.6.1.2.1.6.19.1.8.1.4.169.254.255.3.40938.1.4.169.254.255.4.873|66|0 +1.3.6.1.2.1.6.19.1.8.1.4.169.254.255.3.42364.1.4.169.254.255.4.6980|66|0 +1.3.6.1.2.1.6.19.1.8.1.4.169.254.255.3.42368.1.4.169.254.255.4.6980|66|0 +1.3.6.1.2.1.6.19.1.8.1.4.169.254.255.3.42502.1.4.169.254.255.4.873|66|0 +1.3.6.1.2.1.6.19.1.8.1.4.169.254.255.3.45016.1.4.169.254.255.4.6980|66|0 +1.3.6.1.2.1.6.19.1.8.1.4.169.254.255.3.45096.1.4.169.254.255.4.873|66|0 +1.3.6.1.2.1.6.19.1.8.1.4.169.254.255.3.49458.1.4.169.254.255.4.6980|66|0 +1.3.6.1.2.1.6.19.1.8.1.4.169.254.255.3.49468.1.4.169.254.255.4.6980|66|0 +1.3.6.1.2.1.6.19.1.8.1.4.169.254.255.3.50112.1.4.169.254.255.4.6980|66|0 +1.3.6.1.2.1.6.19.1.8.1.4.169.254.255.3.50848.1.4.169.254.255.4.873|66|0 +1.3.6.1.2.1.6.19.1.8.1.4.169.254.255.3.52018.1.4.169.254.255.4.8801|66|1651 +1.3.6.1.2.1.6.19.1.8.1.4.169.254.255.3.52034.1.4.169.254.255.4.6980|66|0 +1.3.6.1.2.1.6.19.1.8.1.4.169.254.255.3.52044.1.4.169.254.255.4.6980|66|0 +1.3.6.1.2.1.6.19.1.8.1.4.169.254.255.3.53034.1.4.169.254.255.4.873|66|0 +1.3.6.1.2.1.6.19.1.8.1.4.169.254.255.3.54206.1.4.169.254.255.4.6960|66|0 +1.3.6.1.2.1.6.19.1.8.1.4.169.254.255.3.55606.1.4.169.254.255.4.6960|66|0 +1.3.6.1.2.1.6.19.1.8.1.4.169.254.255.3.56934.1.4.169.254.255.4.6960|66|0 +1.3.6.1.2.1.6.19.1.8.1.4.169.254.255.3.57140.1.4.169.254.255.4.873|66|0 +1.3.6.1.2.1.6.19.1.8.1.4.169.254.255.3.58250.1.4.169.254.255.4.6980|66|0 +1.3.6.1.2.1.6.19.1.8.1.4.169.254.255.3.58266.1.4.169.254.255.4.6980|66|0 +1.3.6.1.2.1.6.19.1.8.1.4.169.254.255.3.60638.1.4.169.254.255.4.8801|66|1651 +1.3.6.1.2.1.6.19.1.8.2.16.0.0.0.0.0.0.0.0.0.0.255.255.169.254.255.3.8801.2.16.0.0.0.0.0.0.0.0.0.0.255.255.169.254.255.4.46066|66|1651 +1.3.6.1.2.1.6.19.1.8.2.16.0.0.0.0.0.0.0.0.0.0.255.255.169.254.255.3.8801.2.16.0.0.0.0.0.0.0.0.0.0.255.255.169.254.255.4.58344|66|1651 +1.3.6.1.2.1.6.20.1.4.1.4.0.0.0.0.22|66|2520 +1.3.6.1.2.1.6.20.1.4.1.4.0.0.0.0.1022|66|2526 +1.3.6.1.2.1.6.20.1.4.1.4.0.0.0.0.7950|66|1020 +1.3.6.1.2.1.6.20.1.4.1.4.0.0.0.0.8000|66|855 +1.3.6.1.2.1.6.20.1.4.1.4.127.0.0.1.427|66|2494 +1.3.6.1.2.1.6.20.1.4.1.4.169.254.255.3.427|66|2494 +1.3.6.1.2.1.6.20.1.4.1.4.169.254.255.3.873|66|736 +1.3.6.1.2.1.6.20.1.4.1.4.169.254.255.3.6970|66|1651 +1.3.6.1.2.1.6.20.1.4.1.4.169.254.255.3.6975|66|940 +1.3.6.1.2.1.6.20.1.4.1.4.169.254.255.3.6980|66|955 +1.3.6.1.2.1.6.20.1.4.1.4.169.254.255.3.9599|66|797 +1.3.6.1.2.1.6.20.1.4.1.4.169.254.255.101.427|66|2494 +1.3.6.1.2.1.6.20.1.4.1.4.169.254.255.102.427|66|2494 +1.3.6.1.2.1.6.20.1.4.1.4.169.254.255.103.427|66|2494 +1.3.6.1.2.1.6.20.1.4.1.4.169.254.255.104.427|66|2494 +1.3.6.1.2.1.6.20.1.4.1.4.169.254.255.105.427|66|2494 +1.3.6.1.2.1.6.20.1.4.1.4.172.18.172.51.427|66|2494 +1.3.6.1.2.1.6.20.1.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.22|66|2520 +1.3.6.1.2.1.6.20.1.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.443|66|2590 +1.3.6.1.2.1.6.20.1.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1022|66|2526 +1.3.6.1.2.1.6.20.1.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.6950|66|1651 +1.3.6.1.2.1.6.20.1.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.6960|66|1651 +1.3.6.1.2.1.6.20.1.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.7907|66|1559 +1.3.6.1.2.1.6.20.1.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8085|66|1559 +1.3.6.1.2.1.6.20.1.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8090|66|1651 +1.3.6.1.2.1.6.20.1.4.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8801|66|1651 +1.3.6.1.2.1.7.1.0|65|1046345 +1.3.6.1.2.1.7.2.0|65|18507 1.3.6.1.2.1.7.3.0|65|0 -1.3.6.1.2.1.7.4.0|65|8386600 -1.3.6.1.2.1.11.1.0|65|3608184 -1.3.6.1.2.1.11.2.0|65|3608164 +1.3.6.1.2.1.7.4.0|65|512300 +1.3.6.1.2.1.7.5.1.1.0.0.0.0.161|64x|00000000 +1.3.6.1.2.1.7.5.1.1.0.0.0.0.39280|64x|00000000 +1.3.6.1.2.1.7.5.1.1.0.0.0.0.44306|64x|00000000 +1.3.6.1.2.1.7.5.1.1.127.0.0.1.427|64x|7f000001 +1.3.6.1.2.1.7.5.1.1.169.254.255.3.427|64x|a9feff03 +1.3.6.1.2.1.7.5.1.1.169.254.255.101.427|64x|a9feff65 +1.3.6.1.2.1.7.5.1.1.169.254.255.102.427|64x|a9feff66 +1.3.6.1.2.1.7.5.1.1.169.254.255.103.427|64x|a9feff67 +1.3.6.1.2.1.7.5.1.1.169.254.255.104.427|64x|a9feff68 +1.3.6.1.2.1.7.5.1.1.169.254.255.105.427|64x|a9feff69 +1.3.6.1.2.1.7.5.1.1.172.18.172.51.427|64x|ac12ac33 +1.3.6.1.2.1.7.5.1.1.224.0.1.22.427|64x|e0000116 +1.3.6.1.2.1.7.5.1.1.239.255.255.253.427|64x|effffffd +1.3.6.1.2.1.7.5.1.2.0.0.0.0.161|2|161 +1.3.6.1.2.1.7.5.1.2.0.0.0.0.39280|2|39280 +1.3.6.1.2.1.7.5.1.2.0.0.0.0.44306|2|44306 +1.3.6.1.2.1.7.5.1.2.127.0.0.1.427|2|427 +1.3.6.1.2.1.7.5.1.2.169.254.255.3.427|2|427 +1.3.6.1.2.1.7.5.1.2.169.254.255.101.427|2|427 +1.3.6.1.2.1.7.5.1.2.169.254.255.102.427|2|427 +1.3.6.1.2.1.7.5.1.2.169.254.255.103.427|2|427 +1.3.6.1.2.1.7.5.1.2.169.254.255.104.427|2|427 +1.3.6.1.2.1.7.5.1.2.169.254.255.105.427|2|427 +1.3.6.1.2.1.7.5.1.2.172.18.172.51.427|2|427 +1.3.6.1.2.1.7.5.1.2.224.0.1.22.427|2|427 +1.3.6.1.2.1.7.5.1.2.239.255.255.253.427|2|427 +1.3.6.1.2.1.7.7.1.8.1.4.0.0.0.0.161.1.4.0.0.0.0.0.8701|66|2481 +1.3.6.1.2.1.7.7.1.8.1.4.0.0.0.0.39280.1.4.0.0.0.0.0.10977|66|2590 +1.3.6.1.2.1.7.7.1.8.1.4.0.0.0.0.44306.1.4.0.0.0.0.0.7915|66|1651 +1.3.6.1.2.1.7.7.1.8.1.4.127.0.0.1.427.1.4.0.0.0.0.0.10306|66|2494 +1.3.6.1.2.1.7.7.1.8.1.4.169.254.255.3.427.1.4.0.0.0.0.0.10318|66|2494 +1.3.6.1.2.1.7.7.1.8.1.4.169.254.255.101.427.1.4.0.0.0.0.0.10322|66|2494 +1.3.6.1.2.1.7.7.1.8.1.4.169.254.255.102.427.1.4.0.0.0.0.0.10326|66|2494 +1.3.6.1.2.1.7.7.1.8.1.4.169.254.255.103.427.1.4.0.0.0.0.0.10330|66|2494 +1.3.6.1.2.1.7.7.1.8.1.4.169.254.255.104.427.1.4.0.0.0.0.0.10334|66|2494 +1.3.6.1.2.1.7.7.1.8.1.4.169.254.255.105.427.1.4.0.0.0.0.0.10338|66|2494 +1.3.6.1.2.1.7.7.1.8.1.4.172.18.172.51.427.1.4.0.0.0.0.0.10342|66|2494 +1.3.6.1.2.1.7.7.1.8.1.4.224.0.1.22.427.1.4.0.0.0.0.0.10317|66|2494 +1.3.6.1.2.1.7.7.1.8.1.4.224.0.1.22.427.1.4.0.0.0.0.0.10321|66|2494 +1.3.6.1.2.1.7.7.1.8.1.4.224.0.1.22.427.1.4.0.0.0.0.0.10325|66|2494 +1.3.6.1.2.1.7.7.1.8.1.4.224.0.1.22.427.1.4.0.0.0.0.0.10329|66|2494 +1.3.6.1.2.1.7.7.1.8.1.4.224.0.1.22.427.1.4.0.0.0.0.0.10333|66|2494 +1.3.6.1.2.1.7.7.1.8.1.4.224.0.1.22.427.1.4.0.0.0.0.0.10337|66|2494 +1.3.6.1.2.1.7.7.1.8.1.4.224.0.1.22.427.1.4.0.0.0.0.0.10341|66|2494 +1.3.6.1.2.1.7.7.1.8.1.4.239.255.255.253.427.1.4.0.0.0.0.0.10316|66|2494 +1.3.6.1.2.1.7.7.1.8.1.4.239.255.255.253.427.1.4.0.0.0.0.0.10320|66|2494 +1.3.6.1.2.1.7.7.1.8.1.4.239.255.255.253.427.1.4.0.0.0.0.0.10324|66|2494 +1.3.6.1.2.1.7.7.1.8.1.4.239.255.255.253.427.1.4.0.0.0.0.0.10328|66|2494 +1.3.6.1.2.1.7.7.1.8.1.4.239.255.255.253.427.1.4.0.0.0.0.0.10332|66|2494 +1.3.6.1.2.1.7.7.1.8.1.4.239.255.255.253.427.1.4.0.0.0.0.0.10336|66|2494 +1.3.6.1.2.1.7.7.1.8.1.4.239.255.255.253.427.1.4.0.0.0.0.0.10340|66|2494 +1.3.6.1.2.1.7.7.1.8.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.161.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8702|66|2481 +1.3.6.1.2.1.7.7.1.8.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.546.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.6787|66|637 +1.3.6.1.2.1.11.1.0|65|403104 +1.3.6.1.2.1.11.2.0|65|403103 1.3.6.1.2.1.11.3.0|65|0 -1.3.6.1.2.1.11.4.0|65|19 +1.3.6.1.2.1.11.4.0|65|0 1.3.6.1.2.1.11.5.0|65|0 1.3.6.1.2.1.11.6.0|65|0 1.3.6.1.2.1.11.8.0|65|0 @@ -214,10 +1242,10 @@ 1.3.6.1.2.1.11.10.0|65|0 1.3.6.1.2.1.11.11.0|65|0 1.3.6.1.2.1.11.12.0|65|0 -1.3.6.1.2.1.11.13.0|65|29459678 +1.3.6.1.2.1.11.13.0|65|3235888 1.3.6.1.2.1.11.14.0|65|0 -1.3.6.1.2.1.11.15.0|65|1639436 -1.3.6.1.2.1.11.16.0|65|6 +1.3.6.1.2.1.11.15.0|65|174900 +1.3.6.1.2.1.11.16.0|65|254 1.3.6.1.2.1.11.17.0|65|0 1.3.6.1.2.1.11.18.0|65|0 1.3.6.1.2.1.11.19.0|65|0 @@ -228,8 +1256,9 @@ 1.3.6.1.2.1.11.25.0|65|0 1.3.6.1.2.1.11.26.0|65|0 1.3.6.1.2.1.11.27.0|65|0 -1.3.6.1.2.1.11.28.0|65|3608188 +1.3.6.1.2.1.11.28.0|65|403105 1.3.6.1.2.1.11.29.0|65|0 +1.3.6.1.2.1.11.30.0|2|2 1.3.6.1.2.1.11.31.0|65|0 1.3.6.1.2.1.11.32.0|65|0 1.3.6.1.2.1.31.1.1.1.1.1|4|lo @@ -262,18 +1291,18 @@ 1.3.6.1.2.1.31.1.1.1.5.4|65|0 1.3.6.1.2.1.31.1.1.1.5.5|65|0 1.3.6.1.2.1.31.1.1.1.5.6|65|0 -1.3.6.1.2.1.31.1.1.1.6.1|70|191370035 +1.3.6.1.2.1.31.1.1.1.6.1|70|19484745 1.3.6.1.2.1.31.1.1.1.6.2|70|0 -1.3.6.1.2.1.31.1.1.1.6.3|70|2625605679 -1.3.6.1.2.1.31.1.1.1.6.4|70|47503223864 +1.3.6.1.2.1.31.1.1.1.6.3|70|650683083 +1.3.6.1.2.1.31.1.1.1.6.4|70|19124608187 1.3.6.1.2.1.31.1.1.1.6.5|70|0 -1.3.6.1.2.1.31.1.1.1.6.6|70|2625605679 -1.3.6.1.2.1.31.1.1.1.7.1|70|501131 +1.3.6.1.2.1.31.1.1.1.6.6|70|650683083 +1.3.6.1.2.1.31.1.1.1.7.1|70|50758 1.3.6.1.2.1.31.1.1.1.7.2|70|0 -1.3.6.1.2.1.31.1.1.1.7.3|70|29832304 -1.3.6.1.2.1.31.1.1.1.7.4|70|241293374 +1.3.6.1.2.1.31.1.1.1.7.3|70|9528586 +1.3.6.1.2.1.31.1.1.1.7.4|70|36587988 1.3.6.1.2.1.31.1.1.1.7.5|70|0 -1.3.6.1.2.1.31.1.1.1.7.6|70|29832304 +1.3.6.1.2.1.31.1.1.1.7.6|70|9528586 1.3.6.1.2.1.31.1.1.1.8.1|70|0 1.3.6.1.2.1.31.1.1.1.8.2|70|0 1.3.6.1.2.1.31.1.1.1.8.3|70|0 @@ -286,18 +1315,18 @@ 1.3.6.1.2.1.31.1.1.1.9.4|70|0 1.3.6.1.2.1.31.1.1.1.9.5|70|0 1.3.6.1.2.1.31.1.1.1.9.6|70|0 -1.3.6.1.2.1.31.1.1.1.10.1|70|191370035 +1.3.6.1.2.1.31.1.1.1.10.1|70|19484745 1.3.6.1.2.1.31.1.1.1.10.2|70|0 -1.3.6.1.2.1.31.1.1.1.10.3|70|3344024351 -1.3.6.1.2.1.31.1.1.1.10.4|70|44038869134 +1.3.6.1.2.1.31.1.1.1.10.3|70|522094565 +1.3.6.1.2.1.31.1.1.1.10.4|70|18476261335 1.3.6.1.2.1.31.1.1.1.10.5|70|0 -1.3.6.1.2.1.31.1.1.1.10.6|70|3344024351 -1.3.6.1.2.1.31.1.1.1.11.1|70|501131 +1.3.6.1.2.1.31.1.1.1.10.6|70|522094565 +1.3.6.1.2.1.31.1.1.1.11.1|70|50758 1.3.6.1.2.1.31.1.1.1.11.2|70|0 -1.3.6.1.2.1.31.1.1.1.11.3|70|23047118 -1.3.6.1.2.1.31.1.1.1.11.4|70|237332067 +1.3.6.1.2.1.31.1.1.1.11.3|70|6133198 +1.3.6.1.2.1.31.1.1.1.11.4|70|36062148 1.3.6.1.2.1.31.1.1.1.11.5|70|0 -1.3.6.1.2.1.31.1.1.1.11.6|70|23047118 +1.3.6.1.2.1.31.1.1.1.11.6|70|6133198 1.3.6.1.2.1.31.1.1.1.12.1|70|0 1.3.6.1.2.1.31.1.1.1.12.2|70|0 1.3.6.1.2.1.31.1.1.1.12.3|70|0 @@ -339,50 +1368,1185 @@ 1.3.6.1.2.1.31.1.1.1.19.4|67|0 1.3.6.1.2.1.31.1.1.1.19.5|67|0 1.3.6.1.2.1.31.1.1.1.19.6|67|0 -1.3.6.1.3.94.1.8.1.6.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1|4|CPU Temperature-Ctlr B: 67 C 152.60F -1.3.6.1.3.94.1.8.1.6.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.2|4|ASIC Temperature-Ctlr B: 49 C 120.20F -1.3.6.1.3.94.1.8.1.6.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.3|4|Capacitor Pack Temperature-Ctlr B: 40 C 104.00F -1.3.6.1.3.94.1.8.1.6.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.4|4|Expander Temperature-Ctlr B: 44 C 111.20F -1.3.6.1.3.94.1.8.1.6.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.5|4|Disk Controller Temperature-Ctlr B: 56 C 132.80F -1.3.6.1.3.94.1.8.1.6.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.6|4|Host Controller Temperature-Ctlr B: 46 C 114.80F -1.3.6.1.3.94.1.8.1.6.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.7|4|CPU Temperature-Ctlr A: 64 C 147.20F -1.3.6.1.3.94.1.8.1.6.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8|4|ASIC Temperature-Ctlr A: 45 C 113.00F -1.3.6.1.3.94.1.8.1.6.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.9|4|Capacitor Pack Temperature-Ctlr A: 41 C 105.80F -1.3.6.1.3.94.1.8.1.6.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.10|4|Expander Temperature-Ctlr A: 48 C 118.40F -1.3.6.1.3.94.1.8.1.6.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.11|4|Disk Controller Temperature-Ctlr A: 55 C 131.00F -1.3.6.1.3.94.1.8.1.6.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.12|4|Host Controller Temperature-Ctlr A: 45 C 113.00F -1.3.6.1.3.94.1.8.1.6.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.13|4|Capacitor Pack Voltage-Ctlr B: 10.76V -1.3.6.1.3.94.1.8.1.6.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.14|4|Capacitor Cell 1 Voltage-Ctlr B: 2.69V -1.3.6.1.3.94.1.8.1.6.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.15|4|Capacitor Cell 2 Voltage-Ctlr B: 2.69V -1.3.6.1.3.94.1.8.1.6.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.16|4|Capacitor Cell 3 Voltage-Ctlr B: 2.69V -1.3.6.1.3.94.1.8.1.6.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.17|4|Capacitor Cell 4 Voltage-Ctlr B: 2.70V -1.3.6.1.3.94.1.8.1.6.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.18|4|Capacitor Pack Voltage-Ctlr A: 10.80V -1.3.6.1.3.94.1.8.1.6.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.19|4|Capacitor Cell 1 Voltage-Ctlr A: 2.69V -1.3.6.1.3.94.1.8.1.6.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.20|4|Capacitor Cell 2 Voltage-Ctlr A: 2.69V -1.3.6.1.3.94.1.8.1.6.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.21|4|Capacitor Cell 3 Voltage-Ctlr A: 2.70V -1.3.6.1.3.94.1.8.1.6.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.22|4|Capacitor Cell 4 Voltage-Ctlr A: 2.70V -1.3.6.1.3.94.1.8.1.6.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.30|4|SBB IOM Inlet Temperature Loc: lower-IOM B: 32 C 89.60F -1.3.6.1.3.94.1.8.1.6.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.31|4|Near Expander Chip Temperature Loc: lower-IOM B: 32 C 89.60F -1.3.6.1.3.94.1.8.1.6.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.32|4|Expander Chip Temperature Loc: lower-IOM B: 44 C 111.20F -1.3.6.1.3.94.1.8.1.6.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.33|4|SBB IOM Inlet Temperature Loc: upper-IOM A: 34 C 93.20F -1.3.6.1.3.94.1.8.1.6.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.34|4|Near Expander Chip Temperature Loc: upper-IOM A: 34 C 93.20F -1.3.6.1.3.94.1.8.1.6.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.35|4|Expander Chip Temperature Loc: upper-IOM A: 48 C 118.40F -1.3.6.1.3.94.1.8.1.6.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.40|4|Front-Right Baseplane Temp Loc: Drawer: 22 C 71.60F -1.3.6.1.3.94.1.8.1.6.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.41|4|Middle-Left Baseplane Temp Loc: Drawer: 23 C 73.40F -1.3.6.1.3.94.1.8.1.6.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.42|4|Rear-Left Baseplane Temp Loc: Drawer: 29 C 84.20F -1.3.6.1.3.94.1.8.1.6.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.43|4|Rear-Right Baseplane Temp Loc: Drawer: 29 C 84.20F -1.3.6.1.3.94.1.8.1.6.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.44|4|Front-Right Baseplane Temp Loc: Drawer: 22 C 71.60F -1.3.6.1.3.94.1.8.1.6.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.45|4|Middle-Left Baseplane Temp Loc: Drawer: 24 C 75.20F -1.3.6.1.3.94.1.8.1.6.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.46|4|Rear-Left Baseplane Temp Loc: Drawer: 31 C 87.80F -1.3.6.1.3.94.1.8.1.6.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.47|4|Rear-Right Baseplane Temp Loc: Drawer: 31 C 87.80F -1.3.6.1.3.94.1.8.1.6.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.52|4|Ambient Temp, Left Sideplane: 22 C 71.60F -1.3.6.1.3.94.1.8.1.6.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.57|4|Ambient Temp, Left Sideplane: 24 C 75.20F -1.3.6.1.3.94.1.8.1.6.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.58|4|Voltage 12V Rail Loc: right-PSU: 12.42V -1.3.6.1.3.94.1.8.1.6.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.59|4|Voltage 5V Rail Loc: right-PSU: 5.27V -1.3.6.1.3.94.1.8.1.6.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.60|4|Voltage 12V Rail Loc: left-PSU: 12.46V -1.3.6.1.3.94.1.8.1.6.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.61|4|Voltage 5V Rail Loc: left-PSU: 5.27V -1.3.6.1.3.94.1.8.1.6.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.62|4|Current 12V Rail Loc: right-PSU: 34.33A -1.3.6.1.3.94.1.8.1.6.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.63|4|Current 5V Rail Loc: right-PSU: 0.03A -1.3.6.1.3.94.1.8.1.6.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64|4|Current 12V Rail Loc: left-PSU: 31.48A -1.3.6.1.3.94.1.8.1.6.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.65|4|Current 5V Rail Loc: left-PSU: 0.07A -1.3.6.1.6.3.10.2.1.3.0|2|18767229 +1.3.6.1.2.1.31.1.5.0|67|0 +1.3.6.1.2.1.55.1.1.0|2|2 +1.3.6.1.2.1.55.1.2.0|2|64 +1.3.6.1.2.1.55.1.3.0|66|2 +1.3.6.1.2.1.55.1.5.1.2.1|4|lo +1.3.6.1.2.1.55.1.5.1.2.6|4|bond0 +1.3.6.1.2.1.55.1.5.1.3.1|6|0.0 +1.3.6.1.2.1.55.1.5.1.3.6|6|0.0 +1.3.6.1.2.1.55.1.5.1.4.1|66|65536 +1.3.6.1.2.1.55.1.5.1.4.6|66|1500 +1.3.6.1.2.1.55.1.5.1.8.1|4| +1.3.6.1.2.1.55.1.5.1.8.6|4x|00c0ff6322ab +1.3.6.1.2.1.55.1.5.1.9.1|2|1 +1.3.6.1.2.1.55.1.5.1.9.6|2|1 +1.3.6.1.2.1.55.1.5.1.10.1|2|1 +1.3.6.1.2.1.55.1.5.1.10.6|2|1 +1.3.6.1.2.1.92.1.1.1.0|66|1000 +1.3.6.1.2.1.92.1.1.2.0|66|1440 +1.3.6.1.2.1.92.1.2.1.0|65|0 +1.3.6.1.2.1.92.1.2.2.0|65|0 +1.3.6.1.3.94.1.1.0|2|0 +1.3.6.1.3.94.1.2.0|4x|687474703a3137322e31382e3137322e3531 +1.3.6.1.3.94.1.3.0|67|1735858146 +1.3.6.1.3.94.1.4.0|67|1735858146 +1.3.6.1.3.94.1.5.0|67|1735858146 +1.3.6.1.3.94.1.6.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.6.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.6.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0|2|11 +1.3.6.1.3.94.1.6.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0|2|8 +1.3.6.1.3.94.1.6.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0|2|2 +1.3.6.1.3.94.1.6.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0|2|3 +1.3.6.1.3.94.1.6.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0|4x|534541474154452034343636 +1.3.6.1.3.94.1.6.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0|4x|444853494647442d32333033463043304530 +1.3.6.1.3.94.1.6.1.9.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0|67|1735858146 +1.3.6.1.3.94.1.6.1.10.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0|4x|687474703a3137322e31382e3137322e3531 +1.3.6.1.3.94.1.6.1.11.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0|4x|ffffff +1.3.6.1.3.94.1.6.1.12.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0|2|3 +1.3.6.1.3.94.1.6.1.13.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0|2|1 +1.3.6.1.3.94.1.6.1.14.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0|2|65 +1.3.6.1.3.94.1.6.1.15.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0|67|1735858146 +1.3.6.1.3.94.1.6.1.16.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0|67|1735858146 +1.3.6.1.3.94.1.6.1.17.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0|2|74 +1.3.6.1.3.94.1.6.1.18.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0|2|0 +1.3.6.1.3.94.1.6.1.19.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0|4x|00 +1.3.6.1.3.94.1.6.1.20.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0|4|HOSTNAME +1.3.6.1.3.94.1.6.1.21.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0|4x|4652554b4136322d3031 +1.3.6.1.3.94.1.6.1.22.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0|2|2 +1.3.6.1.3.94.1.6.1.23.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0|4x|3c707269766174653e +1.3.6.1.3.94.1.6.1.24.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0|4|LOC +1.3.6.1.3.94.1.6.1.25.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0|2|0 +1.3.6.1.3.94.1.6.1.26.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0|2|0 +1.3.6.1.3.94.1.6.1.27.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0|2|0 +1.3.6.1.3.94.1.6.1.28.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0|2|0 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.1|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.2|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.3|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.4|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.5|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.6|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.7|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.8|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.9|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.10|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.11|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.12|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.13|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.14|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.15|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.16|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.17|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.18|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.19|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.20|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.21|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.22|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.23|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.24|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.25|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.26|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.27|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.28|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.29|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.30|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.31|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.32|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.33|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.34|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.35|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.36|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.37|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.38|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.39|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.40|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.41|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.42|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.43|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.44|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.45|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.46|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.47|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.48|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.49|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.50|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.51|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.52|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.53|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.54|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.55|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.56|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.57|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.58|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.59|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.60|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.61|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.62|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.63|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.64|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.65|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.66|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.67|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.68|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.69|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.70|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.71|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.72|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.73|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.74|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.1|2|1 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.2|2|2 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.3|2|3 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.4|2|4 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.5|2|5 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.6|2|6 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.7|2|7 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.8|2|8 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.9|2|9 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.10|2|10 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.11|2|11 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.12|2|12 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.13|2|13 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.14|2|14 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.15|2|15 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.16|2|16 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.17|2|17 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.18|2|18 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.19|2|19 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.20|2|20 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.21|2|21 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.22|2|22 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.23|2|23 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.24|2|24 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.25|2|25 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.26|2|26 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.27|2|27 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.28|2|28 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.29|2|29 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.30|2|30 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.31|2|31 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.32|2|32 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.33|2|33 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.34|2|34 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.35|2|35 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.36|2|36 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.37|2|37 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.38|2|38 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.39|2|39 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.40|2|40 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.41|2|41 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.42|2|42 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.43|2|43 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.44|2|44 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.45|2|45 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.46|2|46 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.47|2|47 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.48|2|48 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.49|2|49 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.50|2|50 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.51|2|51 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.52|2|52 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.53|2|53 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.54|2|54 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.55|2|55 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.56|2|56 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.57|2|57 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.58|2|58 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.59|2|59 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.60|2|60 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.61|2|61 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.62|2|62 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.63|2|63 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.64|2|64 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.65|2|65 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.66|2|66 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.67|2|67 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.68|2|68 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.69|2|69 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.70|2|70 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.71|2|71 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.72|2|72 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.73|2|73 +1.3.6.1.3.94.1.7.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.74|2|74 +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.1|4x|442d3136323720323930304d487a +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.2|4x|49323030523030352d3032 +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.3|4|Valid +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.4|4| +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.5|4x|49323030523030352d3032 +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.6|4|I200 +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.7|4x|323032342d30362d30365430393a30303a30345a +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.8|4x|494e533230305231302d3032 +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.9|4x|494e533230305231302d3032 +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.10|4x|4e2f41 +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.11|4x|312e37312e3337353732 +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.12|4x|32382e303037 +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.13|4x|332e3231 +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.14|4x|49584d323030523031302d3032 +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.15|4x|312e37312e3337353732 +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.16|4x|49584d323030523031302d3032 +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.17|4|Generic +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.18|4| +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.19|4|5375 +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.20|4x|312e3130 +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.21|4|Unknown +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.22|4x|4e2f41 +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.23|4x|322e30 +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.24|4|2 +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.25|4|4 +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.26|4|7 +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.27|4|2 +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.28|4|1 +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.29|4x|4e6f2043544b2070726573656e74 +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.30|4x|49504d323030523031302d3032 +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.31|4x|75736d2d7273735f7362627361735f696e6469756d2d76 +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.32|4x|312e312e302e3331 +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.33|4x|382e322e302e39 +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.34|4|ffffffff +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.35|4|ffffffff +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.36|4x|4e2f41 +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.37|4x|4e2f41 +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.38|4x|442d3136323720323930304d487a +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.39|4x|49323030523030352d3032 +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.40|4|Valid +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.41|4| +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.42|4x|49323030523030352d3032 +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.43|4|I200 +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.44|4x|323032342d30362d30365430393a30303a30345a +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.45|4x|494e533230305231302d3032 +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.46|4x|494e533230305231302d3032 +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.47|4x|4e2f41 +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.48|4x|312e37312e3337353732 +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.49|4x|32382e303037 +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.50|4x|332e3231 +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.51|4x|49584d323030523031302d3032 +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.52|4x|312e37312e3337353732 +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.53|4x|49584d323030523031302d3032 +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.54|4|Generic +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.55|4| +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.56|4|5375 +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.57|4x|312e3130 +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.58|4|Unknown +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.59|4x|4e2f41 +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.60|4x|322e30 +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.61|4|2 +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.62|4|4 +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.63|4|7 +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.64|4|2 +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.65|4|1 +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.66|4x|4e6f2043544b2070726573656e74 +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.67|4x|49504d323030523031302d3032 +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.68|4x|75736d2d7273735f7362627361735f696e6469756d2d76 +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.69|4x|312e312e302e3331 +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.70|4x|382e322e302e39 +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.71|4|ffffffff +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.72|4|ffffffff +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.73|4x|4e2f41 +1.3.6.1.3.94.1.7.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.74|4x|4e2f41 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.1|4x|53746f7261676520436f6e74726f6c6c65722043505520547970652028492f4f204d616e616765722d4129 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.2|4x|42756e646c652056657273696f6e2028492f4f204d616e616765722d4129 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.3|4x|42756e646c65205374617475732028492f4f204d616e616765722d4129 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.4|4x|42756e646c65205374617475732028492f4f204d616e616765722d4129 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.5|4x|42756e646c652056657273696f6e204f6e6c792028492f4f204d616e616765722d4129 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.6|4x|426173652042756e646c652056657273696f6e2028492f4f204d616e616765722d4129 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.7|4x|4275696c6420446174652028492f4f204d616e616765722d4129 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.8|4x|53746f7261676520436f6e74726f6c6c657220436f64652056657273696f6e2028492f4f204d616e616765722d4129 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.9|4x|53746f7261676520436f6e74726f6c6c657220436f646520426173656c6576656c2028492f4f204d616e616765722d4129 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.10|4x|4d656d6f727920436f6e74726f6c6c6572204650474120436f64652056657273696f6e2028492f4f204d616e616765722d4129 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.11|4x|4153494320436f6e74726f6c6c65722056657273696f6e2028492f4f204d616e616765722d4129 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.12|4x|53746f7261676520436f6e74726f6c6c6572204c6f6164657220436f64652056657273696f6e2028492f4f204d616e616765722d4129 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.13|4x|434150492056657273696f6e2028492f4f204d616e616765722d4129 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.14|4x|4d616e6167656d656e7420436f6e74726f6c6c657220436f64652056657273696f6e2028492f4f204d616e616765722d4129 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.15|4x|4d616e6167656d656e7420436f6e74726f6c6c6572204c6f6164657220436f64652056657273696f6e2028492f4f204d616e616765722d4129 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.16|4x|4d616e6167656d656e7420436f6e74726f6c6c657220426173652056657273696f6e2028492f4f204d616e616765722d4129 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.17|4x|4669726d776172652044656661756c7420506c6174666f726d204272616e642028492f4f204d616e616765722d4129 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.18|4x|4669726d776172652044656661756c7420506c6174666f726d204272616e642028492f4f204d616e616765722d4129 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.19|4x|457870616e64657220436f6e74726f6c6c657220436f64652056657273696f6e2028492f4f204d616e616765722d4129 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.20|4x|43504c4420436f64652056657273696f6e2028492f4f204d616e616765722d4129 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.21|4x|506572736f6e616c697479204d6f64756c652043504c442056657273696f6e2028492f4f204d616e616765722d4129 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.22|4x|50524d2043504c4420436f64652056657273696f6e2028492f4f204d616e616765722d4129 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.23|4x|48617264776172652056657273696f6e2028492f4f204d616e616765722d4129 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.24|4x|486f737420496e74657266616365204d6f64756c652056657273696f6e2028492f4f204d616e616765722d4129 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.25|4x|486f737420496e74657266616365204d6f64756c65204d6f64656c2028492f4f204d616e616765722d4129 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.26|4x|4261636b706c616e6520547970652028492f4f204d616e616765722d4129 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.27|4x|486f737420496e74657266616365204861726477617265202843686970292056657273696f6e2028492f4f204d616e616765722d4129 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.28|4x|4469736b20496e74657266616365204861726477617265202843686970292056657273696f6e2028492f4f204d616e616765722d4129 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.29|4x|43544b2056657273696f6e2028492f4f204d616e616765722d4129 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.30|4x|4d43204f532056657273696f6e2028492f4f204d616e616765722d4129 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.31|4x|47454d2056657273696f6e2028492f4f204d616e616765722d4129 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.32|4x|48656c702056657273696f6e2028492f4f204d616e616765722d4129 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.33|4x|5472616e736c6174696f6e2056657273696f6e2028492f4f204d616e616765722d4129 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.34|4x|50434965205377697463682046726f6e74656e64204669726d776172652056657273696f6e2028492f4f204d616e616765722d4129 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.35|4x|50434965205377697463682046726f6e74656e6420436f6e66696775726174696f6e2056657273696f6e2028492f4f204d616e616765722d4129 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.36|4x|5043496520537769746368204261636b656e64204669726d776172652056657273696f6e2028492f4f204d616e616765722d4129 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.37|4x|5043496520537769746368204261636b656e6420436f6e66696775726174696f6e2056657273696f6e2028492f4f204d616e616765722d4129 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.38|4x|53746f7261676520436f6e74726f6c6c65722043505520547970652028492f4f204d616e616765722d4229 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.39|4x|42756e646c652056657273696f6e2028492f4f204d616e616765722d4229 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.40|4x|42756e646c65205374617475732028492f4f204d616e616765722d4229 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.41|4x|42756e646c65205374617475732028492f4f204d616e616765722d4229 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.42|4x|42756e646c652056657273696f6e204f6e6c792028492f4f204d616e616765722d4229 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.43|4x|426173652042756e646c652056657273696f6e2028492f4f204d616e616765722d4229 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.44|4x|4275696c6420446174652028492f4f204d616e616765722d4229 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.45|4x|53746f7261676520436f6e74726f6c6c657220436f64652056657273696f6e2028492f4f204d616e616765722d4229 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.46|4x|53746f7261676520436f6e74726f6c6c657220436f646520426173656c6576656c2028492f4f204d616e616765722d4229 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.47|4x|4d656d6f727920436f6e74726f6c6c6572204650474120436f64652056657273696f6e2028492f4f204d616e616765722d4229 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.48|4x|4153494320436f6e74726f6c6c65722056657273696f6e2028492f4f204d616e616765722d4229 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.49|4x|53746f7261676520436f6e74726f6c6c6572204c6f6164657220436f64652056657273696f6e2028492f4f204d616e616765722d4229 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.50|4x|434150492056657273696f6e2028492f4f204d616e616765722d4229 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.51|4x|4d616e6167656d656e7420436f6e74726f6c6c657220436f64652056657273696f6e2028492f4f204d616e616765722d4229 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.52|4x|4d616e6167656d656e7420436f6e74726f6c6c6572204c6f6164657220436f64652056657273696f6e2028492f4f204d616e616765722d4229 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.53|4x|4d616e6167656d656e7420436f6e74726f6c6c657220426173652056657273696f6e2028492f4f204d616e616765722d4229 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.54|4x|4669726d776172652044656661756c7420506c6174666f726d204272616e642028492f4f204d616e616765722d4229 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.55|4x|4669726d776172652044656661756c7420506c6174666f726d204272616e642028492f4f204d616e616765722d4229 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.56|4x|457870616e64657220436f6e74726f6c6c657220436f64652056657273696f6e2028492f4f204d616e616765722d4229 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.57|4x|43504c4420436f64652056657273696f6e2028492f4f204d616e616765722d4229 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.58|4x|506572736f6e616c697479204d6f64756c652043504c442056657273696f6e2028492f4f204d616e616765722d4229 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.59|4x|50524d2043504c4420436f64652056657273696f6e2028492f4f204d616e616765722d4229 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.60|4x|48617264776172652056657273696f6e2028492f4f204d616e616765722d4229 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.61|4x|486f737420496e74657266616365204d6f64756c652056657273696f6e2028492f4f204d616e616765722d4229 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.62|4x|486f737420496e74657266616365204d6f64756c65204d6f64656c2028492f4f204d616e616765722d4229 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.63|4x|4261636b706c616e6520547970652028492f4f204d616e616765722d4229 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.64|4x|486f737420496e74657266616365204861726477617265202843686970292056657273696f6e2028492f4f204d616e616765722d4229 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.65|4x|4469736b20496e74657266616365204861726477617265202843686970292056657273696f6e2028492f4f204d616e616765722d4229 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.66|4x|43544b2056657273696f6e2028492f4f204d616e616765722d4229 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.67|4x|4d43204f532056657273696f6e2028492f4f204d616e616765722d4229 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.68|4x|47454d2056657273696f6e2028492f4f204d616e616765722d4229 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.69|4x|48656c702056657273696f6e2028492f4f204d616e616765722d4229 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.70|4x|5472616e736c6174696f6e2056657273696f6e2028492f4f204d616e616765722d4229 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.71|4x|50434965205377697463682046726f6e74656e64204669726d776172652056657273696f6e2028492f4f204d616e616765722d4229 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.72|4x|50434965205377697463682046726f6e74656e6420436f6e66696775726174696f6e2056657273696f6e2028492f4f204d616e616765722d4229 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.73|4x|5043496520537769746368204261636b656e64204669726d776172652056657273696f6e2028492f4f204d616e616765722d4229 +1.3.6.1.3.94.1.7.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.74|4x|5043496520537769746368204261636b656e6420436f6e66696775726174696f6e2056657273696f6e2028492f4f204d616e616765722d4229 +1.3.6.1.3.94.1.8.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.1|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.8.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.2|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.8.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.3|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.8.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.4|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.8.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.5|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.8.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.6|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.8.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.7|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.8.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.8|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.8.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.9|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.8.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.10|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.8.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.11|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.8.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.12|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.8.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.13|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.8.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.14|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.8.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.15|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.8.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.16|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.8.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.17|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.8.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.18|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.8.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.19|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.8.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.20|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.8.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.21|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.8.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.22|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.8.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.23|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.8.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.24|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.8.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.25|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.8.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.26|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.8.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.27|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.8.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.28|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.8.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.29|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.8.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.30|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.8.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.31|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.8.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.32|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.8.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.33|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.8.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.34|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.8.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.35|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.8.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.36|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.8.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.37|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.8.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.38|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.8.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.39|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.8.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.40|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.8.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.41|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.8.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.42|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.8.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.43|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.8.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.44|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.8.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.45|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.8.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.46|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.8.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.47|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.8.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.48|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.8.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.49|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.8.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.50|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.8.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.51|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.8.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.52|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.8.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.53|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.8.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.54|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.8.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.55|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.8.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.56|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.8.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.57|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.8.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.58|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.8.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.59|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.8.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.60|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.8.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.61|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.8.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.62|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.8.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.63|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.8.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.64|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.8.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.65|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.8.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.1|2|1 +1.3.6.1.3.94.1.8.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.2|2|2 +1.3.6.1.3.94.1.8.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.3|2|3 +1.3.6.1.3.94.1.8.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.4|2|4 +1.3.6.1.3.94.1.8.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.5|2|5 +1.3.6.1.3.94.1.8.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.6|2|6 +1.3.6.1.3.94.1.8.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.7|2|7 +1.3.6.1.3.94.1.8.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.8|2|8 +1.3.6.1.3.94.1.8.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.9|2|9 +1.3.6.1.3.94.1.8.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.10|2|10 +1.3.6.1.3.94.1.8.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.11|2|11 +1.3.6.1.3.94.1.8.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.12|2|12 +1.3.6.1.3.94.1.8.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.13|2|13 +1.3.6.1.3.94.1.8.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.14|2|14 +1.3.6.1.3.94.1.8.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.15|2|15 +1.3.6.1.3.94.1.8.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.16|2|16 +1.3.6.1.3.94.1.8.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.17|2|17 +1.3.6.1.3.94.1.8.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.18|2|18 +1.3.6.1.3.94.1.8.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.19|2|19 +1.3.6.1.3.94.1.8.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.20|2|20 +1.3.6.1.3.94.1.8.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.21|2|21 +1.3.6.1.3.94.1.8.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.22|2|22 +1.3.6.1.3.94.1.8.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.23|2|23 +1.3.6.1.3.94.1.8.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.24|2|24 +1.3.6.1.3.94.1.8.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.25|2|25 +1.3.6.1.3.94.1.8.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.26|2|26 +1.3.6.1.3.94.1.8.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.27|2|27 +1.3.6.1.3.94.1.8.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.28|2|28 +1.3.6.1.3.94.1.8.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.29|2|29 +1.3.6.1.3.94.1.8.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.30|2|30 +1.3.6.1.3.94.1.8.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.31|2|31 +1.3.6.1.3.94.1.8.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.32|2|32 +1.3.6.1.3.94.1.8.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.33|2|33 +1.3.6.1.3.94.1.8.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.34|2|34 +1.3.6.1.3.94.1.8.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.35|2|35 +1.3.6.1.3.94.1.8.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.36|2|36 +1.3.6.1.3.94.1.8.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.37|2|37 +1.3.6.1.3.94.1.8.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.38|2|38 +1.3.6.1.3.94.1.8.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.39|2|39 +1.3.6.1.3.94.1.8.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.40|2|40 +1.3.6.1.3.94.1.8.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.41|2|41 +1.3.6.1.3.94.1.8.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.42|2|42 +1.3.6.1.3.94.1.8.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.43|2|43 +1.3.6.1.3.94.1.8.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.44|2|44 +1.3.6.1.3.94.1.8.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.45|2|45 +1.3.6.1.3.94.1.8.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.46|2|46 +1.3.6.1.3.94.1.8.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.47|2|47 +1.3.6.1.3.94.1.8.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.48|2|48 +1.3.6.1.3.94.1.8.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.49|2|49 +1.3.6.1.3.94.1.8.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.50|2|50 +1.3.6.1.3.94.1.8.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.51|2|51 +1.3.6.1.3.94.1.8.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.52|2|52 +1.3.6.1.3.94.1.8.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.53|2|53 +1.3.6.1.3.94.1.8.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.54|2|54 +1.3.6.1.3.94.1.8.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.55|2|55 +1.3.6.1.3.94.1.8.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.56|2|56 +1.3.6.1.3.94.1.8.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.57|2|57 +1.3.6.1.3.94.1.8.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.58|2|58 +1.3.6.1.3.94.1.8.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.59|2|59 +1.3.6.1.3.94.1.8.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.60|2|60 +1.3.6.1.3.94.1.8.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.61|2|61 +1.3.6.1.3.94.1.8.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.62|2|62 +1.3.6.1.3.94.1.8.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.63|2|63 +1.3.6.1.3.94.1.8.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.64|2|64 +1.3.6.1.3.94.1.8.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.65|2|65 +1.3.6.1.3.94.1.8.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.1|4x|4350552054656d70657261747572652d43746c722042 +1.3.6.1.3.94.1.8.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.2|4x|415349432054656d70657261747572652d43746c722042 +1.3.6.1.3.94.1.8.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.3|4x|436170616369746f72205061636b2054656d70657261747572652d43746c722042 +1.3.6.1.3.94.1.8.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.4|4x|457870616e6465722054656d70657261747572652d43746c722042 +1.3.6.1.3.94.1.8.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.5|4x|4469736b20436f6e74726f6c6c65722054656d70657261747572652d43746c722042 +1.3.6.1.3.94.1.8.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.6|4x|486f737420436f6e74726f6c6c65722054656d70657261747572652d43746c722042 +1.3.6.1.3.94.1.8.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.7|4x|4350552054656d70657261747572652d43746c722041 +1.3.6.1.3.94.1.8.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.8|4x|415349432054656d70657261747572652d43746c722041 +1.3.6.1.3.94.1.8.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.9|4x|436170616369746f72205061636b2054656d70657261747572652d43746c722041 +1.3.6.1.3.94.1.8.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.10|4x|457870616e6465722054656d70657261747572652d43746c722041 +1.3.6.1.3.94.1.8.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.11|4x|4469736b20436f6e74726f6c6c65722054656d70657261747572652d43746c722041 +1.3.6.1.3.94.1.8.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.12|4x|486f737420436f6e74726f6c6c65722054656d70657261747572652d43746c722041 +1.3.6.1.3.94.1.8.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.13|4x|436170616369746f72205061636b20566f6c746167652d43746c722042 +1.3.6.1.3.94.1.8.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.14|4x|436170616369746f722043656c6c203120566f6c746167652d43746c722042 +1.3.6.1.3.94.1.8.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.15|4x|436170616369746f722043656c6c203220566f6c746167652d43746c722042 +1.3.6.1.3.94.1.8.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.16|4x|436170616369746f722043656c6c203320566f6c746167652d43746c722042 +1.3.6.1.3.94.1.8.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.17|4x|436170616369746f722043656c6c203420566f6c746167652d43746c722042 +1.3.6.1.3.94.1.8.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.18|4x|436170616369746f72205061636b20566f6c746167652d43746c722041 +1.3.6.1.3.94.1.8.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.19|4x|436170616369746f722043656c6c203120566f6c746167652d43746c722041 +1.3.6.1.3.94.1.8.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.20|4x|436170616369746f722043656c6c203220566f6c746167652d43746c722041 +1.3.6.1.3.94.1.8.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.21|4x|436170616369746f722043656c6c203320566f6c746167652d43746c722041 +1.3.6.1.3.94.1.8.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.22|4x|436170616369746f722043656c6c203420566f6c746167652d43746c722041 +1.3.6.1.3.94.1.8.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.23|4x|436170616369746f72204368617267652d43746c722042 +1.3.6.1.3.94.1.8.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.24|4x|436170616369746f72204368617267652d43746c722041 +1.3.6.1.3.94.1.8.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.25|4x|436170616369746f722043617061636974616e63652d43746c722042 +1.3.6.1.3.94.1.8.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.26|4x|436170616369746f722043617061636974616e63652d43746c722041 +1.3.6.1.3.94.1.8.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.27|4x|436170616369746f7220526573697374616e63652d43746c722042 +1.3.6.1.3.94.1.8.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.28|4x|436170616369746f7220526573697374616e63652d43746c722041 +1.3.6.1.3.94.1.8.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.29|4x|4f766572616c6c20556e697420537461747573 +1.3.6.1.3.94.1.8.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.30|4x|53424220494f4d20496e6c65742054656d7065726174757265204c6f633a206c6f7765722d494f4d2042 +1.3.6.1.3.94.1.8.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.31|4x|4e65617220457870616e64657220436869702054656d7065726174757265204c6f633a206c6f7765722d494f4d2042 +1.3.6.1.3.94.1.8.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.32|4x|457870616e64657220436869702054656d7065726174757265204c6f633a206c6f7765722d494f4d2042 +1.3.6.1.3.94.1.8.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.33|4x|53424220494f4d20496e6c65742054656d7065726174757265204c6f633a2075707065722d494f4d2041 +1.3.6.1.3.94.1.8.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.34|4x|4e65617220457870616e64657220436869702054656d7065726174757265204c6f633a2075707065722d494f4d2041 +1.3.6.1.3.94.1.8.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.35|4x|457870616e64657220436869702054656d7065726174757265204c6f633a2075707065722d494f4d2041 +1.3.6.1.3.94.1.8.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.36|4x|54656d706572617475726520496e6c6574204c6f633a2072696768742d505355 +1.3.6.1.3.94.1.8.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.37|4x|54656d706572617475726520486f7473706f74204c6f633a2072696768742d505355 +1.3.6.1.3.94.1.8.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.38|4x|54656d706572617475726520496e6c6574204c6f633a206c6566742d505355 +1.3.6.1.3.94.1.8.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.39|4x|54656d706572617475726520486f7473706f74204c6f633a206c6566742d505355 +1.3.6.1.3.94.1.8.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.40|4x|46726f6e742d52696768742042617365706c616e652054656d70204c6f633a20447261776572 +1.3.6.1.3.94.1.8.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.41|4x|4d6964646c652d4c6566742042617365706c616e652054656d70204c6f633a20447261776572 +1.3.6.1.3.94.1.8.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.42|4x|526561722d4c6566742042617365706c616e652054656d70204c6f633a20447261776572 +1.3.6.1.3.94.1.8.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.43|4x|526561722d52696768742042617365706c616e652054656d70204c6f633a20447261776572 +1.3.6.1.3.94.1.8.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.44|4x|46726f6e742d52696768742042617365706c616e652054656d70204c6f633a20447261776572 +1.3.6.1.3.94.1.8.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.45|4x|4d6964646c652d4c6566742042617365706c616e652054656d70204c6f633a20447261776572 +1.3.6.1.3.94.1.8.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.46|4x|526561722d4c6566742042617365706c616e652054656d70204c6f633a20447261776572 +1.3.6.1.3.94.1.8.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.47|4x|526561722d52696768742042617365706c616e652054656d70204c6f633a20447261776572 +1.3.6.1.3.94.1.8.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.48|4x|32342d706f727420457870616e6465722c2052696768742053696465706c616e65 +1.3.6.1.3.94.1.8.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.49|4x|33362d706f727420457870616e6465722c2052696768742053696465706c616e65 +1.3.6.1.3.94.1.8.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.50|4x|32342d706f727420457870616e6465722c204c6566742053696465706c616e65 +1.3.6.1.3.94.1.8.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.51|4x|33362d706f727420457870616e6465722c204c6566742053696465706c616e65 +1.3.6.1.3.94.1.8.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.52|4x|416d6269656e742054656d702c204c6566742053696465706c616e65 +1.3.6.1.3.94.1.8.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.53|4x|32342d706f727420457870616e6465722c2052696768742053696465706c616e65 +1.3.6.1.3.94.1.8.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.54|4x|33362d706f727420457870616e6465722c2052696768742053696465706c616e65 +1.3.6.1.3.94.1.8.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.55|4x|32342d706f727420457870616e6465722c204c6566742053696465706c616e65 +1.3.6.1.3.94.1.8.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.56|4x|33362d706f727420457870616e6465722c204c6566742053696465706c616e65 +1.3.6.1.3.94.1.8.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.57|4x|416d6269656e742054656d702c204c6566742053696465706c616e65 +1.3.6.1.3.94.1.8.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.58|4x|566f6c7461676520313256205261696c204c6f633a2072696768742d505355 +1.3.6.1.3.94.1.8.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.59|4x|566f6c74616765203556205261696c204c6f633a2072696768742d505355 +1.3.6.1.3.94.1.8.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.60|4x|566f6c7461676520313256205261696c204c6f633a206c6566742d505355 +1.3.6.1.3.94.1.8.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.61|4x|566f6c74616765203556205261696c204c6f633a206c6566742d505355 +1.3.6.1.3.94.1.8.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.62|4x|43757272656e7420313256205261696c204c6f633a2072696768742d505355 +1.3.6.1.3.94.1.8.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.63|4x|43757272656e74203556205261696c204c6f633a2072696768742d505355 +1.3.6.1.3.94.1.8.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.64|4x|43757272656e7420313256205261696c204c6f633a206c6566742d505355 +1.3.6.1.3.94.1.8.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.65|4x|43757272656e74203556205261696c204c6f633a206c6566742d505355 +1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.1|2|3 +1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.2|2|3 +1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.3|2|3 +1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.4|2|3 +1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.5|2|3 +1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.6|2|3 +1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.7|2|3 +1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.8|2|3 +1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.9|2|3 +1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.10|2|3 +1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.11|2|3 +1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.12|2|3 +1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.13|2|3 +1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.14|2|3 +1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.15|2|3 +1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.16|2|3 +1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.17|2|3 +1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.18|2|3 +1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.19|2|3 +1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.20|2|3 +1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.21|2|3 +1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.22|2|3 +1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.23|2|3 +1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.24|2|3 +1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.25|2|3 +1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.26|2|3 +1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.27|2|3 +1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.28|2|3 +1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.29|2|3 +1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.30|2|3 +1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.31|2|3 +1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.32|2|3 +1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.33|2|3 +1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.34|2|3 +1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.35|2|3 +1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.36|2|3 +1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.37|2|3 +1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.38|2|3 +1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.39|2|3 +1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.40|2|3 +1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.41|2|3 +1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.42|2|3 +1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.43|2|3 +1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.44|2|3 +1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.45|2|3 +1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.46|2|3 +1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.47|2|3 +1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.48|2|3 +1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.49|2|3 +1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.50|2|3 +1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.51|2|3 +1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.52|2|3 +1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.53|2|3 +1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.54|2|3 +1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.55|2|3 +1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.56|2|3 +1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.57|2|3 +1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.58|2|3 +1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.59|2|3 +1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.60|2|3 +1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.61|2|3 +1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.62|2|3 +1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.63|2|3 +1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.64|2|3 +1.3.6.1.3.94.1.8.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.65|2|3 +1.3.6.1.3.94.1.8.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.1|4| +1.3.6.1.3.94.1.8.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.2|4| +1.3.6.1.3.94.1.8.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.3|4| +1.3.6.1.3.94.1.8.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.4|4| +1.3.6.1.3.94.1.8.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.5|4| +1.3.6.1.3.94.1.8.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.6|4| +1.3.6.1.3.94.1.8.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.7|4| +1.3.6.1.3.94.1.8.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.8|4| +1.3.6.1.3.94.1.8.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.9|4| +1.3.6.1.3.94.1.8.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.10|4| +1.3.6.1.3.94.1.8.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.11|4| +1.3.6.1.3.94.1.8.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.12|4| +1.3.6.1.3.94.1.8.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.13|4| +1.3.6.1.3.94.1.8.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.14|4| +1.3.6.1.3.94.1.8.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.15|4| +1.3.6.1.3.94.1.8.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.16|4| +1.3.6.1.3.94.1.8.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.17|4| +1.3.6.1.3.94.1.8.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.18|4| +1.3.6.1.3.94.1.8.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.19|4| +1.3.6.1.3.94.1.8.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.20|4| +1.3.6.1.3.94.1.8.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.21|4| +1.3.6.1.3.94.1.8.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.22|4| +1.3.6.1.3.94.1.8.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.23|4| +1.3.6.1.3.94.1.8.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.24|4| +1.3.6.1.3.94.1.8.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.25|4| +1.3.6.1.3.94.1.8.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.26|4| +1.3.6.1.3.94.1.8.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.27|4| +1.3.6.1.3.94.1.8.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.28|4| +1.3.6.1.3.94.1.8.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.29|4| +1.3.6.1.3.94.1.8.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.30|4| +1.3.6.1.3.94.1.8.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.31|4| +1.3.6.1.3.94.1.8.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.32|4| +1.3.6.1.3.94.1.8.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.33|4| +1.3.6.1.3.94.1.8.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.34|4| +1.3.6.1.3.94.1.8.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.35|4| +1.3.6.1.3.94.1.8.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.36|4| +1.3.6.1.3.94.1.8.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.37|4| +1.3.6.1.3.94.1.8.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.38|4| +1.3.6.1.3.94.1.8.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.39|4| +1.3.6.1.3.94.1.8.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.40|4| +1.3.6.1.3.94.1.8.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.41|4| +1.3.6.1.3.94.1.8.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.42|4| +1.3.6.1.3.94.1.8.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.43|4| +1.3.6.1.3.94.1.8.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.44|4| +1.3.6.1.3.94.1.8.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.45|4| +1.3.6.1.3.94.1.8.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.46|4| +1.3.6.1.3.94.1.8.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.47|4| +1.3.6.1.3.94.1.8.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.48|4| +1.3.6.1.3.94.1.8.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.49|4| +1.3.6.1.3.94.1.8.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.50|4| +1.3.6.1.3.94.1.8.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.51|4| +1.3.6.1.3.94.1.8.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.52|4| +1.3.6.1.3.94.1.8.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.53|4| +1.3.6.1.3.94.1.8.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.54|4| +1.3.6.1.3.94.1.8.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.55|4| +1.3.6.1.3.94.1.8.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.56|4| +1.3.6.1.3.94.1.8.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.57|4| +1.3.6.1.3.94.1.8.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.58|4| +1.3.6.1.3.94.1.8.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.59|4| +1.3.6.1.3.94.1.8.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.60|4| +1.3.6.1.3.94.1.8.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.61|4| +1.3.6.1.3.94.1.8.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.62|4| +1.3.6.1.3.94.1.8.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.63|4| +1.3.6.1.3.94.1.8.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.64|4| +1.3.6.1.3.94.1.8.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.65|4| +1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.1|4x|4350552054656d70657261747572652d43746c7220423a2036372043203135322e363046 +1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.2|4x|415349432054656d70657261747572652d43746c7220423a2034392043203132302e323046 +1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.3|4x|436170616369746f72205061636b2054656d70657261747572652d43746c7220423a2033392043203130322e323046 +1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.4|4x|457870616e6465722054656d70657261747572652d43746c7220423a2034342043203131312e323046 +1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.5|4x|4469736b20436f6e74726f6c6c65722054656d70657261747572652d43746c7220423a2035352043203133312e303046 +1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.6|4x|486f737420436f6e74726f6c6c65722054656d70657261747572652d43746c7220423a2034362043203131342e383046 +1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.7|4x|4350552054656d70657261747572652d43746c7220413a2036352043203134392e303046 +1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.8|4x|415349432054656d70657261747572652d43746c7220413a2034352043203131332e303046 +1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.9|4x|436170616369746f72205061636b2054656d70657261747572652d43746c7220413a2034312043203130352e383046 +1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.10|4x|457870616e6465722054656d70657261747572652d43746c7220413a2034372043203131362e363046 +1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.11|4x|4469736b20436f6e74726f6c6c65722054656d70657261747572652d43746c7220413a2035342043203132392e323046 +1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.12|4x|486f737420436f6e74726f6c6c65722054656d70657261747572652d43746c7220413a2034352043203131332e303046 +1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.13|4x|436170616369746f72205061636b20566f6c746167652d43746c7220423a2031302e373656 +1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.14|4x|436170616369746f722043656c6c203120566f6c746167652d43746c7220423a20322e363956 +1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.15|4x|436170616369746f722043656c6c203220566f6c746167652d43746c7220423a20322e363956 +1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.16|4x|436170616369746f722043656c6c203320566f6c746167652d43746c7220423a20322e363956 +1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.17|4x|436170616369746f722043656c6c203420566f6c746167652d43746c7220423a20322e373056 +1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.18|4x|436170616369746f72205061636b20566f6c746167652d43746c7220413a2031302e383056 +1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.19|4x|436170616369746f722043656c6c203120566f6c746167652d43746c7220413a20322e363956 +1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.20|4x|436170616369746f722043656c6c203220566f6c746167652d43746c7220413a20322e363956 +1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.21|4x|436170616369746f722043656c6c203320566f6c746167652d43746c7220413a20322e373056 +1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.22|4x|436170616369746f722043656c6c203420566f6c746167652d43746c7220413a20322e373056 +1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.23|4x|436170616369746f72204368617267652d43746c7220423a2031303025 +1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.24|4x|436170616369746f72204368617267652d43746c7220413a2031303025 +1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.25|4x|436170616369746f722043617061636974616e63652d43746c7220423a20352e3120466172616473 +1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.26|4x|436170616369746f722043617061636974616e63652d43746c7220413a20352e3120466172616473 +1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.27|4x|436170616369746f7220526573697374616e63652d43746c7220423a203135372e30204f686d73 +1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.28|4x|436170616369746f7220526573697374616e63652d43746c7220413a203135342e32204f686d73 +1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.29|4x|4f766572616c6c20556e6974205374617475733a204f4b +1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.30|4x|53424220494f4d20496e6c65742054656d7065726174757265204c6f633a206c6f7765722d494f4d20423a20333220432038392e363046 +1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.31|4x|4e65617220457870616e64657220436869702054656d7065726174757265204c6f633a206c6f7765722d494f4d20423a20333220432038392e363046 +1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.32|4x|457870616e64657220436869702054656d7065726174757265204c6f633a206c6f7765722d494f4d20423a2034342043203131312e323046 +1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.33|4x|53424220494f4d20496e6c65742054656d7065726174757265204c6f633a2075707065722d494f4d20413a20333420432039332e323046 +1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.34|4x|4e65617220457870616e64657220436869702054656d7065726174757265204c6f633a2075707065722d494f4d20413a20333320432039312e343046 +1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.35|4x|457870616e64657220436869702054656d7065726174757265204c6f633a2075707065722d494f4d20413a2034372043203131362e363046 +1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.36|4x|54656d706572617475726520496e6c6574204c6f633a2072696768742d5053553a20333520432039352e303046 +1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.37|4x|54656d706572617475726520486f7473706f74204c6f633a2072696768742d5053553a2033382043203130302e343046 +1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.38|4x|54656d706572617475726520496e6c6574204c6f633a206c6566742d5053553a20333120432038372e383046 +1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.39|4x|54656d706572617475726520486f7473706f74204c6f633a206c6566742d5053553a2034312043203130352e383046 +1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.40|4x|46726f6e742d52696768742042617365706c616e652054656d70204c6f633a204472617765723a20323320432037332e343046 +1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.41|4x|4d6964646c652d4c6566742042617365706c616e652054656d70204c6f633a204472617765723a20323420432037352e323046 +1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.42|4x|526561722d4c6566742042617365706c616e652054656d70204c6f633a204472617765723a20323920432038342e323046 +1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.43|4x|526561722d52696768742042617365706c616e652054656d70204c6f633a204472617765723a20323920432038342e323046 +1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.44|4x|46726f6e742d52696768742042617365706c616e652054656d70204c6f633a204472617765723a20323320432037332e343046 +1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.45|4x|4d6964646c652d4c6566742042617365706c616e652054656d70204c6f633a204472617765723a20323520432037372e303046 +1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.46|4x|526561722d4c6566742042617365706c616e652054656d70204c6f633a204472617765723a20333120432038372e383046 +1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.47|4x|526561722d52696768742042617365706c616e652054656d70204c6f633a204472617765723a20333120432038372e383046 +1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.48|4x|32342d706f727420457870616e6465722c2052696768742053696465706c616e653a20333320432039312e343046 +1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.49|4x|33362d706f727420457870616e6465722c2052696768742053696465706c616e653a2035352043203133312e303046 +1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.50|4x|32342d706f727420457870616e6465722c204c6566742053696465706c616e653a20333420432039332e323046 +1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.51|4x|33362d706f727420457870616e6465722c204c6566742053696465706c616e653a2035332043203132372e343046 +1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.52|4x|416d6269656e742054656d702c204c6566742053696465706c616e653a20323320432037332e343046 +1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.53|4x|32342d706f727420457870616e6465722c2052696768742053696465706c616e653a2034342043203131312e323046 +1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.54|4x|33362d706f727420457870616e6465722c2052696768742053696465706c616e653a2035362043203133322e383046 +1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.55|4x|32342d706f727420457870616e6465722c204c6566742053696465706c616e653a2034332043203130392e343046 +1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.56|4x|33362d706f727420457870616e6465722c204c6566742053696465706c616e653a2035362043203133322e383046 +1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.57|4x|416d6269656e742054656d702c204c6566742053696465706c616e653a20323520432037372e303046 +1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.58|4x|566f6c7461676520313256205261696c204c6f633a2072696768742d5053553a2031322e343256 +1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.59|4x|566f6c74616765203556205261696c204c6f633a2072696768742d5053553a20352e323756 +1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.60|4x|566f6c7461676520313256205261696c204c6f633a206c6566742d5053553a2031322e343656 +1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.61|4x|566f6c74616765203556205261696c204c6f633a206c6566742d5053553a20352e323756 +1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.62|4x|43757272656e7420313256205261696c204c6f633a2072696768742d5053553a2033332e363741 +1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.63|4x|43757272656e74203556205261696c204c6f633a2072696768742d5053553a20302e303741 +1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.64|4x|43757272656e7420313256205261696c204c6f633a206c6566742d5053553a2033312e313341 +1.3.6.1.3.94.1.8.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.65|4x|43757272656e74203556205261696c204c6f633a206c6566742d5053553a20302e303741 +1.3.6.1.3.94.1.8.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.1|2|8 +1.3.6.1.3.94.1.8.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.2|2|8 +1.3.6.1.3.94.1.8.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.3|2|8 +1.3.6.1.3.94.1.8.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.4|2|8 +1.3.6.1.3.94.1.8.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.5|2|8 +1.3.6.1.3.94.1.8.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.6|2|8 +1.3.6.1.3.94.1.8.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.7|2|8 +1.3.6.1.3.94.1.8.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.8|2|8 +1.3.6.1.3.94.1.8.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.9|2|8 +1.3.6.1.3.94.1.8.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.10|2|8 +1.3.6.1.3.94.1.8.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.11|2|8 +1.3.6.1.3.94.1.8.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.12|2|8 +1.3.6.1.3.94.1.8.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.13|2|8 +1.3.6.1.3.94.1.8.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.14|2|8 +1.3.6.1.3.94.1.8.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.15|2|8 +1.3.6.1.3.94.1.8.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.16|2|8 +1.3.6.1.3.94.1.8.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.17|2|8 +1.3.6.1.3.94.1.8.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.18|2|8 +1.3.6.1.3.94.1.8.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.19|2|8 +1.3.6.1.3.94.1.8.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.20|2|8 +1.3.6.1.3.94.1.8.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.21|2|8 +1.3.6.1.3.94.1.8.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.22|2|8 +1.3.6.1.3.94.1.8.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.23|2|8 +1.3.6.1.3.94.1.8.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.24|2|8 +1.3.6.1.3.94.1.8.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.25|2|8 +1.3.6.1.3.94.1.8.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.26|2|8 +1.3.6.1.3.94.1.8.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.27|2|8 +1.3.6.1.3.94.1.8.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.28|2|8 +1.3.6.1.3.94.1.8.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.29|2|7 +1.3.6.1.3.94.1.8.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.30|2|8 +1.3.6.1.3.94.1.8.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.31|2|8 +1.3.6.1.3.94.1.8.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.32|2|8 +1.3.6.1.3.94.1.8.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.33|2|8 +1.3.6.1.3.94.1.8.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.34|2|8 +1.3.6.1.3.94.1.8.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.35|2|8 +1.3.6.1.3.94.1.8.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.36|2|5 +1.3.6.1.3.94.1.8.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.37|2|5 +1.3.6.1.3.94.1.8.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.38|2|5 +1.3.6.1.3.94.1.8.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.39|2|5 +1.3.6.1.3.94.1.8.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.40|2|7 +1.3.6.1.3.94.1.8.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.41|2|7 +1.3.6.1.3.94.1.8.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.42|2|7 +1.3.6.1.3.94.1.8.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.43|2|7 +1.3.6.1.3.94.1.8.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.44|2|7 +1.3.6.1.3.94.1.8.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.45|2|7 +1.3.6.1.3.94.1.8.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.46|2|7 +1.3.6.1.3.94.1.8.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.47|2|7 +1.3.6.1.3.94.1.8.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.48|2|1 +1.3.6.1.3.94.1.8.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.49|2|1 +1.3.6.1.3.94.1.8.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.50|2|1 +1.3.6.1.3.94.1.8.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.51|2|1 +1.3.6.1.3.94.1.8.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.52|2|1 +1.3.6.1.3.94.1.8.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.53|2|1 +1.3.6.1.3.94.1.8.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.54|2|1 +1.3.6.1.3.94.1.8.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.55|2|1 +1.3.6.1.3.94.1.8.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.56|2|1 +1.3.6.1.3.94.1.8.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.57|2|1 +1.3.6.1.3.94.1.8.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.58|2|5 +1.3.6.1.3.94.1.8.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.59|2|5 +1.3.6.1.3.94.1.8.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.60|2|5 +1.3.6.1.3.94.1.8.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.61|2|5 +1.3.6.1.3.94.1.8.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.62|2|5 +1.3.6.1.3.94.1.8.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.63|2|5 +1.3.6.1.3.94.1.8.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.64|2|5 +1.3.6.1.3.94.1.8.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.65|2|5 +1.3.6.1.3.94.1.8.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.1|2|3 +1.3.6.1.3.94.1.8.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.2|2|3 +1.3.6.1.3.94.1.8.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.3|2|3 +1.3.6.1.3.94.1.8.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.4|2|3 +1.3.6.1.3.94.1.8.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.5|2|3 +1.3.6.1.3.94.1.8.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.6|2|3 +1.3.6.1.3.94.1.8.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.7|2|3 +1.3.6.1.3.94.1.8.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.8|2|3 +1.3.6.1.3.94.1.8.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.9|2|3 +1.3.6.1.3.94.1.8.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.10|2|3 +1.3.6.1.3.94.1.8.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.11|2|3 +1.3.6.1.3.94.1.8.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.12|2|3 +1.3.6.1.3.94.1.8.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.13|2|9 +1.3.6.1.3.94.1.8.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.14|2|9 +1.3.6.1.3.94.1.8.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.15|2|9 +1.3.6.1.3.94.1.8.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.16|2|9 +1.3.6.1.3.94.1.8.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.17|2|9 +1.3.6.1.3.94.1.8.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.18|2|9 +1.3.6.1.3.94.1.8.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.19|2|9 +1.3.6.1.3.94.1.8.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.20|2|9 +1.3.6.1.3.94.1.8.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.21|2|9 +1.3.6.1.3.94.1.8.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.22|2|9 +1.3.6.1.3.94.1.8.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.23|2|2 +1.3.6.1.3.94.1.8.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.24|2|2 +1.3.6.1.3.94.1.8.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.25|2|2 +1.3.6.1.3.94.1.8.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.26|2|2 +1.3.6.1.3.94.1.8.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.27|2|2 +1.3.6.1.3.94.1.8.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.28|2|2 +1.3.6.1.3.94.1.8.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.29|2|1 +1.3.6.1.3.94.1.8.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.30|2|3 +1.3.6.1.3.94.1.8.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.31|2|3 +1.3.6.1.3.94.1.8.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.32|2|3 +1.3.6.1.3.94.1.8.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.33|2|3 +1.3.6.1.3.94.1.8.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.34|2|3 +1.3.6.1.3.94.1.8.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.35|2|3 +1.3.6.1.3.94.1.8.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.36|2|3 +1.3.6.1.3.94.1.8.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.37|2|3 +1.3.6.1.3.94.1.8.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.38|2|3 +1.3.6.1.3.94.1.8.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.39|2|3 +1.3.6.1.3.94.1.8.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.40|2|3 +1.3.6.1.3.94.1.8.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.41|2|3 +1.3.6.1.3.94.1.8.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.42|2|3 +1.3.6.1.3.94.1.8.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.43|2|3 +1.3.6.1.3.94.1.8.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.44|2|3 +1.3.6.1.3.94.1.8.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.45|2|3 +1.3.6.1.3.94.1.8.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.46|2|3 +1.3.6.1.3.94.1.8.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.47|2|3 +1.3.6.1.3.94.1.8.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.48|2|3 +1.3.6.1.3.94.1.8.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.49|2|3 +1.3.6.1.3.94.1.8.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.50|2|3 +1.3.6.1.3.94.1.8.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.51|2|3 +1.3.6.1.3.94.1.8.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.52|2|3 +1.3.6.1.3.94.1.8.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.53|2|3 +1.3.6.1.3.94.1.8.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.54|2|3 +1.3.6.1.3.94.1.8.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.55|2|3 +1.3.6.1.3.94.1.8.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.56|2|3 +1.3.6.1.3.94.1.8.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.57|2|3 +1.3.6.1.3.94.1.8.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.58|2|9 +1.3.6.1.3.94.1.8.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.59|2|9 +1.3.6.1.3.94.1.8.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.60|2|9 +1.3.6.1.3.94.1.8.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.61|2|9 +1.3.6.1.3.94.1.8.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.62|2|6 +1.3.6.1.3.94.1.8.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.63|2|6 +1.3.6.1.3.94.1.8.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.64|2|6 +1.3.6.1.3.94.1.8.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.65|2|6 +1.3.6.1.3.94.1.10.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.0|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.10.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.1|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.10.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.2|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.10.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.3|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.10.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.4|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.10.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.5|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.10.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.6|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.10.1.1.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.7|4x|208000c0fff0c0e00000000000000000 +1.3.6.1.3.94.1.10.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.0|2|0 +1.3.6.1.3.94.1.10.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.1|2|1 +1.3.6.1.3.94.1.10.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.2|2|2 +1.3.6.1.3.94.1.10.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.3|2|3 +1.3.6.1.3.94.1.10.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.4|2|4 +1.3.6.1.3.94.1.10.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.5|2|5 +1.3.6.1.3.94.1.10.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.6|2|6 +1.3.6.1.3.94.1.10.1.2.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.7|2|7 +1.3.6.1.3.94.1.10.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.0|2|13 +1.3.6.1.3.94.1.10.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.1|2|13 +1.3.6.1.3.94.1.10.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.2|2|13 +1.3.6.1.3.94.1.10.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.3|2|13 +1.3.6.1.3.94.1.10.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.4|2|13 +1.3.6.1.3.94.1.10.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.5|2|13 +1.3.6.1.3.94.1.10.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.6|2|13 +1.3.6.1.3.94.1.10.1.3.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.7|2|13 +1.3.6.1.3.94.1.10.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.0|4x|0800 +1.3.6.1.3.94.1.10.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.1|4x|0800 +1.3.6.1.3.94.1.10.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.2|4x|0800 +1.3.6.1.3.94.1.10.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.3|4x|0800 +1.3.6.1.3.94.1.10.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.4|4x|0800 +1.3.6.1.3.94.1.10.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.5|4x|0800 +1.3.6.1.3.94.1.10.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.6|4x|0800 +1.3.6.1.3.94.1.10.1.4.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.7|4x|0800 +1.3.6.1.3.94.1.10.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.0|4x|0800 +1.3.6.1.3.94.1.10.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.1|4x|0800 +1.3.6.1.3.94.1.10.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.2|4x|0800 +1.3.6.1.3.94.1.10.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.3|4x|0800 +1.3.6.1.3.94.1.10.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.4|4x|0800 +1.3.6.1.3.94.1.10.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.5|4x|0800 +1.3.6.1.3.94.1.10.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.6|4x|0800 +1.3.6.1.3.94.1.10.1.5.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.7|4x|0800 +1.3.6.1.3.94.1.10.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.0|2|2 +1.3.6.1.3.94.1.10.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.1|2|2 +1.3.6.1.3.94.1.10.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.2|2|2 +1.3.6.1.3.94.1.10.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.3|2|2 +1.3.6.1.3.94.1.10.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.4|2|2 +1.3.6.1.3.94.1.10.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.5|2|2 +1.3.6.1.3.94.1.10.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.6|2|2 +1.3.6.1.3.94.1.10.1.6.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.7|2|2 +1.3.6.1.3.94.1.10.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.0|2|3 +1.3.6.1.3.94.1.10.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.1|2|2 +1.3.6.1.3.94.1.10.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.2|2|3 +1.3.6.1.3.94.1.10.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.3|2|2 +1.3.6.1.3.94.1.10.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.4|2|3 +1.3.6.1.3.94.1.10.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.5|2|2 +1.3.6.1.3.94.1.10.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.6|2|3 +1.3.6.1.3.94.1.10.1.7.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.7|2|2 +1.3.6.1.3.94.1.10.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.0|2|1 +1.3.6.1.3.94.1.10.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.1|2|1 +1.3.6.1.3.94.1.10.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.2|2|1 +1.3.6.1.3.94.1.10.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.3|2|1 +1.3.6.1.3.94.1.10.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.4|2|1 +1.3.6.1.3.94.1.10.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.5|2|1 +1.3.6.1.3.94.1.10.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.6|2|1 +1.3.6.1.3.94.1.10.1.8.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.7|2|1 +1.3.6.1.3.94.1.10.1.9.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.0|2|1 +1.3.6.1.3.94.1.10.1.9.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.1|2|1 +1.3.6.1.3.94.1.10.1.9.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.2|2|1 +1.3.6.1.3.94.1.10.1.9.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.3|2|1 +1.3.6.1.3.94.1.10.1.9.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.4|2|1 +1.3.6.1.3.94.1.10.1.9.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.5|2|1 +1.3.6.1.3.94.1.10.1.9.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.6|2|1 +1.3.6.1.3.94.1.10.1.9.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.7|2|1 +1.3.6.1.3.94.1.10.1.10.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.0|4x|00000000000000000000000000000000 +1.3.6.1.3.94.1.10.1.10.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.1|4x|00000000000000000000000000000000 +1.3.6.1.3.94.1.10.1.10.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.2|4x|00000000000000000000000000000000 +1.3.6.1.3.94.1.10.1.10.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.3|4x|00000000000000000000000000000000 +1.3.6.1.3.94.1.10.1.10.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.4|4x|00000000000000000000000000000000 +1.3.6.1.3.94.1.10.1.10.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.5|4x|00000000000000000000000000000000 +1.3.6.1.3.94.1.10.1.10.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.6|4x|00000000000000000000000000000000 +1.3.6.1.3.94.1.10.1.10.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.7|4x|00000000000000000000000000000000 +1.3.6.1.3.94.1.10.1.11.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.0|4x|000000 +1.3.6.1.3.94.1.10.1.11.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.1|4x|000000 +1.3.6.1.3.94.1.10.1.11.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.2|4x|000000 +1.3.6.1.3.94.1.10.1.11.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.3|4x|000000 +1.3.6.1.3.94.1.10.1.11.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.4|4x|000000 +1.3.6.1.3.94.1.10.1.11.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.5|4x|000000 +1.3.6.1.3.94.1.10.1.11.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.6|4x|000000 +1.3.6.1.3.94.1.10.1.11.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.7|4x|000000 +1.3.6.1.3.94.1.10.1.12.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.0|4| +1.3.6.1.3.94.1.10.1.12.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.1|4| +1.3.6.1.3.94.1.10.1.12.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.2|4| +1.3.6.1.3.94.1.10.1.12.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.3|4| +1.3.6.1.3.94.1.10.1.12.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.4|4| +1.3.6.1.3.94.1.10.1.12.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.5|4| +1.3.6.1.3.94.1.10.1.12.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.6|4| +1.3.6.1.3.94.1.10.1.12.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.7|4| +1.3.6.1.3.94.1.10.1.13.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.0|4| +1.3.6.1.3.94.1.10.1.13.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.1|4| +1.3.6.1.3.94.1.10.1.13.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.2|4| +1.3.6.1.3.94.1.10.1.13.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.3|4| +1.3.6.1.3.94.1.10.1.13.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.4|4| +1.3.6.1.3.94.1.10.1.13.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.5|4| +1.3.6.1.3.94.1.10.1.13.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.6|4| +1.3.6.1.3.94.1.10.1.13.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.7|4| +1.3.6.1.3.94.1.10.1.14.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.0|4| +1.3.6.1.3.94.1.10.1.14.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.1|4| +1.3.6.1.3.94.1.10.1.14.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.2|4| +1.3.6.1.3.94.1.10.1.14.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.3|4| +1.3.6.1.3.94.1.10.1.14.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.4|4| +1.3.6.1.3.94.1.10.1.14.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.5|4| +1.3.6.1.3.94.1.10.1.14.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.6|4| +1.3.6.1.3.94.1.10.1.14.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.7|4| +1.3.6.1.3.94.1.10.1.15.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.0|2|10 +1.3.6.1.3.94.1.10.1.15.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.1|2|255 +1.3.6.1.3.94.1.10.1.15.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.2|2|10 +1.3.6.1.3.94.1.10.1.15.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.3|2|255 +1.3.6.1.3.94.1.10.1.15.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.4|2|10 +1.3.6.1.3.94.1.10.1.15.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.5|2|255 +1.3.6.1.3.94.1.10.1.15.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.6|2|10 +1.3.6.1.3.94.1.10.1.15.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.7|2|255 +1.3.6.1.3.94.1.10.1.16.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.0|2|2 +1.3.6.1.3.94.1.10.1.16.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.1|2|2 +1.3.6.1.3.94.1.10.1.16.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.2|2|2 +1.3.6.1.3.94.1.10.1.16.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.3|2|2 +1.3.6.1.3.94.1.10.1.16.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.4|2|2 +1.3.6.1.3.94.1.10.1.16.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.5|2|2 +1.3.6.1.3.94.1.10.1.16.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.6|2|2 +1.3.6.1.3.94.1.10.1.16.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.7|2|2 +1.3.6.1.3.94.1.10.1.17.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.0|4x|686f7374706f72745f41302d69716e2e313939322d30392e636f6d2e736561676174653a30312e61727261792e303063306666663063306530 +1.3.6.1.3.94.1.10.1.17.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.1|4x|686f7374706f72745f41312d69716e2e313939322d30392e636f6d2e736561676174653a30312e61727261792e303063306666663063306530 +1.3.6.1.3.94.1.10.1.17.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.2|4x|686f7374706f72745f41322d69716e2e313939322d30392e636f6d2e736561676174653a30312e61727261792e303063306666663063306530 +1.3.6.1.3.94.1.10.1.17.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.3|4x|686f7374706f72745f41332d69716e2e313939322d30392e636f6d2e736561676174653a30312e61727261792e303063306666663063306530 +1.3.6.1.3.94.1.10.1.17.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.4|4x|686f7374706f72745f42302d69716e2e313939322d30392e636f6d2e736561676174653a30312e61727261792e303063306666663063306530 +1.3.6.1.3.94.1.10.1.17.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.5|4x|686f7374706f72745f42312d69716e2e313939322d30392e636f6d2e736561676174653a30312e61727261792e303063306666663063306530 +1.3.6.1.3.94.1.10.1.17.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.6|4x|686f7374706f72745f42322d69716e2e313939322d30392e636f6d2e736561676174653a30312e61727261792e303063306666663063306530 +1.3.6.1.3.94.1.10.1.17.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.7|4x|686f7374706f72745f42332d69716e2e313939322d30392e636f6d2e736561676174653a30312e61727261792e303063306666663063306530 +1.3.6.1.3.94.1.10.1.18.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.0|2|0 +1.3.6.1.3.94.1.10.1.18.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.1|2|1 +1.3.6.1.3.94.1.10.1.18.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.2|2|2 +1.3.6.1.3.94.1.10.1.18.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.3|2|3 +1.3.6.1.3.94.1.10.1.18.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.4|2|4 +1.3.6.1.3.94.1.10.1.18.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.5|2|5 +1.3.6.1.3.94.1.10.1.18.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.6|2|6 +1.3.6.1.3.94.1.10.1.18.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.7|2|7 +1.3.6.1.3.94.1.10.1.19.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.0|6|0.0.0.0 +1.3.6.1.3.94.1.10.1.19.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.1|6|0.0.0.0 +1.3.6.1.3.94.1.10.1.19.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.2|6|0.0.0.0 +1.3.6.1.3.94.1.10.1.19.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.3|6|0.0.0.0 +1.3.6.1.3.94.1.10.1.19.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.4|6|0.0.0.0 +1.3.6.1.3.94.1.10.1.19.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.5|6|0.0.0.0 +1.3.6.1.3.94.1.10.1.19.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.6|6|0.0.0.0 +1.3.6.1.3.94.1.10.1.19.32.128.0.192.255.240.192.224.0.0.0.0.0.0.0.0.7|6|0.0.0.0 +1.3.6.1.3.94.2.1.0|2|3 +1.3.6.1.3.94.2.2.0|2|1 +1.3.6.1.3.94.3.0|4|0220 +1.3.6.1.6.3.1.1.6.1.0|2|385423234 +1.3.6.1.6.3.10.2.1.1.0|4x|80001f880300c0ff6322ab +1.3.6.1.6.3.10.2.1.2.0|2|149 +1.3.6.1.6.3.10.2.1.3.0|2|1902356 +1.3.6.1.6.3.10.2.1.4.0|2|1500 +1.3.6.1.6.3.11.2.1.1.0|65|0 +1.3.6.1.6.3.11.2.1.2.0|65|0 +1.3.6.1.6.3.11.2.1.3.0|65|0 +1.3.6.1.6.3.12.1.1.0|2|0 +1.3.6.1.6.3.12.1.2.1.2.105.110.116.101.114.110.97.108.48|6|1.3.6.1.6.1.1 +1.3.6.1.6.3.12.1.2.1.2.105.110.116.101.114.110.97.108.49|6|1.3.6.1.6.1.1 +1.3.6.1.6.3.12.1.2.1.2.105.110.116.101.114.110.97.108.50|6|1.3.6.1.6.1.1 +1.3.6.1.6.3.12.1.2.1.3.105.110.116.101.114.110.97.108.48|4x|0000000000a2 +1.3.6.1.6.3.12.1.2.1.3.105.110.116.101.114.110.97.108.49|4x|0000000000a2 +1.3.6.1.6.3.12.1.2.1.3.105.110.116.101.114.110.97.108.50|4x|0000000000a2 +1.3.6.1.6.3.12.1.2.1.4.105.110.116.101.114.110.97.108.48|2|0 +1.3.6.1.6.3.12.1.2.1.4.105.110.116.101.114.110.97.108.49|2|0 +1.3.6.1.6.3.12.1.2.1.4.105.110.116.101.114.110.97.108.50|2|0 +1.3.6.1.6.3.12.1.2.1.5.105.110.116.101.114.110.97.108.48|2|0 +1.3.6.1.6.3.12.1.2.1.5.105.110.116.101.114.110.97.108.49|2|0 +1.3.6.1.6.3.12.1.2.1.5.105.110.116.101.114.110.97.108.50|2|0 +1.3.6.1.6.3.12.1.2.1.6.105.110.116.101.114.110.97.108.48|4|internal0 +1.3.6.1.6.3.12.1.2.1.6.105.110.116.101.114.110.97.108.49|4|internal1 +1.3.6.1.6.3.12.1.2.1.6.105.110.116.101.114.110.97.108.50|4|internal2 +1.3.6.1.6.3.12.1.2.1.7.105.110.116.101.114.110.97.108.48|4|internal0 +1.3.6.1.6.3.12.1.2.1.7.105.110.116.101.114.110.97.108.49|4|internal1 +1.3.6.1.6.3.12.1.2.1.7.105.110.116.101.114.110.97.108.50|4|internal2 +1.3.6.1.6.3.12.1.2.1.8.105.110.116.101.114.110.97.108.48|2|5 +1.3.6.1.6.3.12.1.2.1.8.105.110.116.101.114.110.97.108.49|2|5 +1.3.6.1.6.3.12.1.2.1.8.105.110.116.101.114.110.97.108.50|2|5 +1.3.6.1.6.3.12.1.2.1.9.105.110.116.101.114.110.97.108.48|2|1 +1.3.6.1.6.3.12.1.2.1.9.105.110.116.101.114.110.97.108.49|2|1 +1.3.6.1.6.3.12.1.2.1.9.105.110.116.101.114.110.97.108.50|2|1 +1.3.6.1.6.3.12.1.3.1.2.105.110.116.101.114.110.97.108.48|2|0 +1.3.6.1.6.3.12.1.3.1.2.105.110.116.101.114.110.97.108.49|2|0 +1.3.6.1.6.3.12.1.3.1.2.105.110.116.101.114.110.97.108.50|2|0 +1.3.6.1.6.3.12.1.3.1.3.105.110.116.101.114.110.97.108.48|2|1 +1.3.6.1.6.3.12.1.3.1.3.105.110.116.101.114.110.97.108.49|2|1 +1.3.6.1.6.3.12.1.3.1.3.105.110.116.101.114.110.97.108.50|2|1 +1.3.6.1.6.3.12.1.3.1.4.105.110.116.101.114.110.97.108.48|4|public +1.3.6.1.6.3.12.1.3.1.4.105.110.116.101.114.110.97.108.49|4|public +1.3.6.1.6.3.12.1.3.1.4.105.110.116.101.114.110.97.108.50|4|public +1.3.6.1.6.3.12.1.3.1.5.105.110.116.101.114.110.97.108.48|2|1 +1.3.6.1.6.3.12.1.3.1.5.105.110.116.101.114.110.97.108.49|2|1 +1.3.6.1.6.3.12.1.3.1.5.105.110.116.101.114.110.97.108.50|2|1 +1.3.6.1.6.3.12.1.3.1.6.105.110.116.101.114.110.97.108.48|2|5 +1.3.6.1.6.3.12.1.3.1.6.105.110.116.101.114.110.97.108.49|2|5 +1.3.6.1.6.3.12.1.3.1.6.105.110.116.101.114.110.97.108.50|2|5 +1.3.6.1.6.3.12.1.3.1.7.105.110.116.101.114.110.97.108.48|2|1 +1.3.6.1.6.3.12.1.3.1.7.105.110.116.101.114.110.97.108.49|2|1 +1.3.6.1.6.3.12.1.3.1.7.105.110.116.101.114.110.97.108.50|2|1 +1.3.6.1.6.3.12.1.4.0|65|0 +1.3.6.1.6.3.12.1.5.0|65|0 +1.3.6.1.6.3.13.1.1.1.2.105.110.116.101.114.110.97.108.48|4|internal0 +1.3.6.1.6.3.13.1.1.1.2.105.110.116.101.114.110.97.108.49|4|internal1 +1.3.6.1.6.3.13.1.1.1.2.105.110.116.101.114.110.97.108.50|4|internal2 +1.3.6.1.6.3.13.1.1.1.3.105.110.116.101.114.110.97.108.48|2|1 +1.3.6.1.6.3.13.1.1.1.3.105.110.116.101.114.110.97.108.49|2|1 +1.3.6.1.6.3.13.1.1.1.3.105.110.116.101.114.110.97.108.50|2|1 +1.3.6.1.6.3.13.1.1.1.4.105.110.116.101.114.110.97.108.48|2|5 +1.3.6.1.6.3.13.1.1.1.4.105.110.116.101.114.110.97.108.49|2|5 +1.3.6.1.6.3.13.1.1.1.4.105.110.116.101.114.110.97.108.50|2|5 +1.3.6.1.6.3.13.1.1.1.5.105.110.116.101.114.110.97.108.48|2|1 +1.3.6.1.6.3.13.1.1.1.5.105.110.116.101.114.110.97.108.49|2|1 +1.3.6.1.6.3.13.1.1.1.5.105.110.116.101.114.110.97.108.50|2|1 +1.3.6.1.6.3.15.1.1.1.0|65|0 +1.3.6.1.6.3.15.1.1.2.0|65|0 +1.3.6.1.6.3.15.1.1.3.0|65|0 +1.3.6.1.6.3.15.1.1.4.0|65|0 +1.3.6.1.6.3.15.1.1.5.0|65|0 +1.3.6.1.6.3.15.1.1.6.0|65|0 +1.3.6.1.6.3.15.1.2.1.0|2|0 +1.3.6.1.6.3.16.1.1.1.1.0|4| +1.3.6.1.6.3.16.1.2.1.3.1.5.99.111.109.109.49|4|grpcomm1 +1.3.6.1.6.3.16.1.2.1.3.1.5.99.111.109.109.50|4|grpcomm2 +1.3.6.1.6.3.16.1.2.1.3.1.5.99.111.109.109.51|4|grpcomm3 +1.3.6.1.6.3.16.1.2.1.3.1.5.99.111.109.109.52|4|grpcomm4 +1.3.6.1.6.3.16.1.2.1.3.2.5.99.111.109.109.49|4|grpcomm1 +1.3.6.1.6.3.16.1.2.1.3.2.5.99.111.109.109.50|4|grpcomm2 +1.3.6.1.6.3.16.1.2.1.3.2.5.99.111.109.109.51|4|grpcomm3 +1.3.6.1.6.3.16.1.2.1.3.2.5.99.111.109.109.52|4|grpcomm4 +1.3.6.1.6.3.16.1.2.1.4.1.5.99.111.109.109.49|2|4 +1.3.6.1.6.3.16.1.2.1.4.1.5.99.111.109.109.50|2|4 +1.3.6.1.6.3.16.1.2.1.4.1.5.99.111.109.109.51|2|4 +1.3.6.1.6.3.16.1.2.1.4.1.5.99.111.109.109.52|2|4 +1.3.6.1.6.3.16.1.2.1.4.2.5.99.111.109.109.49|2|4 +1.3.6.1.6.3.16.1.2.1.4.2.5.99.111.109.109.50|2|4 +1.3.6.1.6.3.16.1.2.1.4.2.5.99.111.109.109.51|2|4 +1.3.6.1.6.3.16.1.2.1.4.2.5.99.111.109.109.52|2|4 +1.3.6.1.6.3.16.1.2.1.5.1.5.99.111.109.109.49|2|1 +1.3.6.1.6.3.16.1.2.1.5.1.5.99.111.109.109.50|2|1 +1.3.6.1.6.3.16.1.2.1.5.1.5.99.111.109.109.51|2|1 +1.3.6.1.6.3.16.1.2.1.5.1.5.99.111.109.109.52|2|1 +1.3.6.1.6.3.16.1.2.1.5.2.5.99.111.109.109.49|2|1 +1.3.6.1.6.3.16.1.2.1.5.2.5.99.111.109.109.50|2|1 +1.3.6.1.6.3.16.1.2.1.5.2.5.99.111.109.109.51|2|1 +1.3.6.1.6.3.16.1.2.1.5.2.5.99.111.109.109.52|2|1 +1.3.6.1.6.3.16.1.4.1.4.8.103.114.112.99.111.109.109.49.0.0.1|2|2 +1.3.6.1.6.3.16.1.4.1.4.8.103.114.112.99.111.109.109.50.0.0.1|2|2 +1.3.6.1.6.3.16.1.4.1.4.8.103.114.112.99.111.109.109.51.0.0.1|2|2 +1.3.6.1.6.3.16.1.4.1.4.8.103.114.112.99.111.109.109.52.0.0.1|2|2 +1.3.6.1.6.3.16.1.4.1.5.8.103.114.112.99.111.109.109.49.0.0.1|4|SEAGATE +1.3.6.1.6.3.16.1.4.1.5.8.103.114.112.99.111.109.109.50.0.0.1|4|writes +1.3.6.1.6.3.16.1.4.1.5.8.103.114.112.99.111.109.109.51.0.0.1|4|SEAGATE +1.3.6.1.6.3.16.1.4.1.5.8.103.114.112.99.111.109.109.52.0.0.1|4|writes +1.3.6.1.6.3.16.1.4.1.6.8.103.114.112.99.111.109.109.49.0.0.1|4|none +1.3.6.1.6.3.16.1.4.1.6.8.103.114.112.99.111.109.109.50.0.0.1|4|writes +1.3.6.1.6.3.16.1.4.1.6.8.103.114.112.99.111.109.109.51.0.0.1|4|none +1.3.6.1.6.3.16.1.4.1.6.8.103.114.112.99.111.109.109.52.0.0.1|4|writes +1.3.6.1.6.3.16.1.4.1.7.8.103.114.112.99.111.109.109.49.0.0.1|4|none +1.3.6.1.6.3.16.1.4.1.7.8.103.114.112.99.111.109.109.50.0.0.1|4|writes +1.3.6.1.6.3.16.1.4.1.7.8.103.114.112.99.111.109.109.51.0.0.1|4|none +1.3.6.1.6.3.16.1.4.1.7.8.103.114.112.99.111.109.109.52.0.0.1|4|writes +1.3.6.1.6.3.16.1.4.1.8.8.103.114.112.99.111.109.109.49.0.0.1|2|4 +1.3.6.1.6.3.16.1.4.1.8.8.103.114.112.99.111.109.109.50.0.0.1|2|4 +1.3.6.1.6.3.16.1.4.1.8.8.103.114.112.99.111.109.109.51.0.0.1|2|4 +1.3.6.1.6.3.16.1.4.1.8.8.103.114.112.99.111.109.109.52.0.0.1|2|4 +1.3.6.1.6.3.16.1.4.1.9.8.103.114.112.99.111.109.109.49.0.0.1|2|1 +1.3.6.1.6.3.16.1.4.1.9.8.103.114.112.99.111.109.109.50.0.0.1|2|1 +1.3.6.1.6.3.16.1.4.1.9.8.103.114.112.99.111.109.109.51.0.0.1|2|1 +1.3.6.1.6.3.16.1.4.1.9.8.103.114.112.99.111.109.109.52.0.0.1|2|1 +1.3.6.1.6.3.16.1.5.1.0|2|0 +1.3.6.1.6.3.16.1.5.2.1.3.5.95.97.108.108.95.1.0|4| +1.3.6.1.6.3.16.1.5.2.1.3.5.95.97.108.108.95.1.1|4| +1.3.6.1.6.3.16.1.5.2.1.3.5.95.97.108.108.95.1.2|4| +1.3.6.1.6.3.16.1.5.2.1.3.6.95.110.111.110.101.95.1.0|4| +1.3.6.1.6.3.16.1.5.2.1.3.6.95.110.111.110.101.95.1.1|4| +1.3.6.1.6.3.16.1.5.2.1.3.6.95.110.111.110.101.95.1.2|4| +1.3.6.1.6.3.16.1.5.2.1.3.6.119.114.105.116.101.115.7.1.3.6.1.2.1.1|4| +1.3.6.1.6.3.16.1.5.2.1.3.7.83.69.65.71.65.84.69.1.1|4| +1.3.6.1.6.3.16.1.5.2.1.3.7.83.69.65.71.65.84.69.7.1.3.6.1.4.1.232|4| +1.3.6.1.6.3.16.1.5.2.1.4.5.95.97.108.108.95.1.0|2|1 +1.3.6.1.6.3.16.1.5.2.1.4.5.95.97.108.108.95.1.1|2|1 +1.3.6.1.6.3.16.1.5.2.1.4.5.95.97.108.108.95.1.2|2|1 +1.3.6.1.6.3.16.1.5.2.1.4.6.95.110.111.110.101.95.1.0|2|2 +1.3.6.1.6.3.16.1.5.2.1.4.6.95.110.111.110.101.95.1.1|2|2 +1.3.6.1.6.3.16.1.5.2.1.4.6.95.110.111.110.101.95.1.2|2|2 +1.3.6.1.6.3.16.1.5.2.1.4.6.119.114.105.116.101.115.7.1.3.6.1.2.1.1|2|1 +1.3.6.1.6.3.16.1.5.2.1.4.7.83.69.65.71.65.84.69.1.1|2|1 +1.3.6.1.6.3.16.1.5.2.1.4.7.83.69.65.71.65.84.69.7.1.3.6.1.4.1.232|2|2 +1.3.6.1.6.3.16.1.5.2.1.5.5.95.97.108.108.95.1.0|2|4 +1.3.6.1.6.3.16.1.5.2.1.5.5.95.97.108.108.95.1.1|2|4 +1.3.6.1.6.3.16.1.5.2.1.5.5.95.97.108.108.95.1.2|2|4 +1.3.6.1.6.3.16.1.5.2.1.5.6.95.110.111.110.101.95.1.0|2|4 +1.3.6.1.6.3.16.1.5.2.1.5.6.95.110.111.110.101.95.1.1|2|4 +1.3.6.1.6.3.16.1.5.2.1.5.6.95.110.111.110.101.95.1.2|2|4 +1.3.6.1.6.3.16.1.5.2.1.5.6.119.114.105.116.101.115.7.1.3.6.1.2.1.1|2|4 +1.3.6.1.6.3.16.1.5.2.1.5.7.83.69.65.71.65.84.69.1.1|2|4 +1.3.6.1.6.3.16.1.5.2.1.5.7.83.69.65.71.65.84.69.7.1.3.6.1.4.1.232|2|4 +1.3.6.1.6.3.16.1.5.2.1.6.5.95.97.108.108.95.1.0|2|1 +1.3.6.1.6.3.16.1.5.2.1.6.5.95.97.108.108.95.1.1|2|1 +1.3.6.1.6.3.16.1.5.2.1.6.5.95.97.108.108.95.1.2|2|1 +1.3.6.1.6.3.16.1.5.2.1.6.6.95.110.111.110.101.95.1.0|2|1 +1.3.6.1.6.3.16.1.5.2.1.6.6.95.110.111.110.101.95.1.1|2|1 +1.3.6.1.6.3.16.1.5.2.1.6.6.95.110.111.110.101.95.1.2|2|1 +1.3.6.1.6.3.16.1.5.2.1.6.6.119.114.105.116.101.115.7.1.3.6.1.2.1.1|2|1 +1.3.6.1.6.3.16.1.5.2.1.6.7.83.69.65.71.65.84.69.1.1|2|1 +1.3.6.1.6.3.16.1.5.2.1.6.7.83.69.65.71.65.84.69.7.1.3.6.1.4.1.232|2|1