From 70437ae42b06608b3ac49a1f63381c4d4629fc9b Mon Sep 17 00:00:00 2001 From: PipoCanaja <38363551+PipoCanaja@users.noreply.github.com> Date: Mon, 18 Mar 2019 03:42:47 +0100 Subject: [PATCH] Dantel Webmon Improvement (#9977) * Generic polling for webmon * Tests update * clean * tests and count sensor * typo + tests * update user friendly OS * style --- includes/definitions/webmon.yaml | 2 +- includes/discovery/functions.inc.php | 2 +- .../discovery/sensors/count/webmon.inc.php | 48 + .../discovery/sensors/humidity/webmon.inc.php | 38 +- .../sensors/temperature/webmon.inc.php | 57 +- tests/data/{webmon.json => webmon_edge.json} | 18 +- tests/data/webmon_matrix.json | 574 ++++++++ .../{webmon.snmprec => webmon_edge.snmprec} | 0 tests/snmpsim/webmon_matrix.snmprec | 1205 +++++++++++++++++ 9 files changed, 1899 insertions(+), 45 deletions(-) create mode 100644 includes/discovery/sensors/count/webmon.inc.php rename tests/data/{webmon.json => webmon_edge.json} (97%) create mode 100644 tests/data/webmon_matrix.json rename tests/snmpsim/{webmon.snmprec => webmon_edge.snmprec} (100%) create mode 100644 tests/snmpsim/webmon_matrix.snmprec diff --git a/includes/definitions/webmon.yaml b/includes/definitions/webmon.yaml index 6d5d806da8..2947d25c53 100644 --- a/includes/definitions/webmon.yaml +++ b/includes/definitions/webmon.yaml @@ -1,5 +1,5 @@ os: webmon -text: 'Webmon Edge' +text: 'Dantel Webmon' type: environment icon: dantel mib_dir: diff --git a/includes/discovery/functions.inc.php b/includes/discovery/functions.inc.php index bb40fea6dc..e2576617f2 100644 --- a/includes/discovery/functions.inc.php +++ b/includes/discovery/functions.inc.php @@ -229,7 +229,7 @@ function discover_sensor(&$valid, $class, $device, $oid, $index, $type, $descr, $divisor = 1; } - d_echo("Discover sensor: $oid, $index, $type, $descr, $poller_type, $divisor, $multiplier, $entPhysicalIndex, $current\n"); + d_echo("Discover sensor: $oid, $index, $type, $descr, $poller_type, $divisor, $multiplier, $entPhysicalIndex, $current, (limits: LL: $low_limit, LW: $low_warn_limit, W: $warn_limit, H: $high_limit)\n"); if (isset($warn_limit, $low_warn_limit) && $low_warn_limit > $warn_limit) { // Fix high/low thresholds (i.e. on negative numbers) diff --git a/includes/discovery/sensors/count/webmon.inc.php b/includes/discovery/sensors/count/webmon.inc.php new file mode 100644 index 0000000000..e3614834f1 --- /dev/null +++ b/includes/discovery/sensors/count/webmon.inc.php @@ -0,0 +1,48 @@ + + * @author PipoCanaja + */ + +$prefixes = [ + 'pSlot1' => '.1.3.6.1.4.1.994.3.4.7.18.1.66.', + 'pSlot2' => '.1.3.6.1.4.1.994.3.4.7.19.1.66.', + 'pSlot3' => '.1.3.6.1.4.1.994.3.4.7.20.1.66.', + 'pSlot4' => '.1.3.6.1.4.1.994.3.4.7.21.1.66.', + 'pSlot5' => '.1.3.6.1.4.1.994.3.4.7.22.1.66.', + 'pSlot6' => '.1.3.6.1.4.1.994.3.4.7.23.1.66.', + 'pOnboardSensor' => '.1.3.6.1.4.1.994.3.4.7.6.1.66.', +]; + +foreach ($prefixes as $prefix => $numOidPrefix) { + $walk = snmpwalk_cache_oid($device, $prefix . 'Table', [], 'WEBMON-EDGE-MATRIX-MIB'); + + foreach ($walk as $index => $oid) { + if ($oid[$prefix . 'Configured'] != '0' && $oid[$prefix . 'SensorType'] != 'humidity' && $oid[$prefix . 'SensorType'] != 'temperature' && $oid[$prefix . 'LiveRaw']) { + $num_oid = $numOidPrefix . $index; + $descr = $oid[$prefix . 'Description']; + $group = $prefix; + $value = $oid[$prefix . 'LiveRaw']; + $lowLimit = $oid[$prefix . 'Thresh4']; + $lowWarnLimit = $oid[$prefix . 'Thresh3']; + $highLimit = $oid[$prefix . 'Thresh1']; + $highWarnLimit = $oid[$prefix . 'Thresh2']; + if ($oid[$prefix . 'Units']) { + $descr .= '(' . $oid[$prefix . 'Units'] . ')'; + } + discover_sensor($valid['sensor'], 'count', $device, $num_oid, $prefix . 'LiveRaw.' . $index, 'webmon', $descr, '1', '1', $lowLimit, $lowWarnLimit, $highWarnLimit, $highLimit, $value, 'snmp', null, null, null, $group); + } + } +} diff --git a/includes/discovery/sensors/humidity/webmon.inc.php b/includes/discovery/sensors/humidity/webmon.inc.php index e42dd6ebdd..dabf1d9679 100644 --- a/includes/discovery/sensors/humidity/webmon.inc.php +++ b/includes/discovery/sensors/humidity/webmon.inc.php @@ -11,21 +11,35 @@ * @package LibreNMS * @link http://librenms.org * @copyright 2019 Mike Williams + * @copyright 2019 PipoCanaja * @author Mike Williams + * @author PipoCanaja */ -$env = snmpwalk_group($device, 'pSlot1Table', 'WEBMON-EDGE-MATRIX-MIB'); +$prefixes = [ + 'pSlot1' => '.1.3.6.1.4.1.994.3.4.7.18.1.66.', + 'pSlot2' => '.1.3.6.1.4.1.994.3.4.7.19.1.66.', + 'pSlot3' => '.1.3.6.1.4.1.994.3.4.7.20.1.66.', + 'pSlot4' => '.1.3.6.1.4.1.994.3.4.7.21.1.66.', + 'pSlot5' => '.1.3.6.1.4.1.994.3.4.7.22.1.66.', + 'pSlot6' => '.1.3.6.1.4.1.994.3.4.7.23.1.66.', + 'pOnboardSensor' => '.1.3.6.1.4.1.994.3.4.7.6.1.66.', +]; -if (!empty($env)) { - $oid = '.1.3.6.1.4.1.994.3.4.7.18.1.66.1.0'; - $index = '1'; - - $descr = $env[1]['pSlot1Description'][0]; - $value = $env[1]['pSlot1LiveRaw'][0]; - $lowlimit = $env[1]['pSlot1Thresh4'][0]; - $low_warn_limit = $env[1]['pSlot1Thresh3'][0]; - $warnlimit = $env[1]['pSlot1Thresh2'][0]; - $high_limit = $env[1]['pSlot1Thresh1'][0]; +foreach ($prefixes as $prefix => $numOidPrefix) { + $walk = snmpwalk_cache_oid($device, $prefix . 'Table', [], 'WEBMON-EDGE-MATRIX-MIB'); - discover_sensor($valid['sensor'], 'humidity', $device, $oid, $index, 'webmon', $descr, '1', '1', $lowlimit, $low_warn_limit, $warnlimit, $high_limit, $value, 'snmp', null, null, null, null); + foreach ($walk as $index => $oid) { + if ($oid[$prefix . 'Configured'] != '0' && ($oid[$prefix . 'SensorType'] == '2' || $oid[$prefix . 'SensorType'] == 'humidity') && $oid[$prefix . 'LiveRaw']) { + $num_oid = $numOidPrefix . $index; + $descr = $oid[$prefix . 'Description']; + $group = $prefix; + $value = $oid[$prefix . 'LiveRaw']; + $lowLimit = $oid[$prefix . 'Thresh4']; + $lowWarnLimit = $oid[$prefix . 'Thresh3']; + $highLimit = $oid[$prefix . 'Thresh1']; + $highWarnLimit = $oid[$prefix . 'Thresh2']; + discover_sensor($valid['sensor'], 'humidity', $device, $num_oid, $prefix . 'LiveRaw.' . $index, 'webmon', $descr, '1', '1', $lowLimit, $lowWarnLimit, $highWarnLimit, $highLimit, $value, 'snmp', null, null, null, $group); + } + } } diff --git a/includes/discovery/sensors/temperature/webmon.inc.php b/includes/discovery/sensors/temperature/webmon.inc.php index 23b1162692..e92b6bc03a 100644 --- a/includes/discovery/sensors/temperature/webmon.inc.php +++ b/includes/discovery/sensors/temperature/webmon.inc.php @@ -1,5 +1,4 @@ + * @author PipoCanaja */ -$env = snmpwalk_group($device, 'pSlot1Table', 'WEBMON-EDGE-MATRIX-MIB'); +$prefixes = [ + 'pSlot1' => '.1.3.6.1.4.1.994.3.4.7.18.1.66.', + 'pSlot2' => '.1.3.6.1.4.1.994.3.4.7.19.1.66.', + 'pSlot3' => '.1.3.6.1.4.1.994.3.4.7.20.1.66.', + 'pSlot4' => '.1.3.6.1.4.1.994.3.4.7.21.1.66.', + 'pSlot5' => '.1.3.6.1.4.1.994.3.4.7.22.1.66.', + 'pSlot6' => '.1.3.6.1.4.1.994.3.4.7.23.1.66.', + 'pOnboardSensor' => '.1.3.6.1.4.1.994.3.4.7.6.1.66.', +]; -if (!empty($env)) { - $oid = '.1.3.6.1.4.1.994.3.4.7.18.1.66.2.0'; - $index = '2'; - - $descr = $env[2]['pSlot1Description'][0]; - $value = $env[2]['pSlot1LiveRaw'][0]; - $lowlimit = $env[2]['pSlot1Thresh4'][0]; - $low_warn_limit = $env[2]['pSlot1Thresh3'][0]; - $warnlimit = $env[2]['pSlot1Thresh2'][0]; - $high_limit = $env[2]['pSlot1Thresh1'][0]; - $func = null; - if ($env[2]['pSlot1Units'][0] == 'Fahrenheit') { - $func = 'fahrenheit_to_celsius'; - $value = fahrenheit_to_celsius($value); - $lowlimit = fahrenheit_to_celsius($lowlimit); - $low_warn_limit = fahrenheit_to_celsius($low_warn_limit); - $warnlimit = fahrenheit_to_celsius($warnlimit); - $high_limit = fahrenheit_to_celsius($high_limit); +foreach ($prefixes as $prefix => $numOidPrefix) { + $walk = snmpwalk_cache_oid($device, $prefix . 'Table', [], 'WEBMON-EDGE-MATRIX-MIB'); + + foreach ($walk as $index => $oid) { + $user_function = null; + if ($oid[$prefix . 'Configured'] != '0' && ($oid[$prefix . 'SensorType'] == '1' || $oid[$prefix . 'SensorType'] == 'temperature') && $oid[$prefix . 'LiveRaw']) { + $num_oid = $numOidPrefix . $index; + $descr = $oid[$prefix . 'Description']; + $group = $prefix; + $value = $oid[$prefix . 'LiveRaw']; + $lowLimit = $oid[$prefix . 'Thresh4']; + $lowWarnLimit = $oid[$prefix . 'Thresh3']; + $highLimit = $oid[$prefix . 'Thresh1']; + $highWarnLimit = $oid[$prefix . 'Thresh2']; + if ($oid[$prefix . 'Units'] == "Fahrenheit") { + $user_function = 'fahrenheit_to_celsius'; + $value = fahrenheit_to_celsius($value); + $lowLimit = fahrenheit_to_celsius($lowLimit); + $lowWarnLimit = fahrenheit_to_celsius($lowWarnLimit); + $highLimit = fahrenheit_to_celsius($highLimit); + $highWarnLimit = fahrenheit_to_celsius($highWarnLimit); + } + discover_sensor($valid['sensor'], 'temperature', $device, $num_oid, $prefix . 'LiveRaw.' . $index, 'webmon', $descr, '1', '1', $lowLimit, $lowWarnLimit, $highWarnLimit, $highLimit, $value, 'snmp', null, null, $user_function, $group); + } } - - discover_sensor($valid['sensor'], 'temperature', $device, $oid, $index, 'webmon', $descr, '1', '1', $lowlimit, $low_warn_limit, $warnlimit, $high_limit, $value, 'snmp', null, null, $func, null); } diff --git a/tests/data/webmon.json b/tests/data/webmon_edge.json similarity index 97% rename from tests/data/webmon.json rename to tests/data/webmon_edge.json index d2acd92595..edec56640f 100644 --- a/tests/data/webmon.json +++ b/tests/data/webmon_edge.json @@ -475,13 +475,13 @@ "sensor_class": "humidity", "poller_type": "snmp", "sensor_oid": ".1.3.6.1.4.1.994.3.4.7.18.1.66.1.0", - "sensor_index": "1", + "sensor_index": "pSlot1LiveRaw.1.0", "sensor_type": "webmon", "sensor_descr": "Humidity", - "group": null, + "group": "pSlot1", "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 8.47, + "sensor_current": 8.4700000000000006, "sensor_limit": 75, "sensor_limit_warn": 65, "sensor_limit_low": 5, @@ -499,16 +499,16 @@ "sensor_class": "temperature", "poller_type": "snmp", "sensor_oid": ".1.3.6.1.4.1.994.3.4.7.18.1.66.2.0", - "sensor_index": "2", + "sensor_index": "pSlot1LiveRaw.2.0", "sensor_type": "webmon", "sensor_descr": "Temperature", - "group": null, + "group": "pSlot1", "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 20.06, - "sensor_limit": 32.22, - "sensor_limit_warn": 26.67, - "sensor_limit_low": 1.67, + "sensor_current": 20.059999999999999, + "sensor_limit": 32.219999999999999, + "sensor_limit_warn": 26.670000000000002, + "sensor_limit_low": 1.6699999999999999, "sensor_limit_low_warn": 10, "sensor_alert": 1, "sensor_custom": "No", diff --git a/tests/data/webmon_matrix.json b/tests/data/webmon_matrix.json new file mode 100644 index 0000000000..a09c7a9fda --- /dev/null +++ b/tests/data/webmon_matrix.json @@ -0,0 +1,574 @@ +{ + "os": { + "discovery": { + "devices": [ + { + "sysName": "", + "sysObjectID": ".1.3.6.1.4.1.994.3.4", + "sysDescr": "WebMon Matrix", + "sysContact": null, + "version": null, + "hardware": null, + "features": null, + "os": "webmon", + "type": "environment", + "serial": null, + "icon": "dantel.png", + "location": null + } + ] + }, + "poller": { + "devices": [ + { + "sysName": "", + "sysObjectID": ".1.3.6.1.4.1.994.3.4", + "sysDescr": "WebMon Matrix", + "sysContact": "", + "version": null, + "hardware": null, + "features": null, + "os": "webmon", + "type": "environment", + "serial": null, + "icon": "dantel.png", + "location": "" + } + ] + } + }, + "ports": { + "discovery": { + "ports": [ + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Nucleus NET Software Loopback Interface", + "ifName": "Nucleus NET Software Loopback Interface", + "portName": null, + "ifIndex": 1, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "softwareLoopback", + "ifAlias": "Nucleus NET Software Loopback Interface", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "MFC5272 Ethernet: Software revision 1.0", + "ifName": "MFC5272 Ethernet: Software revision 1.0", + "portName": null, + "ifIndex": 2, + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "MFC5272 Ethernet: Software revision 1.0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + } + ] + }, + "poller": { + "ports": [ + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Nucleus NET Software Loopback Interface", + "ifName": "Nucleus NET Software Loopback Interface", + "portName": null, + "ifIndex": 1, + "ifSpeed": 10000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "softwareLoopback", + "ifAlias": "Nucleus NET Software Loopback Interface", + "ifPhysAddress": "303a303a303a", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 61964211, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 61964350, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 290403706, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 290402596, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": "mfc5272 ethernet", + "port_descr_descr": "Software revision 1.0", + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "MFC5272 Ethernet: Software revision 1.0", + "ifName": "MFC5272 Ethernet: Software revision 1.0", + "portName": null, + "ifIndex": 2, + "ifSpeed": 100000000, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "MFC5272 Ethernet: Software revision 1.0", + "ifPhysAddress": "303a32303a65", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 3644200, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 6464470, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 338959252, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 311959356, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 48448, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 4, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 167, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + } + ] + } + }, + "sensors": { + "discovery": { + "sensors": [ + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.994.3.4.7.18.1.66.1", + "sensor_index": "pSlot1LiveRaw.1", + "sensor_type": "webmon", + "sensor_descr": "Propane Sensor", + "group": "pSlot1", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 36, + "sensor_limit": 80, + "sensor_limit_warn": 40, + "sensor_limit_low": 10, + "sensor_limit_low_warn": 20, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "humidity", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.994.3.4.7.6.1.66.1", + "sensor_index": "pOnboardSensorLiveRaw.1", + "sensor_type": "webmon", + "sensor_descr": "Humidity", + "group": "pOnboardSensor", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 15.4, + "sensor_limit": 80, + "sensor_limit_warn": 50, + "sensor_limit_low": 20, + "sensor_limit_low_warn": 25, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.994.3.4.7.6.1.66.2", + "sensor_index": "pOnboardSensorLiveRaw.2", + "sensor_type": "webmon", + "sensor_descr": "Temperature", + "group": "pOnboardSensor", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 21.609999999999999, + "sensor_limit": 26.670000000000002, + "sensor_limit_warn": 23.890000000000001, + "sensor_limit_low": -6.6699999999999999, + "sensor_limit_low_warn": 4.4400000000000004, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": "fahrenheit_to_celsius", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.994.3.4.7.18.1.66.2", + "sensor_index": "pSlot1LiveRaw.2", + "sensor_type": "webmon", + "sensor_descr": "Temp", + "group": "pSlot1", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 67.5, + "sensor_limit": 80, + "sensor_limit_warn": 70, + "sensor_limit_low": 35, + "sensor_limit_low_warn": 40, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + } + ], + "state_indexes": [] + }, + "poller": "matches discovery" + } +} diff --git a/tests/snmpsim/webmon.snmprec b/tests/snmpsim/webmon_edge.snmprec similarity index 100% rename from tests/snmpsim/webmon.snmprec rename to tests/snmpsim/webmon_edge.snmprec diff --git a/tests/snmpsim/webmon_matrix.snmprec b/tests/snmpsim/webmon_matrix.snmprec new file mode 100644 index 0000000000..3a030d7b95 --- /dev/null +++ b/tests/snmpsim/webmon_matrix.snmprec @@ -0,0 +1,1205 @@ +1.3.6.1.2.1.1.1.0|4|WebMon Matrix +1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.994.3.4 +1.3.6.1.2.1.1.3.0|67|2935862 +1.3.6.1.2.1.1.4.0|4| +1.3.6.1.2.1.1.5.0|4| +1.3.6.1.2.1.1.6.0|4| +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.2.1|4|Nucleus NET Software Loopback Interface +1.3.6.1.2.1.2.2.1.2.2|4|MFC5272 Ethernet: Software revision 1.0 +1.3.6.1.2.1.2.2.1.3.1|2|24 +1.3.6.1.2.1.2.2.1.3.2|2|6 +1.3.6.1.2.1.2.2.1.4.1|2|1500 +1.3.6.1.2.1.2.2.1.4.2|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|100000000 +1.3.6.1.2.1.2.2.1.6.1|4|0:0:0:0:0:0 +1.3.6.1.2.1.2.2.1.6.2|4|0:20:e9:3:48:6e +1.3.6.1.2.1.2.2.1.7.1|2|1 +1.3.6.1.2.1.2.2.1.7.2|2|1 +1.3.6.1.2.1.2.2.1.8.1|2|1 +1.3.6.1.2.1.2.2.1.8.2|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.10.1|65|290403706 +1.3.6.1.2.1.2.2.1.10.2|65|338959252 +1.3.6.1.2.1.2.2.1.11.1|65|61964211 +1.3.6.1.2.1.2.2.1.11.2|65|3644200 +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|48448 +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.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.15.1|65|0 +1.3.6.1.2.1.2.2.1.15.2|65|167 +1.3.6.1.2.1.2.2.1.16.1|65|290402596 +1.3.6.1.2.1.2.2.1.16.2|65|311959356 +1.3.6.1.2.1.2.2.1.17.1|65|61964350 +1.3.6.1.2.1.2.2.1.17.2|65|6464470 +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|4 +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.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.21.1|66|61964546 +1.3.6.1.2.1.2.2.1.21.2|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.4.20.1.2.10.7.9.20|2|2 +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.3.10.7.9.20|64|255.255.255.0 +1.3.6.1.2.1.4.20.1.3.127.0.0.1|64|255.0.0.0 +1.3.6.1.2.1.4.22.1.2.1.127.0.0.1|4|0:0:0:0:0:0 +1.3.6.1.2.1.4.22.1.2.2.10.7.9.20|4|0:20:e9:3:48:6e +1.3.6.1.2.1.5.1.0|65|62104066 +1.3.6.1.2.1.5.2.0|65|0 +1.3.6.1.2.1.5.3.0|65|0 +1.3.6.1.2.1.5.4.0|65|0 +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|31121790 +1.3.6.1.2.1.5.9.0|65|30982273 +1.3.6.1.2.1.5.10.0|65|0 +1.3.6.1.2.1.5.11.0|65|0 +1.3.6.1.2.1.5.12.0|65|0 +1.3.6.1.2.1.5.13.0|65|0 +1.3.6.1.2.1.5.14.0|65|62104063 +1.3.6.1.2.1.5.15.0|65|0 +1.3.6.1.2.1.5.16.0|65|0 +1.3.6.1.2.1.5.17.0|65|0 +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|30982273 +1.3.6.1.2.1.5.22.0|65|31121790 +1.3.6.1.2.1.5.23.0|65|0 +1.3.6.1.2.1.5.24.0|65|0 +1.3.6.1.2.1.5.25.0|65|0 +1.3.6.1.2.1.5.26.0|65|0 +1.3.6.1.2.1.11.1.0|65|3049092 +1.3.6.1.2.1.11.2.0|65|3049873 +1.3.6.1.2.1.11.3.0|65|0 +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 +1.3.6.1.2.1.11.9.0|65|0 +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|3044559 +1.3.6.1.2.1.11.14.0|65|0 +1.3.6.1.2.1.11.15.0|65|2510072 +1.3.6.1.2.1.11.16.0|65|533409 +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 +1.3.6.1.2.1.11.20.0|65|0 +1.3.6.1.2.1.11.21.0|65|0 +1.3.6.1.2.1.11.22.0|65|0 +1.3.6.1.2.1.11.24.0|65|0 +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|3049094 +1.3.6.1.2.1.11.29.0|65|781 +1.3.6.1.2.1.11.30.0|2|1 +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.4.1.994.3.4.6.1.2.0|4|Temperature +1.3.6.1.4.1.994.3.4.7.6.1.3.1|4|Humidity +1.3.6.1.4.1.994.3.4.7.6.1.3.2|4|Temperature +1.3.6.1.4.1.994.3.4.7.6.1.4.1|4|High High +1.3.6.1.4.1.994.3.4.7.6.1.4.2|4|High High +1.3.6.1.4.1.994.3.4.7.6.1.5.1|4|High +1.3.6.1.4.1.994.3.4.7.6.1.5.2|4|High +1.3.6.1.4.1.994.3.4.7.6.1.6.1|4|Medium +1.3.6.1.4.1.994.3.4.7.6.1.6.2|4|Medium +1.3.6.1.4.1.994.3.4.7.6.1.7.1|4|Low +1.3.6.1.4.1.994.3.4.7.6.1.7.2|4|Low +1.3.6.1.4.1.994.3.4.7.6.1.8.1|4|Low Low +1.3.6.1.4.1.994.3.4.7.6.1.8.2|4|Low Low +1.3.6.1.4.1.994.3.4.7.6.1.9.1|4|Offline +1.3.6.1.4.1.994.3.4.7.6.1.9.2|4|Offline +1.3.6.1.4.1.994.3.4.7.6.1.10.1|2|0 +1.3.6.1.4.1.994.3.4.7.6.1.10.2|2|1 +1.3.6.1.4.1.994.3.4.7.6.1.11.1|2|0 +1.3.6.1.4.1.994.3.4.7.6.1.11.2|2|0 +1.3.6.1.4.1.994.3.4.7.6.1.12.1|2|0 +1.3.6.1.4.1.994.3.4.7.6.1.12.2|2|1 +1.3.6.1.4.1.994.3.4.7.6.1.17.1|2|1 +1.3.6.1.4.1.994.3.4.7.6.1.17.2|2|1 +1.3.6.1.4.1.994.3.4.7.6.1.18.1|2|3 +1.3.6.1.4.1.994.3.4.7.6.1.18.2|2|3 +1.3.6.1.4.1.994.3.4.7.6.1.19.1|2|0 +1.3.6.1.4.1.994.3.4.7.6.1.19.2|2|0 +1.3.6.1.4.1.994.3.4.7.6.1.20.1|2|3 +1.3.6.1.4.1.994.3.4.7.6.1.20.2|2|3 +1.3.6.1.4.1.994.3.4.7.6.1.21.1|2|1 +1.3.6.1.4.1.994.3.4.7.6.1.21.2|2|1 +1.3.6.1.4.1.994.3.4.7.6.1.22.1|2|1 +1.3.6.1.4.1.994.3.4.7.6.1.22.2|2|1 +1.3.6.1.4.1.994.3.4.7.6.1.28.1|4|100 +1.3.6.1.4.1.994.3.4.7.6.1.28.2|4|253 +1.3.6.1.4.1.994.3.4.7.6.1.29.1|4|80.0 +1.3.6.1.4.1.994.3.4.7.6.1.29.2|4|80.0 +1.3.6.1.4.1.994.3.4.7.6.1.30.1|4|50.0 +1.3.6.1.4.1.994.3.4.7.6.1.30.2|4|75.0 +1.3.6.1.4.1.994.3.4.7.6.1.31.1|4|25.0 +1.3.6.1.4.1.994.3.4.7.6.1.31.2|4|40.0 +1.3.6.1.4.1.994.3.4.7.6.1.32.1|4|20.0 +1.3.6.1.4.1.994.3.4.7.6.1.32.2|4|20.0 +1.3.6.1.4.1.994.3.4.7.6.1.33.1|4|0 +1.3.6.1.4.1.994.3.4.7.6.1.33.2|4|-40.0 +1.3.6.1.4.1.994.3.4.7.6.1.46.1|4|% +1.3.6.1.4.1.994.3.4.7.6.1.46.2|4|Fahrenheit +1.3.6.1.4.1.994.3.4.7.6.1.64.1|4|Low Low +1.3.6.1.4.1.994.3.4.7.6.1.64.2|4|Medium +1.3.6.1.4.1.994.3.4.7.6.1.65.1|4|Critical +1.3.6.1.4.1.994.3.4.7.6.1.65.2|4|Normal +1.3.6.1.4.1.994.3.4.7.6.1.66.1|4|15.4 +1.3.6.1.4.1.994.3.4.7.6.1.66.2|4|70.9 +1.3.6.1.4.1.994.3.4.7.6.1.67.1|4|15-Mar-2019 06:07:07 +1.3.6.1.4.1.994.3.4.7.6.1.67.2|4|06-Mar-2019 17:48:29 +1.3.6.1.4.1.994.3.4.7.6.1.116.1|4| +1.3.6.1.4.1.994.3.4.7.6.1.116.2|4| +1.3.6.1.4.1.994.3.4.7.6.1.117.1|4| +1.3.6.1.4.1.994.3.4.7.6.1.117.2|4| +1.3.6.1.4.1.994.3.4.7.6.1.118.1|4| +1.3.6.1.4.1.994.3.4.7.6.1.118.2|4| +1.3.6.1.4.1.994.3.4.7.6.1.119.1|2|0 +1.3.6.1.4.1.994.3.4.7.6.1.119.2|2|0 +1.3.6.1.4.1.994.3.4.7.6.1.120.1|2|0 +1.3.6.1.4.1.994.3.4.7.6.1.120.2|2|0 +1.3.6.1.4.1.994.3.4.7.6.1.121.1|2|0 +1.3.6.1.4.1.994.3.4.7.6.1.121.2|2|0 +1.3.6.1.4.1.994.3.4.7.6.1.122.1|2|0 +1.3.6.1.4.1.994.3.4.7.6.1.122.2|2|0 +1.3.6.1.4.1.994.3.4.7.6.1.131.1|2|2 +1.3.6.1.4.1.994.3.4.7.6.1.131.2|2|1 +1.3.6.1.4.1.994.3.4.7.18.1.3.1|4|Propane Sensor +1.3.6.1.4.1.994.3.4.7.18.1.3.2|4|Temp +1.3.6.1.4.1.994.3.4.7.18.1.3.3|4| +1.3.6.1.4.1.994.3.4.7.18.1.3.4|4| +1.3.6.1.4.1.994.3.4.7.18.1.3.5|4| +1.3.6.1.4.1.994.3.4.7.18.1.4.1|4|High High +1.3.6.1.4.1.994.3.4.7.18.1.4.2|4|High High +1.3.6.1.4.1.994.3.4.7.18.1.4.3|4|High High +1.3.6.1.4.1.994.3.4.7.18.1.4.4|4|High High +1.3.6.1.4.1.994.3.4.7.18.1.4.5|4|High High +1.3.6.1.4.1.994.3.4.7.18.1.5.1|4|Full Propane +1.3.6.1.4.1.994.3.4.7.18.1.5.2|4|High +1.3.6.1.4.1.994.3.4.7.18.1.5.3|4|High +1.3.6.1.4.1.994.3.4.7.18.1.5.4|4|High +1.3.6.1.4.1.994.3.4.7.18.1.5.5|4|High +1.3.6.1.4.1.994.3.4.7.18.1.6.1|4|40% Propane Remaining +1.3.6.1.4.1.994.3.4.7.18.1.6.2|4|Medium +1.3.6.1.4.1.994.3.4.7.18.1.6.3|4|Medium +1.3.6.1.4.1.994.3.4.7.18.1.6.4|4|Medium +1.3.6.1.4.1.994.3.4.7.18.1.6.5|4|Medium +1.3.6.1.4.1.994.3.4.7.18.1.7.1|4|20% Propane Remaining +1.3.6.1.4.1.994.3.4.7.18.1.7.2|4|Low +1.3.6.1.4.1.994.3.4.7.18.1.7.3|4|Low +1.3.6.1.4.1.994.3.4.7.18.1.7.4|4|Low +1.3.6.1.4.1.994.3.4.7.18.1.7.5|4|Low +1.3.6.1.4.1.994.3.4.7.18.1.8.1|4|10% Propane Remaining +1.3.6.1.4.1.994.3.4.7.18.1.8.2|4|Low Low +1.3.6.1.4.1.994.3.4.7.18.1.8.3|4|Low Low +1.3.6.1.4.1.994.3.4.7.18.1.8.4|4|Low Low +1.3.6.1.4.1.994.3.4.7.18.1.8.5|4|Low Low +1.3.6.1.4.1.994.3.4.7.18.1.9.1|4|Offline +1.3.6.1.4.1.994.3.4.7.18.1.9.2|4|Offline +1.3.6.1.4.1.994.3.4.7.18.1.9.3|4|Offline +1.3.6.1.4.1.994.3.4.7.18.1.9.4|4|Offline +1.3.6.1.4.1.994.3.4.7.18.1.9.5|4|Offline +1.3.6.1.4.1.994.3.4.7.18.1.10.1|2|1 +1.3.6.1.4.1.994.3.4.7.18.1.10.2|2|1 +1.3.6.1.4.1.994.3.4.7.18.1.10.3|2|0 +1.3.6.1.4.1.994.3.4.7.18.1.10.4|2|0 +1.3.6.1.4.1.994.3.4.7.18.1.10.5|2|0 +1.3.6.1.4.1.994.3.4.7.18.1.11.1|2|0 +1.3.6.1.4.1.994.3.4.7.18.1.11.2|2|0 +1.3.6.1.4.1.994.3.4.7.18.1.11.3|2|0 +1.3.6.1.4.1.994.3.4.7.18.1.11.4|2|0 +1.3.6.1.4.1.994.3.4.7.18.1.11.5|2|0 +1.3.6.1.4.1.994.3.4.7.18.1.12.1|2|0 +1.3.6.1.4.1.994.3.4.7.18.1.12.2|2|0 +1.3.6.1.4.1.994.3.4.7.18.1.12.3|2|0 +1.3.6.1.4.1.994.3.4.7.18.1.12.4|2|0 +1.3.6.1.4.1.994.3.4.7.18.1.12.5|2|0 +1.3.6.1.4.1.994.3.4.7.18.1.17.1|2|0 +1.3.6.1.4.1.994.3.4.7.18.1.17.2|2|1 +1.3.6.1.4.1.994.3.4.7.18.1.17.3|2|0 +1.3.6.1.4.1.994.3.4.7.18.1.17.4|2|0 +1.3.6.1.4.1.994.3.4.7.18.1.17.5|2|0 +1.3.6.1.4.1.994.3.4.7.18.1.18.1|2|0 +1.3.6.1.4.1.994.3.4.7.18.1.18.2|2|3 +1.3.6.1.4.1.994.3.4.7.18.1.18.3|2|1 +1.3.6.1.4.1.994.3.4.7.18.1.18.4|2|1 +1.3.6.1.4.1.994.3.4.7.18.1.18.5|2|1 +1.3.6.1.4.1.994.3.4.7.18.1.19.1|2|3 +1.3.6.1.4.1.994.3.4.7.18.1.19.2|2|0 +1.3.6.1.4.1.994.3.4.7.18.1.19.3|2|0 +1.3.6.1.4.1.994.3.4.7.18.1.19.4|2|0 +1.3.6.1.4.1.994.3.4.7.18.1.19.5|2|0 +1.3.6.1.4.1.994.3.4.7.18.1.20.1|2|2 +1.3.6.1.4.1.994.3.4.7.18.1.20.2|2|3 +1.3.6.1.4.1.994.3.4.7.18.1.20.3|2|0 +1.3.6.1.4.1.994.3.4.7.18.1.20.4|2|0 +1.3.6.1.4.1.994.3.4.7.18.1.20.5|2|0 +1.3.6.1.4.1.994.3.4.7.18.1.21.1|2|1 +1.3.6.1.4.1.994.3.4.7.18.1.21.2|2|1 +1.3.6.1.4.1.994.3.4.7.18.1.21.3|2|0 +1.3.6.1.4.1.994.3.4.7.18.1.21.4|2|0 +1.3.6.1.4.1.994.3.4.7.18.1.21.5|2|0 +1.3.6.1.4.1.994.3.4.7.18.1.22.1|2|1 +1.3.6.1.4.1.994.3.4.7.18.1.22.2|2|1 +1.3.6.1.4.1.994.3.4.7.18.1.22.3|2|1 +1.3.6.1.4.1.994.3.4.7.18.1.22.4|2|1 +1.3.6.1.4.1.994.3.4.7.18.1.22.5|2|1 +1.3.6.1.4.1.994.3.4.7.18.1.28.1|4|1990 +1.3.6.1.4.1.994.3.4.7.18.1.28.2|4|302 +1.3.6.1.4.1.994.3.4.7.18.1.28.3|4|100 +1.3.6.1.4.1.994.3.4.7.18.1.28.4|4|100 +1.3.6.1.4.1.994.3.4.7.18.1.28.5|4|100 +1.3.6.1.4.1.994.3.4.7.18.1.29.1|4|80.0 +1.3.6.1.4.1.994.3.4.7.18.1.29.2|4|80.0 +1.3.6.1.4.1.994.3.4.7.18.1.29.3|4|80.0 +1.3.6.1.4.1.994.3.4.7.18.1.29.4|4|80.0 +1.3.6.1.4.1.994.3.4.7.18.1.29.5|4|80.0 +1.3.6.1.4.1.994.3.4.7.18.1.30.1|4|40.0 +1.3.6.1.4.1.994.3.4.7.18.1.30.2|4|70.0 +1.3.6.1.4.1.994.3.4.7.18.1.30.3|4|60.0 +1.3.6.1.4.1.994.3.4.7.18.1.30.4|4|60.0 +1.3.6.1.4.1.994.3.4.7.18.1.30.5|4|60.0 +1.3.6.1.4.1.994.3.4.7.18.1.31.1|4|20.0 +1.3.6.1.4.1.994.3.4.7.18.1.31.2|4|40.0 +1.3.6.1.4.1.994.3.4.7.18.1.31.3|4|40.0 +1.3.6.1.4.1.994.3.4.7.18.1.31.4|4|40.0 +1.3.6.1.4.1.994.3.4.7.18.1.31.5|4|40.0 +1.3.6.1.4.1.994.3.4.7.18.1.32.1|4|10.0 +1.3.6.1.4.1.994.3.4.7.18.1.32.2|4|35.0 +1.3.6.1.4.1.994.3.4.7.18.1.32.3|4|20.0 +1.3.6.1.4.1.994.3.4.7.18.1.32.4|4|20.0 +1.3.6.1.4.1.994.3.4.7.18.1.32.5|4|20.0 +1.3.6.1.4.1.994.3.4.7.18.1.33.1|4|-1990 +1.3.6.1.4.1.994.3.4.7.18.1.33.2|4|-67.0 +1.3.6.1.4.1.994.3.4.7.18.1.33.3|4|-100 +1.3.6.1.4.1.994.3.4.7.18.1.33.4|4|-100 +1.3.6.1.4.1.994.3.4.7.18.1.33.5|4|-100 +1.3.6.1.4.1.994.3.4.7.18.1.46.1|4| +1.3.6.1.4.1.994.3.4.7.18.1.46.2|4| +1.3.6.1.4.1.994.3.4.7.18.1.46.3|4| +1.3.6.1.4.1.994.3.4.7.18.1.46.4|4| +1.3.6.1.4.1.994.3.4.7.18.1.46.5|4| +1.3.6.1.4.1.994.3.4.7.18.1.64.1|4|40% Propane Remaining +1.3.6.1.4.1.994.3.4.7.18.1.64.2|4|Medium +1.3.6.1.4.1.994.3.4.7.18.1.64.3|4|High High +1.3.6.1.4.1.994.3.4.7.18.1.64.4|4|High High +1.3.6.1.4.1.994.3.4.7.18.1.64.5|4|High High +1.3.6.1.4.1.994.3.4.7.18.1.65.1|4|Minor +1.3.6.1.4.1.994.3.4.7.18.1.65.2|4|Normal +1.3.6.1.4.1.994.3.4.7.18.1.65.3|4|Normal +1.3.6.1.4.1.994.3.4.7.18.1.65.4|4|Normal +1.3.6.1.4.1.994.3.4.7.18.1.65.5|4|Normal +1.3.6.1.4.1.994.3.4.7.18.1.66.1|4|36.0 +1.3.6.1.4.1.994.3.4.7.18.1.66.2|4|67.5 +1.3.6.1.4.1.994.3.4.7.18.1.66.3|4|0 +1.3.6.1.4.1.994.3.4.7.18.1.66.4|4|0 +1.3.6.1.4.1.994.3.4.7.18.1.66.5|4|0 +1.3.6.1.4.1.994.3.4.7.18.1.67.1|4|09-Dec-2018 01:45:39 +1.3.6.1.4.1.994.3.4.7.18.1.67.2|4|15-Mar-2019 19:59:10 +1.3.6.1.4.1.994.3.4.7.18.1.67.3|4| +1.3.6.1.4.1.994.3.4.7.18.1.67.4|4| +1.3.6.1.4.1.994.3.4.7.18.1.67.5|4| +1.3.6.1.4.1.994.3.4.7.18.1.72.1|2|1 +1.3.6.1.4.1.994.3.4.7.18.1.72.2|2|1 +1.3.6.1.4.1.994.3.4.7.18.1.72.3|2|1 +1.3.6.1.4.1.994.3.4.7.18.1.72.4|2|1 +1.3.6.1.4.1.994.3.4.7.18.1.72.5|2|1 +1.3.6.1.4.1.994.3.4.7.18.1.75.1|2|7 +1.3.6.1.4.1.994.3.4.7.18.1.75.2|2|7 +1.3.6.1.4.1.994.3.4.7.18.1.75.3|2|7 +1.3.6.1.4.1.994.3.4.7.18.1.75.4|2|7 +1.3.6.1.4.1.994.3.4.7.18.1.75.5|2|7 +1.3.6.1.4.1.994.3.4.7.18.1.116.1|4| +1.3.6.1.4.1.994.3.4.7.18.1.116.2|4| +1.3.6.1.4.1.994.3.4.7.18.1.116.3|4| +1.3.6.1.4.1.994.3.4.7.18.1.116.4|4| +1.3.6.1.4.1.994.3.4.7.18.1.116.5|4| +1.3.6.1.4.1.994.3.4.7.18.1.117.1|4| +1.3.6.1.4.1.994.3.4.7.18.1.117.2|4| +1.3.6.1.4.1.994.3.4.7.18.1.117.3|4| +1.3.6.1.4.1.994.3.4.7.18.1.117.4|4| +1.3.6.1.4.1.994.3.4.7.18.1.117.5|4| +1.3.6.1.4.1.994.3.4.7.18.1.118.1|4| +1.3.6.1.4.1.994.3.4.7.18.1.118.2|4| +1.3.6.1.4.1.994.3.4.7.18.1.118.3|4| +1.3.6.1.4.1.994.3.4.7.18.1.118.4|4| +1.3.6.1.4.1.994.3.4.7.18.1.118.5|4| +1.3.6.1.4.1.994.3.4.7.18.1.119.1|2|0 +1.3.6.1.4.1.994.3.4.7.18.1.119.2|2|0 +1.3.6.1.4.1.994.3.4.7.18.1.119.3|2|0 +1.3.6.1.4.1.994.3.4.7.18.1.119.4|2|0 +1.3.6.1.4.1.994.3.4.7.18.1.119.5|2|0 +1.3.6.1.4.1.994.3.4.7.18.1.120.1|2|0 +1.3.6.1.4.1.994.3.4.7.18.1.120.2|2|0 +1.3.6.1.4.1.994.3.4.7.18.1.120.3|2|0 +1.3.6.1.4.1.994.3.4.7.18.1.120.4|2|0 +1.3.6.1.4.1.994.3.4.7.18.1.120.5|2|0 +1.3.6.1.4.1.994.3.4.7.18.1.121.1|2|0 +1.3.6.1.4.1.994.3.4.7.18.1.121.2|2|0 +1.3.6.1.4.1.994.3.4.7.18.1.121.3|2|0 +1.3.6.1.4.1.994.3.4.7.18.1.121.4|2|0 +1.3.6.1.4.1.994.3.4.7.18.1.121.5|2|0 +1.3.6.1.4.1.994.3.4.7.18.1.122.1|2|0 +1.3.6.1.4.1.994.3.4.7.18.1.122.2|2|0 +1.3.6.1.4.1.994.3.4.7.18.1.122.3|2|0 +1.3.6.1.4.1.994.3.4.7.18.1.122.4|2|0 +1.3.6.1.4.1.994.3.4.7.18.1.122.5|2|0 +1.3.6.1.4.1.994.3.4.7.18.1.131.1|2|0 +1.3.6.1.4.1.994.3.4.7.18.1.131.2|2|1 +1.3.6.1.4.1.994.3.4.7.18.1.131.3|2|0 +1.3.6.1.4.1.994.3.4.7.18.1.131.4|2|0 +1.3.6.1.4.1.994.3.4.7.18.1.131.5|2|0 +1.3.6.1.4.1.994.3.4.7.19.1.3.1|4|CO_Door +1.3.6.1.4.1.994.3.4.7.19.1.3.2|4|Rectifier_Major +1.3.6.1.4.1.994.3.4.7.19.1.3.3|4|Rectifier_Minor +1.3.6.1.4.1.994.3.4.7.19.1.3.4|4|Commercial_Power +1.3.6.1.4.1.994.3.4.7.19.1.3.5|4|7080_AFC +1.3.6.1.4.1.994.3.4.7.19.1.3.6|4|Rectifier_Critical +1.3.6.1.4.1.994.3.4.7.19.1.3.7|4|Generator +1.3.6.1.4.1.994.3.4.7.19.1.3.8|4|Generator_Door +1.3.6.1.4.1.994.3.4.7.19.1.4.1|4|Door_Open +1.3.6.1.4.1.994.3.4.7.19.1.4.2|4|Rectifier_Normal +1.3.6.1.4.1.994.3.4.7.19.1.4.3|4|Rectifier_Normal +1.3.6.1.4.1.994.3.4.7.19.1.4.4|4|Commercial_Power_Normal +1.3.6.1.4.1.994.3.4.7.19.1.4.5|4|7080_AFC_Recovery +1.3.6.1.4.1.994.3.4.7.19.1.4.6|4|Rectifier_Critical +1.3.6.1.4.1.994.3.4.7.19.1.4.7|4|Generator_Off +1.3.6.1.4.1.994.3.4.7.19.1.4.8|4|Door_Open +1.3.6.1.4.1.994.3.4.7.19.1.5.1|4|Door_Closed +1.3.6.1.4.1.994.3.4.7.19.1.5.2|4|Rectifier_Major +1.3.6.1.4.1.994.3.4.7.19.1.5.3|4|Rectifier_Minor +1.3.6.1.4.1.994.3.4.7.19.1.5.4|4|Commercial_Power_Fail +1.3.6.1.4.1.994.3.4.7.19.1.5.5|4|7080_AFC_Major +1.3.6.1.4.1.994.3.4.7.19.1.5.6|4|Rectifier_Normal +1.3.6.1.4.1.994.3.4.7.19.1.5.7|4|Generator_Running +1.3.6.1.4.1.994.3.4.7.19.1.5.8|4|Door_Closed +1.3.6.1.4.1.994.3.4.7.19.1.10.1|2|1 +1.3.6.1.4.1.994.3.4.7.19.1.10.2|2|1 +1.3.6.1.4.1.994.3.4.7.19.1.10.3|2|1 +1.3.6.1.4.1.994.3.4.7.19.1.10.4|2|1 +1.3.6.1.4.1.994.3.4.7.19.1.10.5|2|0 +1.3.6.1.4.1.994.3.4.7.19.1.10.6|2|0 +1.3.6.1.4.1.994.3.4.7.19.1.10.7|2|1 +1.3.6.1.4.1.994.3.4.7.19.1.10.8|2|1 +1.3.6.1.4.1.994.3.4.7.19.1.11.1|2|0 +1.3.6.1.4.1.994.3.4.7.19.1.11.2|2|0 +1.3.6.1.4.1.994.3.4.7.19.1.11.3|2|0 +1.3.6.1.4.1.994.3.4.7.19.1.11.4|2|0 +1.3.6.1.4.1.994.3.4.7.19.1.11.5|2|1 +1.3.6.1.4.1.994.3.4.7.19.1.11.6|2|0 +1.3.6.1.4.1.994.3.4.7.19.1.11.7|2|1 +1.3.6.1.4.1.994.3.4.7.19.1.11.8|2|0 +1.3.6.1.4.1.994.3.4.7.19.1.12.1|2|1 +1.3.6.1.4.1.994.3.4.7.19.1.12.2|2|1 +1.3.6.1.4.1.994.3.4.7.19.1.12.3|2|1 +1.3.6.1.4.1.994.3.4.7.19.1.12.4|2|1 +1.3.6.1.4.1.994.3.4.7.19.1.12.5|2|1 +1.3.6.1.4.1.994.3.4.7.19.1.12.6|2|0 +1.3.6.1.4.1.994.3.4.7.19.1.12.7|2|1 +1.3.6.1.4.1.994.3.4.7.19.1.12.8|2|1 +1.3.6.1.4.1.994.3.4.7.19.1.17.1|2|3 +1.3.6.1.4.1.994.3.4.7.19.1.17.2|2|0 +1.3.6.1.4.1.994.3.4.7.19.1.17.3|2|0 +1.3.6.1.4.1.994.3.4.7.19.1.17.4|2|0 +1.3.6.1.4.1.994.3.4.7.19.1.17.5|2|0 +1.3.6.1.4.1.994.3.4.7.19.1.17.6|2|1 +1.3.6.1.4.1.994.3.4.7.19.1.17.7|2|0 +1.3.6.1.4.1.994.3.4.7.19.1.17.8|2|3 +1.3.6.1.4.1.994.3.4.7.19.1.18.1|2|0 +1.3.6.1.4.1.994.3.4.7.19.1.18.2|2|2 +1.3.6.1.4.1.994.3.4.7.19.1.18.3|2|3 +1.3.6.1.4.1.994.3.4.7.19.1.18.4|2|2 +1.3.6.1.4.1.994.3.4.7.19.1.18.5|2|2 +1.3.6.1.4.1.994.3.4.7.19.1.18.6|2|0 +1.3.6.1.4.1.994.3.4.7.19.1.18.7|2|1 +1.3.6.1.4.1.994.3.4.7.19.1.18.8|2|0 +1.3.6.1.4.1.994.3.4.7.19.1.44.1|2|0 +1.3.6.1.4.1.994.3.4.7.19.1.44.2|2|0 +1.3.6.1.4.1.994.3.4.7.19.1.44.3|2|0 +1.3.6.1.4.1.994.3.4.7.19.1.44.4|2|0 +1.3.6.1.4.1.994.3.4.7.19.1.44.5|2|0 +1.3.6.1.4.1.994.3.4.7.19.1.44.6|2|0 +1.3.6.1.4.1.994.3.4.7.19.1.44.7|2|0 +1.3.6.1.4.1.994.3.4.7.19.1.44.8|2|0 +1.3.6.1.4.1.994.3.4.7.19.1.64.1|4|Door_Closed +1.3.6.1.4.1.994.3.4.7.19.1.64.2|4|Rectifier_Normal +1.3.6.1.4.1.994.3.4.7.19.1.64.3|4|Rectifier_Normal +1.3.6.1.4.1.994.3.4.7.19.1.64.4|4|Commercial_Power_Normal +1.3.6.1.4.1.994.3.4.7.19.1.64.5|4|7080_AFC_Recovery +1.3.6.1.4.1.994.3.4.7.19.1.64.6|4|Rectifier_Critical +1.3.6.1.4.1.994.3.4.7.19.1.64.7|4|Generator_Off +1.3.6.1.4.1.994.3.4.7.19.1.64.8|4|Door_Closed +1.3.6.1.4.1.994.3.4.7.19.1.65.1|4|Normal +1.3.6.1.4.1.994.3.4.7.19.1.65.2|4|Normal +1.3.6.1.4.1.994.3.4.7.19.1.65.3|4|Normal +1.3.6.1.4.1.994.3.4.7.19.1.65.4|4|Normal +1.3.6.1.4.1.994.3.4.7.19.1.65.5|4|Normal +1.3.6.1.4.1.994.3.4.7.19.1.65.6|4|Critical +1.3.6.1.4.1.994.3.4.7.19.1.65.7|4|Normal +1.3.6.1.4.1.994.3.4.7.19.1.65.8|4|Normal +1.3.6.1.4.1.994.3.4.7.19.1.67.1|4|13-Mar-2019 15:05:43 +1.3.6.1.4.1.994.3.4.7.19.1.67.2|4| +1.3.6.1.4.1.994.3.4.7.19.1.67.3|4|28-Jan-2019 12:47:41 +1.3.6.1.4.1.994.3.4.7.19.1.67.4|4|06-Feb-2019 17:33:07 +1.3.6.1.4.1.994.3.4.7.19.1.67.5|4| +1.3.6.1.4.1.994.3.4.7.19.1.67.6|4| +1.3.6.1.4.1.994.3.4.7.19.1.67.7|4|13-Mar-2019 18:38:16 +1.3.6.1.4.1.994.3.4.7.19.1.67.8|4|21-Feb-2019 17:29:46 +1.3.6.1.4.1.994.3.4.7.19.1.75.1|2|2 +1.3.6.1.4.1.994.3.4.7.19.1.75.2|2|2 +1.3.6.1.4.1.994.3.4.7.19.1.75.3|2|2 +1.3.6.1.4.1.994.3.4.7.19.1.75.4|2|2 +1.3.6.1.4.1.994.3.4.7.19.1.75.5|2|2 +1.3.6.1.4.1.994.3.4.7.19.1.75.6|2|2 +1.3.6.1.4.1.994.3.4.7.19.1.75.7|2|2 +1.3.6.1.4.1.994.3.4.7.19.1.75.8|2|2 +1.3.6.1.4.1.994.3.4.7.19.1.116.1|4| +1.3.6.1.4.1.994.3.4.7.19.1.116.2|4| +1.3.6.1.4.1.994.3.4.7.19.1.116.3|4| +1.3.6.1.4.1.994.3.4.7.19.1.116.4|4| +1.3.6.1.4.1.994.3.4.7.19.1.116.5|4| +1.3.6.1.4.1.994.3.4.7.19.1.116.6|4| +1.3.6.1.4.1.994.3.4.7.19.1.116.7|4| +1.3.6.1.4.1.994.3.4.7.19.1.116.8|4| +1.3.6.1.4.1.994.3.4.7.19.1.117.1|4| +1.3.6.1.4.1.994.3.4.7.19.1.117.2|4| +1.3.6.1.4.1.994.3.4.7.19.1.117.3|4| +1.3.6.1.4.1.994.3.4.7.19.1.117.4|4| +1.3.6.1.4.1.994.3.4.7.19.1.117.5|4| +1.3.6.1.4.1.994.3.4.7.19.1.117.6|4| +1.3.6.1.4.1.994.3.4.7.19.1.117.7|4| +1.3.6.1.4.1.994.3.4.7.19.1.117.8|4| +1.3.6.1.4.1.994.3.4.7.19.1.118.1|4| +1.3.6.1.4.1.994.3.4.7.19.1.118.2|4| +1.3.6.1.4.1.994.3.4.7.19.1.118.3|4| +1.3.6.1.4.1.994.3.4.7.19.1.118.4|4| +1.3.6.1.4.1.994.3.4.7.19.1.118.5|4| +1.3.6.1.4.1.994.3.4.7.19.1.118.6|4| +1.3.6.1.4.1.994.3.4.7.19.1.118.7|4| +1.3.6.1.4.1.994.3.4.7.19.1.118.8|4| +1.3.6.1.4.1.994.3.4.7.19.1.119.1|2|0 +1.3.6.1.4.1.994.3.4.7.19.1.119.2|2|0 +1.3.6.1.4.1.994.3.4.7.19.1.119.3|2|0 +1.3.6.1.4.1.994.3.4.7.19.1.119.4|2|0 +1.3.6.1.4.1.994.3.4.7.19.1.119.5|2|0 +1.3.6.1.4.1.994.3.4.7.19.1.119.6|2|0 +1.3.6.1.4.1.994.3.4.7.19.1.119.7|2|0 +1.3.6.1.4.1.994.3.4.7.19.1.119.8|2|0 +1.3.6.1.4.1.994.3.4.7.19.1.120.1|2|0 +1.3.6.1.4.1.994.3.4.7.19.1.120.2|2|0 +1.3.6.1.4.1.994.3.4.7.19.1.120.3|2|0 +1.3.6.1.4.1.994.3.4.7.19.1.120.4|2|0 +1.3.6.1.4.1.994.3.4.7.19.1.120.5|2|0 +1.3.6.1.4.1.994.3.4.7.19.1.120.6|2|0 +1.3.6.1.4.1.994.3.4.7.19.1.120.7|2|0 +1.3.6.1.4.1.994.3.4.7.19.1.120.8|2|0 +1.3.6.1.4.1.994.3.4.7.19.1.121.1|2|0 +1.3.6.1.4.1.994.3.4.7.19.1.121.2|2|0 +1.3.6.1.4.1.994.3.4.7.19.1.121.3|2|0 +1.3.6.1.4.1.994.3.4.7.19.1.121.4|2|0 +1.3.6.1.4.1.994.3.4.7.19.1.121.5|2|0 +1.3.6.1.4.1.994.3.4.7.19.1.121.6|2|0 +1.3.6.1.4.1.994.3.4.7.19.1.121.7|2|0 +1.3.6.1.4.1.994.3.4.7.19.1.121.8|2|0 +1.3.6.1.4.1.994.3.4.7.19.1.122.1|2|0 +1.3.6.1.4.1.994.3.4.7.19.1.122.2|2|0 +1.3.6.1.4.1.994.3.4.7.19.1.122.3|2|0 +1.3.6.1.4.1.994.3.4.7.19.1.122.4|2|0 +1.3.6.1.4.1.994.3.4.7.19.1.122.5|2|0 +1.3.6.1.4.1.994.3.4.7.19.1.122.6|2|0 +1.3.6.1.4.1.994.3.4.7.19.1.122.7|2|0 +1.3.6.1.4.1.994.3.4.7.19.1.122.8|2|0 +1.3.6.1.4.1.994.3.4.7.20.10.0|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.3.1|4| +1.3.6.1.4.1.994.3.4.7.21.1.3.2|4| +1.3.6.1.4.1.994.3.4.7.21.1.3.3|4| +1.3.6.1.4.1.994.3.4.7.21.1.3.4|4| +1.3.6.1.4.1.994.3.4.7.21.1.3.5|4| +1.3.6.1.4.1.994.3.4.7.21.1.3.6|4| +1.3.6.1.4.1.994.3.4.7.21.1.3.7|4| +1.3.6.1.4.1.994.3.4.7.21.1.3.8|4| +1.3.6.1.4.1.994.3.4.7.21.1.4.1|4|High High +1.3.6.1.4.1.994.3.4.7.21.1.4.2|4|High High +1.3.6.1.4.1.994.3.4.7.21.1.4.3|4|High High +1.3.6.1.4.1.994.3.4.7.21.1.4.4|4|High High +1.3.6.1.4.1.994.3.4.7.21.1.4.5|4|High High +1.3.6.1.4.1.994.3.4.7.21.1.4.6|4|High High +1.3.6.1.4.1.994.3.4.7.21.1.4.7|4|High High +1.3.6.1.4.1.994.3.4.7.21.1.4.8|4|High High +1.3.6.1.4.1.994.3.4.7.21.1.5.1|4|High +1.3.6.1.4.1.994.3.4.7.21.1.5.2|4|High +1.3.6.1.4.1.994.3.4.7.21.1.5.3|4|High +1.3.6.1.4.1.994.3.4.7.21.1.5.4|4|High +1.3.6.1.4.1.994.3.4.7.21.1.5.5|4|High +1.3.6.1.4.1.994.3.4.7.21.1.5.6|4|High +1.3.6.1.4.1.994.3.4.7.21.1.5.7|4|High +1.3.6.1.4.1.994.3.4.7.21.1.5.8|4|High +1.3.6.1.4.1.994.3.4.7.21.1.6.1|4|Medium +1.3.6.1.4.1.994.3.4.7.21.1.6.2|4|Medium +1.3.6.1.4.1.994.3.4.7.21.1.6.3|4|Medium +1.3.6.1.4.1.994.3.4.7.21.1.6.4|4|Medium +1.3.6.1.4.1.994.3.4.7.21.1.6.5|4|Medium +1.3.6.1.4.1.994.3.4.7.21.1.6.6|4|Medium +1.3.6.1.4.1.994.3.4.7.21.1.6.7|4|Medium +1.3.6.1.4.1.994.3.4.7.21.1.6.8|4|Medium +1.3.6.1.4.1.994.3.4.7.21.1.7.1|4|Low +1.3.6.1.4.1.994.3.4.7.21.1.7.2|4|Low +1.3.6.1.4.1.994.3.4.7.21.1.7.3|4|Low +1.3.6.1.4.1.994.3.4.7.21.1.7.4|4|Low +1.3.6.1.4.1.994.3.4.7.21.1.7.5|4|Low +1.3.6.1.4.1.994.3.4.7.21.1.7.6|4|Low +1.3.6.1.4.1.994.3.4.7.21.1.7.7|4|Low +1.3.6.1.4.1.994.3.4.7.21.1.7.8|4|Low +1.3.6.1.4.1.994.3.4.7.21.1.8.1|4|Low Low +1.3.6.1.4.1.994.3.4.7.21.1.8.2|4|Low Low +1.3.6.1.4.1.994.3.4.7.21.1.8.3|4|Low Low +1.3.6.1.4.1.994.3.4.7.21.1.8.4|4|Low Low +1.3.6.1.4.1.994.3.4.7.21.1.8.5|4|Low Low +1.3.6.1.4.1.994.3.4.7.21.1.8.6|4|Low Low +1.3.6.1.4.1.994.3.4.7.21.1.8.7|4|Low Low +1.3.6.1.4.1.994.3.4.7.21.1.8.8|4|Low Low +1.3.6.1.4.1.994.3.4.7.21.1.9.1|4|Offline +1.3.6.1.4.1.994.3.4.7.21.1.9.2|4|Offline +1.3.6.1.4.1.994.3.4.7.21.1.9.3|4|Offline +1.3.6.1.4.1.994.3.4.7.21.1.9.4|4|Offline +1.3.6.1.4.1.994.3.4.7.21.1.9.5|4|Offline +1.3.6.1.4.1.994.3.4.7.21.1.9.6|4|Offline +1.3.6.1.4.1.994.3.4.7.21.1.9.7|4|Offline +1.3.6.1.4.1.994.3.4.7.21.1.9.8|4|Offline +1.3.6.1.4.1.994.3.4.7.21.1.10.1|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.10.2|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.10.3|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.10.4|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.10.5|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.10.6|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.10.7|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.10.8|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.11.1|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.11.2|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.11.3|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.11.4|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.11.5|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.11.6|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.11.7|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.11.8|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.12.1|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.12.2|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.12.3|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.12.4|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.12.5|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.12.6|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.12.7|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.12.8|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.17.1|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.17.2|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.17.3|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.17.4|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.17.5|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.17.6|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.17.7|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.17.8|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.18.1|2|1 +1.3.6.1.4.1.994.3.4.7.21.1.18.2|2|1 +1.3.6.1.4.1.994.3.4.7.21.1.18.3|2|1 +1.3.6.1.4.1.994.3.4.7.21.1.18.4|2|1 +1.3.6.1.4.1.994.3.4.7.21.1.18.5|2|1 +1.3.6.1.4.1.994.3.4.7.21.1.18.6|2|1 +1.3.6.1.4.1.994.3.4.7.21.1.18.7|2|1 +1.3.6.1.4.1.994.3.4.7.21.1.18.8|2|1 +1.3.6.1.4.1.994.3.4.7.21.1.19.1|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.19.2|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.19.3|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.19.4|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.19.5|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.19.6|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.19.7|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.19.8|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.20.1|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.20.2|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.20.3|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.20.4|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.20.5|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.20.6|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.20.7|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.20.8|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.21.1|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.21.2|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.21.3|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.21.4|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.21.5|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.21.6|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.21.7|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.21.8|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.22.1|2|1 +1.3.6.1.4.1.994.3.4.7.21.1.22.2|2|1 +1.3.6.1.4.1.994.3.4.7.21.1.22.3|2|1 +1.3.6.1.4.1.994.3.4.7.21.1.22.4|2|1 +1.3.6.1.4.1.994.3.4.7.21.1.22.5|2|1 +1.3.6.1.4.1.994.3.4.7.21.1.22.6|2|1 +1.3.6.1.4.1.994.3.4.7.21.1.22.7|2|1 +1.3.6.1.4.1.994.3.4.7.21.1.22.8|2|1 +1.3.6.1.4.1.994.3.4.7.21.1.28.1|4|100 +1.3.6.1.4.1.994.3.4.7.21.1.28.2|4|100 +1.3.6.1.4.1.994.3.4.7.21.1.28.3|4|100 +1.3.6.1.4.1.994.3.4.7.21.1.28.4|4|100 +1.3.6.1.4.1.994.3.4.7.21.1.28.5|4|100 +1.3.6.1.4.1.994.3.4.7.21.1.28.6|4|100 +1.3.6.1.4.1.994.3.4.7.21.1.28.7|4|100 +1.3.6.1.4.1.994.3.4.7.21.1.28.8|4|100 +1.3.6.1.4.1.994.3.4.7.21.1.29.1|4|80.0 +1.3.6.1.4.1.994.3.4.7.21.1.29.2|4|80.0 +1.3.6.1.4.1.994.3.4.7.21.1.29.3|4|80.0 +1.3.6.1.4.1.994.3.4.7.21.1.29.4|4|80.0 +1.3.6.1.4.1.994.3.4.7.21.1.29.5|4|80.0 +1.3.6.1.4.1.994.3.4.7.21.1.29.6|4|80.0 +1.3.6.1.4.1.994.3.4.7.21.1.29.7|4|80.0 +1.3.6.1.4.1.994.3.4.7.21.1.29.8|4|80.0 +1.3.6.1.4.1.994.3.4.7.21.1.30.1|4|60.0 +1.3.6.1.4.1.994.3.4.7.21.1.30.2|4|60.0 +1.3.6.1.4.1.994.3.4.7.21.1.30.3|4|60.0 +1.3.6.1.4.1.994.3.4.7.21.1.30.4|4|60.0 +1.3.6.1.4.1.994.3.4.7.21.1.30.5|4|60.0 +1.3.6.1.4.1.994.3.4.7.21.1.30.6|4|60.0 +1.3.6.1.4.1.994.3.4.7.21.1.30.7|4|60.0 +1.3.6.1.4.1.994.3.4.7.21.1.30.8|4|60.0 +1.3.6.1.4.1.994.3.4.7.21.1.31.1|4|40.0 +1.3.6.1.4.1.994.3.4.7.21.1.31.2|4|40.0 +1.3.6.1.4.1.994.3.4.7.21.1.31.3|4|40.0 +1.3.6.1.4.1.994.3.4.7.21.1.31.4|4|40.0 +1.3.6.1.4.1.994.3.4.7.21.1.31.5|4|40.0 +1.3.6.1.4.1.994.3.4.7.21.1.31.6|4|40.0 +1.3.6.1.4.1.994.3.4.7.21.1.31.7|4|40.0 +1.3.6.1.4.1.994.3.4.7.21.1.31.8|4|40.0 +1.3.6.1.4.1.994.3.4.7.21.1.32.1|4|20.0 +1.3.6.1.4.1.994.3.4.7.21.1.32.2|4|20.0 +1.3.6.1.4.1.994.3.4.7.21.1.32.3|4|20.0 +1.3.6.1.4.1.994.3.4.7.21.1.32.4|4|20.0 +1.3.6.1.4.1.994.3.4.7.21.1.32.5|4|20.0 +1.3.6.1.4.1.994.3.4.7.21.1.32.6|4|20.0 +1.3.6.1.4.1.994.3.4.7.21.1.32.7|4|20.0 +1.3.6.1.4.1.994.3.4.7.21.1.32.8|4|20.0 +1.3.6.1.4.1.994.3.4.7.21.1.33.1|4|-100 +1.3.6.1.4.1.994.3.4.7.21.1.33.2|4|-100 +1.3.6.1.4.1.994.3.4.7.21.1.33.3|4|-100 +1.3.6.1.4.1.994.3.4.7.21.1.33.4|4|-100 +1.3.6.1.4.1.994.3.4.7.21.1.33.5|4|-100 +1.3.6.1.4.1.994.3.4.7.21.1.33.6|4|-100 +1.3.6.1.4.1.994.3.4.7.21.1.33.7|4|-100 +1.3.6.1.4.1.994.3.4.7.21.1.33.8|4|-100 +1.3.6.1.4.1.994.3.4.7.21.1.46.1|4| +1.3.6.1.4.1.994.3.4.7.21.1.46.2|4| +1.3.6.1.4.1.994.3.4.7.21.1.46.3|4| +1.3.6.1.4.1.994.3.4.7.21.1.46.4|4| +1.3.6.1.4.1.994.3.4.7.21.1.46.5|4| +1.3.6.1.4.1.994.3.4.7.21.1.46.6|4| +1.3.6.1.4.1.994.3.4.7.21.1.46.7|4| +1.3.6.1.4.1.994.3.4.7.21.1.46.8|4| +1.3.6.1.4.1.994.3.4.7.21.1.64.1|4|High High +1.3.6.1.4.1.994.3.4.7.21.1.64.2|4|High High +1.3.6.1.4.1.994.3.4.7.21.1.64.3|4|High High +1.3.6.1.4.1.994.3.4.7.21.1.64.4|4|High High +1.3.6.1.4.1.994.3.4.7.21.1.64.5|4|High High +1.3.6.1.4.1.994.3.4.7.21.1.64.6|4|High High +1.3.6.1.4.1.994.3.4.7.21.1.64.7|4|High High +1.3.6.1.4.1.994.3.4.7.21.1.64.8|4|High High +1.3.6.1.4.1.994.3.4.7.21.1.65.1|4|Normal +1.3.6.1.4.1.994.3.4.7.21.1.65.2|4|Normal +1.3.6.1.4.1.994.3.4.7.21.1.65.3|4|Normal +1.3.6.1.4.1.994.3.4.7.21.1.65.4|4|Normal +1.3.6.1.4.1.994.3.4.7.21.1.65.5|4|Normal +1.3.6.1.4.1.994.3.4.7.21.1.65.6|4|Normal +1.3.6.1.4.1.994.3.4.7.21.1.65.7|4|Normal +1.3.6.1.4.1.994.3.4.7.21.1.65.8|4|Normal +1.3.6.1.4.1.994.3.4.7.21.1.66.1|4|0 +1.3.6.1.4.1.994.3.4.7.21.1.66.2|4|0 +1.3.6.1.4.1.994.3.4.7.21.1.66.3|4|0 +1.3.6.1.4.1.994.3.4.7.21.1.66.4|4|0 +1.3.6.1.4.1.994.3.4.7.21.1.66.5|4|0 +1.3.6.1.4.1.994.3.4.7.21.1.66.6|4|0 +1.3.6.1.4.1.994.3.4.7.21.1.66.7|4|0 +1.3.6.1.4.1.994.3.4.7.21.1.66.8|4|0 +1.3.6.1.4.1.994.3.4.7.21.1.67.1|4| +1.3.6.1.4.1.994.3.4.7.21.1.67.2|4| +1.3.6.1.4.1.994.3.4.7.21.1.67.3|4| +1.3.6.1.4.1.994.3.4.7.21.1.67.4|4| +1.3.6.1.4.1.994.3.4.7.21.1.67.5|4| +1.3.6.1.4.1.994.3.4.7.21.1.67.6|4| +1.3.6.1.4.1.994.3.4.7.21.1.67.7|4| +1.3.6.1.4.1.994.3.4.7.21.1.67.8|4| +1.3.6.1.4.1.994.3.4.7.21.1.72.1|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.72.2|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.72.3|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.72.4|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.72.5|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.72.6|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.72.7|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.72.8|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.75.1|2|2 +1.3.6.1.4.1.994.3.4.7.21.1.75.2|2|2 +1.3.6.1.4.1.994.3.4.7.21.1.75.3|2|2 +1.3.6.1.4.1.994.3.4.7.21.1.75.4|2|2 +1.3.6.1.4.1.994.3.4.7.21.1.75.5|2|2 +1.3.6.1.4.1.994.3.4.7.21.1.75.6|2|2 +1.3.6.1.4.1.994.3.4.7.21.1.75.7|2|2 +1.3.6.1.4.1.994.3.4.7.21.1.75.8|2|2 +1.3.6.1.4.1.994.3.4.7.21.1.116.1|4| +1.3.6.1.4.1.994.3.4.7.21.1.116.2|4| +1.3.6.1.4.1.994.3.4.7.21.1.116.3|4| +1.3.6.1.4.1.994.3.4.7.21.1.116.4|4| +1.3.6.1.4.1.994.3.4.7.21.1.116.5|4| +1.3.6.1.4.1.994.3.4.7.21.1.116.6|4| +1.3.6.1.4.1.994.3.4.7.21.1.116.7|4| +1.3.6.1.4.1.994.3.4.7.21.1.116.8|4| +1.3.6.1.4.1.994.3.4.7.21.1.117.1|4| +1.3.6.1.4.1.994.3.4.7.21.1.117.2|4| +1.3.6.1.4.1.994.3.4.7.21.1.117.3|4| +1.3.6.1.4.1.994.3.4.7.21.1.117.4|4| +1.3.6.1.4.1.994.3.4.7.21.1.117.5|4| +1.3.6.1.4.1.994.3.4.7.21.1.117.6|4| +1.3.6.1.4.1.994.3.4.7.21.1.117.7|4| +1.3.6.1.4.1.994.3.4.7.21.1.117.8|4| +1.3.6.1.4.1.994.3.4.7.21.1.118.1|4| +1.3.6.1.4.1.994.3.4.7.21.1.118.2|4| +1.3.6.1.4.1.994.3.4.7.21.1.118.3|4| +1.3.6.1.4.1.994.3.4.7.21.1.118.4|4| +1.3.6.1.4.1.994.3.4.7.21.1.118.5|4| +1.3.6.1.4.1.994.3.4.7.21.1.118.6|4| +1.3.6.1.4.1.994.3.4.7.21.1.118.7|4| +1.3.6.1.4.1.994.3.4.7.21.1.118.8|4| +1.3.6.1.4.1.994.3.4.7.21.1.119.1|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.119.2|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.119.3|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.119.4|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.119.5|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.119.6|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.119.7|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.119.8|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.120.1|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.120.2|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.120.3|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.120.4|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.120.5|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.120.6|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.120.7|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.120.8|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.121.1|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.121.2|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.121.3|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.121.4|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.121.5|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.121.6|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.121.7|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.121.8|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.122.1|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.122.2|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.122.3|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.122.4|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.122.5|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.122.6|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.122.7|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.122.8|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.131.1|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.131.2|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.131.3|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.131.4|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.131.5|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.131.6|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.131.7|2|0 +1.3.6.1.4.1.994.3.4.7.21.1.131.8|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.3.1|4| +1.3.6.1.4.1.994.3.4.7.22.1.3.2|4| +1.3.6.1.4.1.994.3.4.7.22.1.3.3|4| +1.3.6.1.4.1.994.3.4.7.22.1.3.4|4| +1.3.6.1.4.1.994.3.4.7.22.1.3.5|4| +1.3.6.1.4.1.994.3.4.7.22.1.3.6|4| +1.3.6.1.4.1.994.3.4.7.22.1.3.7|4| +1.3.6.1.4.1.994.3.4.7.22.1.3.8|4| +1.3.6.1.4.1.994.3.4.7.22.1.3.9|4| +1.3.6.1.4.1.994.3.4.7.22.1.3.10|4| +1.3.6.1.4.1.994.3.4.7.22.1.3.11|4| +1.3.6.1.4.1.994.3.4.7.22.1.3.12|4| +1.3.6.1.4.1.994.3.4.7.22.1.3.13|4| +1.3.6.1.4.1.994.3.4.7.22.1.3.14|4| +1.3.6.1.4.1.994.3.4.7.22.1.3.15|4| +1.3.6.1.4.1.994.3.4.7.22.1.3.16|4| +1.3.6.1.4.1.994.3.4.7.22.1.4.1|4|Off +1.3.6.1.4.1.994.3.4.7.22.1.4.2|4|Off +1.3.6.1.4.1.994.3.4.7.22.1.4.3|4|Off +1.3.6.1.4.1.994.3.4.7.22.1.4.4|4|Off +1.3.6.1.4.1.994.3.4.7.22.1.4.5|4|Off +1.3.6.1.4.1.994.3.4.7.22.1.4.6|4|Off +1.3.6.1.4.1.994.3.4.7.22.1.4.7|4|Off +1.3.6.1.4.1.994.3.4.7.22.1.4.8|4|Off +1.3.6.1.4.1.994.3.4.7.22.1.4.9|4|Off +1.3.6.1.4.1.994.3.4.7.22.1.4.10|4|Off +1.3.6.1.4.1.994.3.4.7.22.1.4.11|4|Off +1.3.6.1.4.1.994.3.4.7.22.1.4.12|4|Off +1.3.6.1.4.1.994.3.4.7.22.1.4.13|4|Off +1.3.6.1.4.1.994.3.4.7.22.1.4.14|4|Off +1.3.6.1.4.1.994.3.4.7.22.1.4.15|4|Off +1.3.6.1.4.1.994.3.4.7.22.1.4.16|4|Off +1.3.6.1.4.1.994.3.4.7.22.1.5.1|4|On +1.3.6.1.4.1.994.3.4.7.22.1.5.2|4|On +1.3.6.1.4.1.994.3.4.7.22.1.5.3|4|On +1.3.6.1.4.1.994.3.4.7.22.1.5.4|4|On +1.3.6.1.4.1.994.3.4.7.22.1.5.5|4|On +1.3.6.1.4.1.994.3.4.7.22.1.5.6|4|On +1.3.6.1.4.1.994.3.4.7.22.1.5.7|4|On +1.3.6.1.4.1.994.3.4.7.22.1.5.8|4|On +1.3.6.1.4.1.994.3.4.7.22.1.5.9|4|On +1.3.6.1.4.1.994.3.4.7.22.1.5.10|4|On +1.3.6.1.4.1.994.3.4.7.22.1.5.11|4|On +1.3.6.1.4.1.994.3.4.7.22.1.5.12|4|On +1.3.6.1.4.1.994.3.4.7.22.1.5.13|4|On +1.3.6.1.4.1.994.3.4.7.22.1.5.14|4|On +1.3.6.1.4.1.994.3.4.7.22.1.5.15|4|On +1.3.6.1.4.1.994.3.4.7.22.1.5.16|4|On +1.3.6.1.4.1.994.3.4.7.22.1.10.1|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.10.2|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.10.3|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.10.4|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.10.5|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.10.6|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.10.7|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.10.8|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.10.9|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.10.10|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.10.11|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.10.12|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.10.13|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.10.14|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.10.15|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.10.16|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.11.1|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.11.2|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.11.3|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.11.4|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.11.5|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.11.6|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.11.7|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.11.8|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.11.9|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.11.10|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.11.11|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.11.12|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.11.13|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.11.14|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.11.15|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.11.16|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.12.1|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.12.2|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.12.3|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.12.4|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.12.5|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.12.6|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.12.7|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.12.8|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.12.9|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.12.10|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.12.11|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.12.12|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.12.13|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.12.14|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.12.15|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.12.16|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.17.1|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.17.2|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.17.3|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.17.4|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.17.5|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.17.6|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.17.7|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.17.8|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.17.9|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.17.10|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.17.11|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.17.12|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.17.13|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.17.14|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.17.15|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.17.16|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.18.1|2|1 +1.3.6.1.4.1.994.3.4.7.22.1.18.2|2|1 +1.3.6.1.4.1.994.3.4.7.22.1.18.3|2|1 +1.3.6.1.4.1.994.3.4.7.22.1.18.4|2|1 +1.3.6.1.4.1.994.3.4.7.22.1.18.5|2|1 +1.3.6.1.4.1.994.3.4.7.22.1.18.6|2|1 +1.3.6.1.4.1.994.3.4.7.22.1.18.7|2|1 +1.3.6.1.4.1.994.3.4.7.22.1.18.8|2|1 +1.3.6.1.4.1.994.3.4.7.22.1.18.9|2|1 +1.3.6.1.4.1.994.3.4.7.22.1.18.10|2|1 +1.3.6.1.4.1.994.3.4.7.22.1.18.11|2|1 +1.3.6.1.4.1.994.3.4.7.22.1.18.12|2|1 +1.3.6.1.4.1.994.3.4.7.22.1.18.13|2|1 +1.3.6.1.4.1.994.3.4.7.22.1.18.14|2|1 +1.3.6.1.4.1.994.3.4.7.22.1.18.15|2|1 +1.3.6.1.4.1.994.3.4.7.22.1.18.16|2|1 +1.3.6.1.4.1.994.3.4.7.22.1.44.1|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.44.2|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.44.3|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.44.4|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.44.5|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.44.6|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.44.7|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.44.8|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.44.9|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.44.10|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.44.11|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.44.12|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.44.13|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.44.14|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.44.15|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.44.16|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.64.1|4|Off +1.3.6.1.4.1.994.3.4.7.22.1.64.2|4|Off +1.3.6.1.4.1.994.3.4.7.22.1.64.3|4|Off +1.3.6.1.4.1.994.3.4.7.22.1.64.4|4|Off +1.3.6.1.4.1.994.3.4.7.22.1.64.5|4|Off +1.3.6.1.4.1.994.3.4.7.22.1.64.6|4|Off +1.3.6.1.4.1.994.3.4.7.22.1.64.7|4|Off +1.3.6.1.4.1.994.3.4.7.22.1.64.8|4|Off +1.3.6.1.4.1.994.3.4.7.22.1.64.9|4|Off +1.3.6.1.4.1.994.3.4.7.22.1.64.10|4|Off +1.3.6.1.4.1.994.3.4.7.22.1.64.11|4|Off +1.3.6.1.4.1.994.3.4.7.22.1.64.12|4|Off +1.3.6.1.4.1.994.3.4.7.22.1.64.13|4|Off +1.3.6.1.4.1.994.3.4.7.22.1.64.14|4|Off +1.3.6.1.4.1.994.3.4.7.22.1.64.15|4|Off +1.3.6.1.4.1.994.3.4.7.22.1.64.16|4|Off +1.3.6.1.4.1.994.3.4.7.22.1.65.1|4|Normal +1.3.6.1.4.1.994.3.4.7.22.1.65.2|4|Normal +1.3.6.1.4.1.994.3.4.7.22.1.65.3|4|Normal +1.3.6.1.4.1.994.3.4.7.22.1.65.4|4|Normal +1.3.6.1.4.1.994.3.4.7.22.1.65.5|4|Normal +1.3.6.1.4.1.994.3.4.7.22.1.65.6|4|Normal +1.3.6.1.4.1.994.3.4.7.22.1.65.7|4|Normal +1.3.6.1.4.1.994.3.4.7.22.1.65.8|4|Normal +1.3.6.1.4.1.994.3.4.7.22.1.65.9|4|Normal +1.3.6.1.4.1.994.3.4.7.22.1.65.10|4|Normal +1.3.6.1.4.1.994.3.4.7.22.1.65.11|4|Normal +1.3.6.1.4.1.994.3.4.7.22.1.65.12|4|Normal +1.3.6.1.4.1.994.3.4.7.22.1.65.13|4|Normal +1.3.6.1.4.1.994.3.4.7.22.1.65.14|4|Normal +1.3.6.1.4.1.994.3.4.7.22.1.65.15|4|Normal +1.3.6.1.4.1.994.3.4.7.22.1.65.16|4|Normal +1.3.6.1.4.1.994.3.4.7.22.1.67.1|4| +1.3.6.1.4.1.994.3.4.7.22.1.67.2|4| +1.3.6.1.4.1.994.3.4.7.22.1.67.3|4| +1.3.6.1.4.1.994.3.4.7.22.1.67.4|4| +1.3.6.1.4.1.994.3.4.7.22.1.67.5|4| +1.3.6.1.4.1.994.3.4.7.22.1.67.6|4| +1.3.6.1.4.1.994.3.4.7.22.1.67.7|4| +1.3.6.1.4.1.994.3.4.7.22.1.67.8|4| +1.3.6.1.4.1.994.3.4.7.22.1.67.9|4| +1.3.6.1.4.1.994.3.4.7.22.1.67.10|4| +1.3.6.1.4.1.994.3.4.7.22.1.67.11|4| +1.3.6.1.4.1.994.3.4.7.22.1.67.12|4| +1.3.6.1.4.1.994.3.4.7.22.1.67.13|4| +1.3.6.1.4.1.994.3.4.7.22.1.67.14|4| +1.3.6.1.4.1.994.3.4.7.22.1.67.15|4| +1.3.6.1.4.1.994.3.4.7.22.1.67.16|4| +1.3.6.1.4.1.994.3.4.7.22.1.75.1|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.75.2|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.75.3|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.75.4|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.75.5|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.75.6|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.75.7|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.75.8|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.75.9|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.75.10|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.75.11|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.75.12|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.75.13|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.75.14|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.75.15|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.75.16|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.116.1|4| +1.3.6.1.4.1.994.3.4.7.22.1.116.2|4| +1.3.6.1.4.1.994.3.4.7.22.1.116.3|4| +1.3.6.1.4.1.994.3.4.7.22.1.116.4|4| +1.3.6.1.4.1.994.3.4.7.22.1.116.5|4| +1.3.6.1.4.1.994.3.4.7.22.1.116.6|4| +1.3.6.1.4.1.994.3.4.7.22.1.116.7|4| +1.3.6.1.4.1.994.3.4.7.22.1.116.8|4| +1.3.6.1.4.1.994.3.4.7.22.1.116.9|4| +1.3.6.1.4.1.994.3.4.7.22.1.116.10|4| +1.3.6.1.4.1.994.3.4.7.22.1.116.11|4| +1.3.6.1.4.1.994.3.4.7.22.1.116.12|4| +1.3.6.1.4.1.994.3.4.7.22.1.116.13|4| +1.3.6.1.4.1.994.3.4.7.22.1.116.14|4| +1.3.6.1.4.1.994.3.4.7.22.1.116.15|4| +1.3.6.1.4.1.994.3.4.7.22.1.116.16|4| +1.3.6.1.4.1.994.3.4.7.22.1.117.1|4| +1.3.6.1.4.1.994.3.4.7.22.1.117.2|4| +1.3.6.1.4.1.994.3.4.7.22.1.117.3|4| +1.3.6.1.4.1.994.3.4.7.22.1.117.4|4| +1.3.6.1.4.1.994.3.4.7.22.1.117.5|4| +1.3.6.1.4.1.994.3.4.7.22.1.117.6|4| +1.3.6.1.4.1.994.3.4.7.22.1.117.7|4| +1.3.6.1.4.1.994.3.4.7.22.1.117.8|4| +1.3.6.1.4.1.994.3.4.7.22.1.117.9|4| +1.3.6.1.4.1.994.3.4.7.22.1.117.10|4| +1.3.6.1.4.1.994.3.4.7.22.1.117.11|4| +1.3.6.1.4.1.994.3.4.7.22.1.117.12|4| +1.3.6.1.4.1.994.3.4.7.22.1.117.13|4| +1.3.6.1.4.1.994.3.4.7.22.1.117.14|4| +1.3.6.1.4.1.994.3.4.7.22.1.117.15|4| +1.3.6.1.4.1.994.3.4.7.22.1.117.16|4| +1.3.6.1.4.1.994.3.4.7.22.1.118.1|4| +1.3.6.1.4.1.994.3.4.7.22.1.118.2|4| +1.3.6.1.4.1.994.3.4.7.22.1.118.3|4| +1.3.6.1.4.1.994.3.4.7.22.1.118.4|4| +1.3.6.1.4.1.994.3.4.7.22.1.118.5|4| +1.3.6.1.4.1.994.3.4.7.22.1.118.6|4| +1.3.6.1.4.1.994.3.4.7.22.1.118.7|4| +1.3.6.1.4.1.994.3.4.7.22.1.118.8|4| +1.3.6.1.4.1.994.3.4.7.22.1.118.9|4| +1.3.6.1.4.1.994.3.4.7.22.1.118.10|4| +1.3.6.1.4.1.994.3.4.7.22.1.118.11|4| +1.3.6.1.4.1.994.3.4.7.22.1.118.12|4| +1.3.6.1.4.1.994.3.4.7.22.1.118.13|4| +1.3.6.1.4.1.994.3.4.7.22.1.118.14|4| +1.3.6.1.4.1.994.3.4.7.22.1.118.15|4| +1.3.6.1.4.1.994.3.4.7.22.1.118.16|4| +1.3.6.1.4.1.994.3.4.7.22.1.119.1|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.119.2|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.119.3|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.119.4|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.119.5|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.119.6|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.119.7|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.119.8|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.119.9|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.119.10|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.119.11|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.119.12|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.119.13|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.119.14|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.119.15|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.119.16|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.120.1|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.120.2|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.120.3|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.120.4|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.120.5|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.120.6|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.120.7|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.120.8|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.120.9|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.120.10|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.120.11|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.120.12|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.120.13|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.120.14|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.120.15|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.120.16|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.121.1|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.121.2|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.121.3|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.121.4|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.121.5|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.121.6|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.121.7|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.121.8|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.121.9|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.121.10|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.121.11|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.121.12|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.121.13|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.121.14|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.121.15|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.121.16|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.122.1|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.122.2|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.122.3|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.122.4|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.122.5|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.122.6|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.122.7|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.122.8|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.122.9|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.122.10|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.122.11|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.122.12|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.122.13|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.122.14|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.122.15|2|0 +1.3.6.1.4.1.994.3.4.7.22.1.122.16|2|0 +1.3.6.1.4.1.994.3.4.7.23.1.3.1|4|Serial Port 61 +1.3.6.1.4.1.994.3.4.7.23.1.3.2|4|Serial Port 62 +1.3.6.1.4.1.994.3.4.7.23.1.3.3|4|Serial Port 63 +1.3.6.1.4.1.994.3.4.7.23.1.3.4|4|Serial Port 64 +1.3.6.1.4.1.994.3.4.7.23.1.10.1|2|1 +1.3.6.1.4.1.994.3.4.7.23.1.10.2|2|1 +1.3.6.1.4.1.994.3.4.7.23.1.10.3|2|1 +1.3.6.1.4.1.994.3.4.7.23.1.10.4|2|1 +1.3.6.1.4.1.994.3.4.7.23.1.14.1|64|0.0.0.0 +1.3.6.1.4.1.994.3.4.7.23.1.14.2|64|0.0.0.0 +1.3.6.1.4.1.994.3.4.7.23.1.14.3|64|0.0.0.0 +1.3.6.1.4.1.994.3.4.7.23.1.14.4|64|0.0.0.0 +1.3.6.1.4.1.994.3.4.7.23.1.23.1|2|0 +1.3.6.1.4.1.994.3.4.7.23.1.23.2|2|0 +1.3.6.1.4.1.994.3.4.7.23.1.23.3|2|0 +1.3.6.1.4.1.994.3.4.7.23.1.23.4|2|0 +1.3.6.1.4.1.994.3.4.7.23.1.57.1|2|5 +1.3.6.1.4.1.994.3.4.7.23.1.57.2|2|5 +1.3.6.1.4.1.994.3.4.7.23.1.57.3|2|5 +1.3.6.1.4.1.994.3.4.7.23.1.57.4|2|5 +1.3.6.1.4.1.994.3.4.7.23.1.58.1|2|1 +1.3.6.1.4.1.994.3.4.7.23.1.58.2|2|1 +1.3.6.1.4.1.994.3.4.7.23.1.58.3|2|1 +1.3.6.1.4.1.994.3.4.7.23.1.58.4|2|1 +1.3.6.1.4.1.994.3.4.7.23.1.59.1|2|0 +1.3.6.1.4.1.994.3.4.7.23.1.59.2|2|0 +1.3.6.1.4.1.994.3.4.7.23.1.59.3|2|0 +1.3.6.1.4.1.994.3.4.7.23.1.59.4|2|0 +1.3.6.1.4.1.994.3.4.7.23.1.60.1|2|0 +1.3.6.1.4.1.994.3.4.7.23.1.60.2|2|0 +1.3.6.1.4.1.994.3.4.7.23.1.60.3|2|0 +1.3.6.1.4.1.994.3.4.7.23.1.60.4|2|0 +1.3.6.1.4.1.994.3.4.7.23.1.61.1|2|5 +1.3.6.1.4.1.994.3.4.7.23.1.61.2|2|5 +1.3.6.1.4.1.994.3.4.7.23.1.61.3|2|5 +1.3.6.1.4.1.994.3.4.7.23.1.61.4|2|5 +1.3.6.1.4.1.994.3.4.7.23.1.62.1|2|2 +1.3.6.1.4.1.994.3.4.7.23.1.62.2|2|2 +1.3.6.1.4.1.994.3.4.7.23.1.62.3|2|2 +1.3.6.1.4.1.994.3.4.7.23.1.62.4|2|2 +1.3.6.1.4.1.994.3.4.7.23.1.63.1|2|0 +1.3.6.1.4.1.994.3.4.7.23.1.63.2|2|0 +1.3.6.1.4.1.994.3.4.7.23.1.63.3|2|0 +1.3.6.1.4.1.994.3.4.7.23.1.63.4|2|0 +1.3.6.1.4.1.994.3.4.7.23.1.68.1|2|1 +1.3.6.1.4.1.994.3.4.7.23.1.68.2|2|1 +1.3.6.1.4.1.994.3.4.7.23.1.68.3|2|1 +1.3.6.1.4.1.994.3.4.7.23.1.68.4|2|1 +1.3.6.1.4.1.994.3.4.7.23.1.73.1|2|0 +1.3.6.1.4.1.994.3.4.7.23.1.73.2|2|0 +1.3.6.1.4.1.994.3.4.7.23.1.73.3|2|0 +1.3.6.1.4.1.994.3.4.7.23.1.73.4|2|0 +1.3.6.1.4.1.994.3.4.7.23.1.75.1|2|7 +1.3.6.1.4.1.994.3.4.7.23.1.75.2|2|7 +1.3.6.1.4.1.994.3.4.7.23.1.75.3|2|7 +1.3.6.1.4.1.994.3.4.7.23.1.75.4|2|7 +1.3.6.1.4.1.994.3.4.7.23.1.76.1|2|1 +1.3.6.1.4.1.994.3.4.7.23.1.76.2|2|1 +1.3.6.1.4.1.994.3.4.7.23.1.76.3|2|1 +1.3.6.1.4.1.994.3.4.7.23.1.76.4|2|1