From b8c67690496ab2545a7feb22d4ddb942c975a149 Mon Sep 17 00:00:00 2001 From: PipoCanaja <38363551+PipoCanaja@users.noreply.github.com> Date: Sun, 24 May 2020 04:11:55 +0200 Subject: [PATCH] New corner cases for Huawei VRP BGP (#11663) * vrp-improve * add bgp4 data, and get errors * Fix WRONG Type error on bgpPeerRemoteAs + handle ErrorSubCode in a generic way * fixing tests * clean * improve state backup to BGP4-MIB * tests with corrected data * tests * restore original tests/data/vrp_5720.json --- includes/discovery/bgp-peers.inc.php | 4 +- includes/discovery/bgp-peers/vrp.inc.php | 2 +- includes/polling/bgp-peers.inc.php | 45 +- tests/data/vrp_ne.json | 7654 ++++++++++++++++++++-- tests/snmpsim/vrp_ne.snmprec | 4237 ++++++++++-- 5 files changed, 10823 insertions(+), 1119 deletions(-) diff --git a/includes/discovery/bgp-peers.inc.php b/includes/discovery/bgp-peers.inc.php index 8e865a820e..8890f9233a 100644 --- a/includes/discovery/bgp-peers.inc.php +++ b/includes/discovery/bgp-peers.inc.php @@ -18,7 +18,7 @@ if (Config::get('enable_bgp')) { $vrfs_lite_cisco = array(array('context_name'=>'')); } - $bgpLocalAs = snmp_getnext($device, 'bgpLocalAs', '-Oqvn', 'BGP4-MIB'); + $bgpLocalAs = snmp_getnext($device, 'bgpLocalAs', '-OQUsv', 'BGP4-MIB'); foreach ($vrfs_lite_cisco as $vrf) { $device['context_name'] = $vrf['context_name']; @@ -43,7 +43,7 @@ if (Config::get('enable_bgp')) { if (empty($peers_data)) { $bgp4_mib = true; - $peers_data = snmp_walk($device, 'bgpPeerRemoteAs', '-Oq', 'BGP4-MIB'); + $peers_data = preg_replace('/= /', '', snmp_walk($device, 'bgpPeerRemoteAs', '-OQ', 'BGP4-MIB')); } } else { echo 'No BGP on host'; diff --git a/includes/discovery/bgp-peers/vrp.inc.php b/includes/discovery/bgp-peers/vrp.inc.php index ddce705953..05629f24af 100644 --- a/includes/discovery/bgp-peers/vrp.inc.php +++ b/includes/discovery/bgp-peers/vrp.inc.php @@ -166,6 +166,6 @@ if (Config::get('enable_bgp')) { if ($vrp_bgp_peer_count > 0) { return; //Finish BGP discovery here, cause we collected data } - // If not, we continue with standard BGP4 MIB } + // If not, we continue with standard BGP4 MIB } diff --git a/includes/polling/bgp-peers.inc.php b/includes/polling/bgp-peers.inc.php index 3bfb85a184..56bdbb3fb4 100644 --- a/includes/polling/bgp-peers.inc.php +++ b/includes/polling/bgp-peers.inc.php @@ -93,8 +93,10 @@ if (\LibreNMS\Config::get('enable_bgp')) { } elseif ($device['os'] == 'vrp') { echo "\nCaching Oids VRP..."; if (!isset($bgpPeers)) { + //if not available, we timeout each time, to be fixed when split $bgpPeersCache = snmpwalk_cache_oid($device, 'hwBgpPeerEntry', [], 'HUAWEI-BGP-VPN-MIB', 'huawei'); $bgpPeersStats = snmpwalk_cache_oid($device, 'hwBgpPeerStatisticTable', [], 'HUAWEI-BGP-VPN-MIB', 'huawei', '-OQUbs'); + $bgp4updates = snmpwalk_cache_oid($device, 'bgpPeerEntry', [], 'BGP4-MIB', 'huawei', '-OQUbs'); foreach ($bgpPeersCache as $key => $value) { $oid = explode(".", $key, 5); $vrfInstance = $oid[0]; @@ -137,9 +139,31 @@ if (\LibreNMS\Config::get('enable_bgp')) { $peer_data['bgpPeerInTotalMessages'] = $bgpPeers[$address][$vrfInstance]['hwBgpPeerInTotalMsgs']; $peer_data['bgpPeerOutTotalMessages'] = $bgpPeers[$address][$vrfInstance]['hwBgpPeerOutTotalMsgs']; $peer_data['bgpPeerFsmEstablishedTime'] = $bgpPeers[$address][$vrfInstance]['hwBgpPeerFsmEstablishedTime']; + $peer_data['bgpPeerLastError'] = $bgpPeers[$address][$vrfInstance]['hwBgpPeerLastError']; } - d_echo("VPN : $vrfInstance for $address :"); + d_echo("VPN : $vrfInstance for $address :\n"); d_echo($peer_data); + if (empty($peer_data['bgpPeerInUpdates']) || empty($peer_data['bgpPeerOutUpdates'])) { + $peer_data['bgpPeerInUpdates'] = $bgp4updates[$address]['bgpPeerInUpdates']; + $peer_data['bgpPeerOutUpdates'] = $bgp4updates[$address]['bgpPeerOutUpdates']; + } + if (empty($peer_data['bgpPeerInTotalMessages']) || empty($peer_data['bgpPeerOutTotalMessages'])) { + $peer_data['bgpPeerInTotalMessages'] = $bgp4updates[$address]['bgpPeerInTotalMessages']; + $peer_data['bgpPeerOutTotalMessages'] = $bgp4updates[$address]['bgpPeerOutTotalMessages']; + } + if (empty($peer_data['bgpPeerState'])) { + $peer_data['bgpPeerState'] = $bgp4updates[$address]['bgpPeerState']; + } + if (empty($peer_data['bgpPeerAdminStatus'])) { + $peer_data['bgpPeerAdminStatus'] = $bgp4updates[$address]['bgpPeerAdminStatus']; + } + if (empty($peer_data['bgpPeerLastError'])) { + $peer_data['bgpPeerLastError'] = $bgp4updates[$address]['bgpPeerLastError']; + } + $error_data = explode(" ", $peer_data['bgpPeerLastError']); + $peer_data['bgpPeerLastErrorCode'] = intval($error_data[0]); + $peer_data['bgpPeerLastErrorSubCode'] = intval($error_data[1]); + unset($peer_data['bgpPeerLastError']); } elseif ($device['os'] == 'timos') { if (!isset($bgpPeers)) { echo "\nCaching Oids..."; @@ -248,16 +272,6 @@ if (\LibreNMS\Config::get('enable_bgp')) { $peer_data = array(); - if (strpos($peer_data_raw['cbgpPeer2LastError'], " ")) { - // Some device return both Code and SubCode in the same snmp field, we need to split it - $splitted_codes = explode(" ", $peer_data_raw['cbgpPeer2LastError']); - $error_code = intval($splitted_codes[0]); - $error_subcode = intval($splitted_codes[1]); - $peer_data['bgpPeerLastErrorCode'] = $error_code; - $peer_data['bgpPeerLastErrorSubCode'] = $error_subcode; - unset($oid_map['cbgpPeer2LastError']); - } - foreach ($oid_map as $source => $target) { $v = isset($peer_data_raw[$source]) ? $peer_data_raw[$source] : ''; @@ -270,6 +284,15 @@ if (\LibreNMS\Config::get('enable_bgp')) { } $peer_data[$target] = $v; } + + if (strpos($peer_data['bgpPeerLastErrorCode'], " ")) { + // Some device return both Code and SubCode in the same snmp field, we need to split it + $splitted_codes = explode(" ", $peer_data['bgpPeerLastErrorCode']); + $error_code = intval($splitted_codes[0]); + $error_subcode = intval($splitted_codes[1]); + $peer_data['bgpPeerLastErrorCode'] = $error_code; + $peer_data['bgpPeerLastErrorSubCode'] = $error_subcode; + } } d_echo($peer_data); diff --git a/tests/data/vrp_ne.json b/tests/data/vrp_ne.json index 1aa3925fb5..b1ce36a96d 100644 --- a/tests/data/vrp_ne.json +++ b/tests/data/vrp_ne.json @@ -4,7 +4,7 @@ "devices": [ { "sysName": "", - "sysObjectID": ".1.3.6.1.4.1.2011.2.62.26", + "sysObjectID": ".1.3.6.1.4.1.2011.2.62.30", "sysDescr": "Huawei Versatile Routing Platform Software", "sysContact": null, "version": null, @@ -22,10 +22,10 @@ "devices": [ { "sysName": "", - "sysObjectID": ".1.3.6.1.4.1.2011.2.62.26", + "sysObjectID": ".1.3.6.1.4.1.2011.2.62.30", "sysDescr": "Huawei Versatile Routing Platform Software", "sysContact": "", - "version": " [Public]", + "version": null, "hardware": null, "features": null, "os": "vrp", @@ -37,452 +37,7290 @@ ] } }, - "bgp-peers": { + "ports": { "discovery": { - "bgpPeers": [ + "ports": [ { - "astext": "Telefonos del Noroeste, S.A. de C.V., MX", - "bgpPeerIdentifier": "55.7.46.20", - "bgpPeerRemoteAs": 6332, - "bgpPeerState": "", - "bgpPeerAdminStatus": "stop", - "bgpLocalAddr": "0.0.0.0", - "bgpPeerRemoteAddr": "", - "bgpPeerDescr": "", - "bgpPeerInUpdates": 0, - "bgpPeerOutUpdates": 0, - "bgpPeerInTotalMessages": 0, - "bgpPeerOutTotalMessages": 0, - "bgpPeerFsmEstablishedTime": 0, - "bgpPeerInUpdateElapsedTime": 0, - "context_name": null, - "bgpLocalAs": 265086, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "NULL0", + "ifName": "NULL0", + "portName": null, + "ifIndex": 2, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "NULL0", + "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 }, { - "astext": "ERX-TANET-ASN1 Taiwan Academic Network (TANet) Information Center, TW", - "bgpPeerIdentifier": "54.7.42.34", - "bgpPeerRemoteAs": 1659, - "bgpPeerState": "", - "bgpPeerAdminStatus": "stop", - "bgpLocalAddr": "0.0.0.0", - "bgpPeerRemoteAddr": "", - "bgpPeerDescr": "", - "bgpPeerInUpdates": 0, - "bgpPeerOutUpdates": 0, - "bgpPeerInTotalMessages": 0, - "bgpPeerOutTotalMessages": 0, - "bgpPeerFsmEstablishedTime": 0, - "bgpPeerInUpdateElapsedTime": 0, - "context_name": null, - "bgpLocalAs": 265086, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "InLoopBack0", + "ifName": "InLoopBack0", + "portName": null, + "ifIndex": 3, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "softwareLoopback", + "ifAlias": "InLoopBack0", + "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 }, { - "astext": "NET-UEN-UTAH, US", - "bgpPeerIdentifier": "54.7.42.192", - "bgpPeerRemoteAs": 2940, - "bgpPeerState": "", - "bgpPeerAdminStatus": "stop", - "bgpLocalAddr": "0.0.0.0", - "bgpPeerRemoteAddr": "", - "bgpPeerDescr": "", - "bgpPeerInUpdates": 0, - "bgpPeerOutUpdates": 0, - "bgpPeerInTotalMessages": 0, - "bgpPeerOutTotalMessages": 0, - "bgpPeerFsmEstablishedTime": 0, - "bgpPeerInUpdateElapsedTime": 0, - "context_name": null, - "bgpLocalAs": 265086, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/0", + "ifName": "GigabitEthernet0/0/0", + "portName": null, + "ifIndex": 4, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/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 }, { - "astext": "NSU-AS, RU", - "bgpPeerIdentifier": "54.7.42.203", - "bgpPeerRemoteAs": 3335, - "bgpPeerState": "", - "bgpPeerAdminStatus": "stop", - "bgpLocalAddr": "0.0.0.0", - "bgpPeerRemoteAddr": "", - "bgpPeerDescr": "", - "bgpPeerInUpdates": 0, - "bgpPeerOutUpdates": 0, - "bgpPeerInTotalMessages": 0, - "bgpPeerOutTotalMessages": 0, - "bgpPeerFsmEstablishedTime": 0, - "bgpPeerInUpdateElapsedTime": 0, - "context_name": null, - "bgpLocalAs": 265086, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/3/4", + "ifName": "GigabitEthernet0/3/4", + "portName": null, + "ifIndex": 10, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "BRAT-PE1-Six_XG0/0/36", + "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 }, { - "astext": "RIPE-MEETING-AS, EU", - "bgpPeerIdentifier": "54.7.42.252", - "bgpPeerRemoteAs": 2121, - "bgpPeerState": "", - "bgpPeerAdminStatus": "stop", - "bgpLocalAddr": "0.0.0.0", - "bgpPeerRemoteAddr": "", - "bgpPeerDescr": "", - "bgpPeerInUpdates": 0, - "bgpPeerOutUpdates": 0, - "bgpPeerInTotalMessages": 0, - "bgpPeerOutTotalMessages": 0, - "bgpPeerFsmEstablishedTime": 0, - "bgpPeerInUpdateElapsedTime": 0, - "context_name": null, - "bgpLocalAs": 265086, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/3/5", + "ifName": "GigabitEthernet0/3/5", + "portName": null, + "ifIndex": 11, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "BRAT-PE1-Six_XG1/0/36", + "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 }, { - "astext": "ISI-ISP, US", - "bgpPeerIdentifier": "54.7.42.253", - "bgpPeerRemoteAs": 6162, - "bgpPeerState": "", - "bgpPeerAdminStatus": "stop", - "bgpLocalAddr": "0.0.0.0", - "bgpPeerRemoteAddr": "", - "bgpPeerDescr": "", - "bgpPeerInUpdates": 0, - "bgpPeerOutUpdates": 0, - "bgpPeerInTotalMessages": 0, - "bgpPeerOutTotalMessages": 0, - "bgpPeerFsmEstablishedTime": 0, - "bgpPeerInUpdateElapsedTime": 0, - "context_name": null, - "bgpLocalAs": 265086, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/3/6", + "ifName": "GigabitEthernet0/3/6", + "portName": null, + "ifIndex": 12, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "peering: SIX [10G]", + "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 }, { - "astext": "ISI-ISP, US", - "bgpPeerIdentifier": "54.7.42.254", - "bgpPeerRemoteAs": 6162, - "bgpPeerState": "", - "bgpPeerAdminStatus": "stop", - "bgpLocalAddr": "0.0.0.0", - "bgpPeerRemoteAddr": "", - "bgpPeerDescr": "", - "bgpPeerInUpdates": 0, - "bgpPeerOutUpdates": 0, - "bgpPeerInTotalMessages": 0, - "bgpPeerOutTotalMessages": 0, - "bgpPeerFsmEstablishedTime": 0, - "bgpPeerInUpdateElapsedTime": 0, - "context_name": null, - "bgpLocalAs": 265086, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/3/7", + "ifName": "GigabitEthernet0/3/7", + "portName": null, + "ifIndex": 13, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "transit: CDN77 & SUPERNETWORK [5G] (DWDM ch27)", + "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 }, { - "astext": "INOW-AS, US", - "bgpPeerIdentifier": "54.7.43.9", - "bgpPeerRemoteAs": 6489, - "bgpPeerState": "", - "bgpPeerAdminStatus": "stop", - "bgpLocalAddr": "0.0.0.0", - "bgpPeerRemoteAddr": "", - "bgpPeerDescr": "", - "bgpPeerInUpdates": 0, - "bgpPeerOutUpdates": 0, - "bgpPeerInTotalMessages": 0, - "bgpPeerOutTotalMessages": 0, - "bgpPeerFsmEstablishedTime": 0, - "bgpPeerInUpdateElapsedTime": 0, - "context_name": null, - "bgpLocalAs": 265086, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/3/8", + "ifName": "GigabitEthernet0/3/8", + "portName": null, + "ifIndex": 14, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "transit: COGENT [5G] (DWDM ch28)", + "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 }, { - "astext": "INOW-AS, US", - "bgpPeerIdentifier": "54.7.43.10", - "bgpPeerRemoteAs": 6489, - "bgpPeerState": "", - "bgpPeerAdminStatus": "stop", - "bgpLocalAddr": "0.0.0.0", - "bgpPeerRemoteAddr": "", - "bgpPeerDescr": "", - "bgpPeerInUpdates": 0, - "bgpPeerOutUpdates": 0, - "bgpPeerInTotalMessages": 0, - "bgpPeerOutTotalMessages": 0, - "bgpPeerFsmEstablishedTime": 0, - "bgpPeerInUpdateElapsedTime": 0, - "context_name": null, - "bgpLocalAs": 265086, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/3/9", + "ifName": "GigabitEthernet0/3/9", + "portName": null, + "ifIndex": 15, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "peering: PEERING.CZ [5G] (DWDM ch26)", + "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 }, { - "astext": "TXASHLTH, US", - "bgpPeerIdentifier": "54.7.43.82", - "bgpPeerRemoteAs": 2934, - "bgpPeerState": "", - "bgpPeerAdminStatus": "stop", - "bgpLocalAddr": "0.0.0.0", - "bgpPeerRemoteAddr": "", - "bgpPeerDescr": "", - "bgpPeerInUpdates": 0, - "bgpPeerOutUpdates": 0, - "bgpPeerInTotalMessages": 0, - "bgpPeerOutTotalMessages": 0, - "bgpPeerFsmEstablishedTime": 0, - "bgpPeerInUpdateElapsedTime": 0, - "context_name": null, - "bgpLocalAs": 265086, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/3/10", + "ifName": "GigabitEthernet0/3/10", + "portName": null, + "ifIndex": 16, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "peering: DETRONICS [10G]", + "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 }, { - "astext": "TXASHLTH, US", - "bgpPeerIdentifier": "54.7.43.83", - "bgpPeerRemoteAs": 2934, - "bgpPeerState": "", - "bgpPeerAdminStatus": "stop", - "bgpLocalAddr": "0.0.0.0", - "bgpPeerRemoteAddr": "", - "bgpPeerDescr": "", - "bgpPeerInUpdates": 0, - "bgpPeerOutUpdates": 0, - "bgpPeerInTotalMessages": 0, - "bgpPeerOutTotalMessages": 0, - "bgpPeerFsmEstablishedTime": 0, - "bgpPeerInUpdateElapsedTime": 0, - "context_name": null, - "bgpLocalAs": 265086, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/3/11", + "ifName": "GigabitEthernet0/3/11", + "portName": null, + "ifIndex": 17, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "NNI_TELEKOM", + "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 }, { - "astext": "TXASHLTH, US", - "bgpPeerIdentifier": "54.7.43.207", - "bgpPeerRemoteAs": 2934, - "bgpPeerState": "", - "bgpPeerAdminStatus": "stop", - "bgpLocalAddr": "0.0.0.0", - "bgpPeerRemoteAddr": "", - "bgpPeerDescr": "", - "bgpPeerInUpdates": 0, - "bgpPeerOutUpdates": 0, - "bgpPeerInTotalMessages": 0, - "bgpPeerOutTotalMessages": 0, - "bgpPeerFsmEstablishedTime": 0, - "bgpPeerInUpdateElapsedTime": 0, - "context_name": null, - "bgpLocalAs": 265086, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/3/12", + "ifName": "GigabitEthernet0/3/12", + "portName": null, + "ifIndex": 18, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "NNI_TELEKOM_Backup", + "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 }, { - "astext": "TXASHLTH, US", - "bgpPeerIdentifier": "54.7.43.208", - "bgpPeerRemoteAs": 2934, - "bgpPeerState": "", - "bgpPeerAdminStatus": "stop", - "bgpLocalAddr": "0.0.0.0", - "bgpPeerRemoteAddr": "", - "bgpPeerDescr": "", - "bgpPeerInUpdates": 0, - "bgpPeerOutUpdates": 0, - "bgpPeerInTotalMessages": 0, - "bgpPeerOutTotalMessages": 0, - "bgpPeerFsmEstablishedTime": 0, - "bgpPeerInUpdateElapsedTime": 0, - "context_name": null, - "bgpLocalAs": 265086, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/3/13", + "ifName": "GigabitEthernet0/3/13", + "portName": null, + "ifIndex": 19, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/3/13", + "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 }, { - "astext": "ISI-ISP, US", - "bgpPeerIdentifier": "54.7.45.253", - "bgpPeerRemoteAs": 6162, - "bgpPeerState": "", - "bgpPeerAdminStatus": "stop", - "bgpLocalAddr": "0.0.0.0", - "bgpPeerRemoteAddr": "", - "bgpPeerDescr": "", - "bgpPeerInUpdates": 0, - "bgpPeerOutUpdates": 0, - "bgpPeerInTotalMessages": 0, - "bgpPeerOutTotalMessages": 0, - "bgpPeerFsmEstablishedTime": 0, - "bgpPeerInUpdateElapsedTime": 0, - "context_name": null, - "bgpLocalAs": 265086, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/3/14", + "ifName": "GigabitEthernet0/3/14", + "portName": null, + "ifIndex": 20, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/3/14", + "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 }, { - "astext": "ISI-ISP, US", - "bgpPeerIdentifier": "54.7.45.254", - "bgpPeerRemoteAs": 6162, - "bgpPeerState": "", - "bgpPeerAdminStatus": "stop", - "bgpLocalAddr": "0.0.0.0", - "bgpPeerRemoteAddr": "", - "bgpPeerDescr": "", - "bgpPeerInUpdates": 0, - "bgpPeerOutUpdates": 0, - "bgpPeerInTotalMessages": 0, - "bgpPeerOutTotalMessages": 0, - "bgpPeerFsmEstablishedTime": 0, - "bgpPeerInUpdateElapsedTime": 0, - "context_name": null, - "bgpLocalAs": 265086, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/3/15", + "ifName": "GigabitEthernet0/3/15", + "portName": null, + "ifIndex": 21, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/3/15", + "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 }, { - "astext": "FRANCE-TELECOM-AS, EU", - "bgpPeerIdentifier": "54.7.149.45", - "bgpPeerRemoteAs": 2320, - "bgpPeerState": "", - "bgpPeerAdminStatus": "stop", - "bgpLocalAddr": "0.0.0.0", - "bgpPeerRemoteAddr": "", - "bgpPeerDescr": "", - "bgpPeerInUpdates": 0, - "bgpPeerOutUpdates": 0, - "bgpPeerInTotalMessages": 0, - "bgpPeerOutTotalMessages": 0, - "bgpPeerFsmEstablishedTime": 0, - "bgpPeerInUpdateElapsedTime": 0, - "context_name": null, - "bgpLocalAs": 265086, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/3/16", + "ifName": "GigabitEthernet0/3/16", + "portName": null, + "ifIndex": 22, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/3/16", + "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 }, { - "astext": "ASN-ATTGMS, US", - "bgpPeerIdentifier": "54.7.253.70", - "bgpPeerRemoteAs": 5075, - "bgpPeerState": "", - "bgpPeerAdminStatus": "stop", - "bgpLocalAddr": "0.0.0.0", - "bgpPeerRemoteAddr": "", - "bgpPeerDescr": "", - "bgpPeerInUpdates": 0, - "bgpPeerOutUpdates": 0, - "bgpPeerInTotalMessages": 0, - "bgpPeerOutTotalMessages": 0, - "bgpPeerFsmEstablishedTime": 0, - "bgpPeerInUpdateElapsedTime": 0, - "context_name": null, - "bgpLocalAs": 265086, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/3/17", + "ifName": "GigabitEthernet0/3/17", + "portName": null, + "ifIndex": 23, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/3/17", + "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 }, { - "astext": "VMX, CH", - "bgpPeerIdentifier": "54.7.34.6", - "bgpPeerRemoteAs": 64402, - "bgpPeerState": "", - "bgpPeerAdminStatus": "stop", - "bgpLocalAddr": "0.0.0.0", - "bgpPeerRemoteAddr": "", - "bgpPeerDescr": "", - "bgpPeerInUpdates": 0, - "bgpPeerOutUpdates": 0, - "bgpPeerInTotalMessages": 0, - "bgpPeerOutTotalMessages": 0, - "bgpPeerFsmEstablishedTime": 0, - "bgpPeerInUpdateElapsedTime": 0, - "context_name": null, - "bgpLocalAs": 265086, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/3/18", + "ifName": "GigabitEthernet0/3/18", + "portName": null, + "ifIndex": 24, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/3/18", + "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 }, { - "astext": "ROGERS-AS-8160, CA", - "bgpPeerIdentifier": "54.7.34.30", - "bgpPeerRemoteAs": 8160, - "bgpPeerState": "", - "bgpPeerAdminStatus": "stop", - "bgpLocalAddr": "0.0.0.0", - "bgpPeerRemoteAddr": "", - "bgpPeerDescr": "", - "bgpPeerInUpdates": 0, - "bgpPeerOutUpdates": 0, - "bgpPeerInTotalMessages": 0, - "bgpPeerOutTotalMessages": 0, - "bgpPeerFsmEstablishedTime": 0, - "bgpPeerInUpdateElapsedTime": 0, - "context_name": null, - "bgpLocalAs": 265086, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/3/19", + "ifName": "GigabitEthernet0/3/19", + "portName": null, + "ifIndex": 25, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/3/19", + "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 }, { - "astext": "MEMO Str. Octavian Goga nr. 109, RO", - "bgpPeerIdentifier": "54.7.253.145", - "bgpPeerRemoteAs": 8260, - "bgpPeerState": "", - "bgpPeerAdminStatus": "stop", - "bgpLocalAddr": "0.0.0.0", - "bgpPeerRemoteAddr": "", - "bgpPeerDescr": "", - "bgpPeerInUpdates": 0, - "bgpPeerOutUpdates": 0, - "bgpPeerInTotalMessages": 0, - "bgpPeerOutTotalMessages": 0, - "bgpPeerFsmEstablishedTime": 0, - "bgpPeerInUpdateElapsedTime": 0, - "context_name": null, - "bgpLocalAs": 265086, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/3/20", + "ifName": "GigabitEthernet0/3/20", + "portName": null, + "ifIndex": 26, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/3/20", + "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": "GigabitEthernet0/3/21", + "ifName": "GigabitEthernet0/3/21", + "portName": null, + "ifIndex": 27, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/3/21", + "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": "GigabitEthernet0/3/22", + "ifName": "GigabitEthernet0/3/22", + "portName": null, + "ifIndex": 28, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/3/22", + "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": "GigabitEthernet0/3/23", + "ifName": "GigabitEthernet0/3/23", + "portName": null, + "ifIndex": 29, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/3/23", + "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": "40GE0/3/0", + "ifName": "40GE0/3/0", + "portName": null, + "ifIndex": 43, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "BRAT-PE1-Six_40GE0/1/1", + "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": "40GE0/3/1", + "ifName": "40GE0/3/1", + "portName": null, + "ifIndex": 44, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "BRAT-PE1-Six_40GE1/1/1", + "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": "40GE0/3/2", + "ifName": "40GE0/3/2", + "portName": null, + "ifIndex": 45, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "40GE0/3/2", + "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": "40GE0/3/3", + "ifName": "40GE0/3/3", + "portName": null, + "ifIndex": 46, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "40GE0/3/3", + "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": "Eth-Trunk1", + "ifName": "Eth-Trunk1", + "portName": null, + "ifIndex": 47, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ieee8023adLag", + "ifAlias": "BRAT-PE1-Six [80G] (IPv4_VRF:emax_core)", + "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": "Eth-Trunk1.2", + "ifName": "Eth-Trunk1.2", + "portName": null, + "ifIndex": 48, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "BRAT-PE1-Six (IPv4_VRF:mmnet)", + "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": "Eth-Trunk2", + "ifName": "Eth-Trunk2", + "portName": null, + "ifIndex": 49, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ieee8023adLag", + "ifAlias": "BRAT-PE1-Six [20G] (IPv6_VRF:emax_core)", + "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": "LoopBack1", + "ifName": "LoopBack1", + "portName": null, + "ifIndex": 50, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "softwareLoopback", + "ifAlias": "Management_loopback", + "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": "GigabitEthernet0/3/11.1673", + "ifName": "GigabitEthernet0/3/11.1673", + "portName": null, + "ifIndex": 51, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "transit: TELEKOM_ISPC9 [3.5G]", + "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": "GigabitEthernet0/3/12.1356", + "ifName": "GigabitEthernet0/3/12.1356", + "portName": null, + "ifIndex": 52, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "transit: TELEKOM_ISPC8009 [3.5G]", + "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": "GigabitEthernet0/3/9.716", + "ifName": "GigabitEthernet0/3/9.716", + "portName": null, + "ifIndex": 53, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "transit: SUPERNETWORK [3G]", + "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 } - ], - "bgpPeers_cbgp": [] + ] }, - "poller": "matches discovery" + "poller": { + "ports": [ + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "NULL0", + "ifName": "NULL0", + "portName": null, + "ifIndex": 2, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "other", + "ifAlias": "NULL0", + "ifPhysAddress": "000000000000", + "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": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 11, + "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": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "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": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "InLoopBack0", + "ifName": "InLoopBack0", + "portName": null, + "ifIndex": 3, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "softwareLoopback", + "ifAlias": "InLoopBack0", + "ifPhysAddress": "000000000000", + "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": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "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": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "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": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/0/0", + "ifName": "GigabitEthernet0/0/0", + "portName": null, + "ifIndex": 4, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/0/0", + "ifPhysAddress": "ac8d3488f163", + "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": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "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": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "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": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/3/4", + "ifName": "GigabitEthernet0/3/4", + "portName": null, + "ifIndex": 10, + "ifSpeed": 10000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1998, + "ifType": "ethernetCsmacd", + "ifAlias": "BRAT-PE1-Six_XG0/0/36", + "ifPhysAddress": "ac8d3488f177", + "ifHardType": null, + "ifLastChange": 96754916, + "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": 17694, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 20, + "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": 7037144, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 5226176, + "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": 21496, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 21504, + "ifOutMulticastPkts_prev": 0, + "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": "GigabitEthernet0/3/5", + "ifName": "GigabitEthernet0/3/5", + "portName": null, + "ifIndex": 11, + "ifSpeed": 10000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1998, + "ifType": "ethernetCsmacd", + "ifAlias": "BRAT-PE1-Six_XG1/0/36", + "ifPhysAddress": "ac8d3488f178", + "ifHardType": null, + "ifLastChange": 96756195, + "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": 273, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 18477, + "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": 5503749, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 6859005, + "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": 21490, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 21499, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": "peering", + "port_descr_descr": "SIX", + "port_descr_circuit": null, + "port_descr_speed": "10G", + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/3/6", + "ifName": "GigabitEthernet0/3/6", + "portName": null, + "ifIndex": 12, + "ifSpeed": 10000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "peering: SIX [10G]", + "ifPhysAddress": "ac8d3488f179", + "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": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "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": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 109056, + "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": 284, + "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": "transit", + "port_descr_descr": "CDN77 & SUPERNETWORK", + "port_descr_circuit": null, + "port_descr_speed": "5G", + "port_descr_notes": "DWDM ch27", + "ifDescr": "GigabitEthernet0/3/7", + "ifName": "GigabitEthernet0/3/7", + "portName": null, + "ifIndex": 13, + "ifSpeed": 10000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "transit: CDN77 & SUPERNETWORK [5G] (DWDM ch27)", + "ifPhysAddress": "ac8d3488f17a", + "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": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "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": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 109056, + "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": 284, + "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": "transit", + "port_descr_descr": "COGENT", + "port_descr_circuit": null, + "port_descr_speed": "5G", + "port_descr_notes": "DWDM ch28", + "ifDescr": "GigabitEthernet0/3/8", + "ifName": "GigabitEthernet0/3/8", + "portName": null, + "ifIndex": 14, + "ifSpeed": 10000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "transit: COGENT [5G] (DWDM ch28)", + "ifPhysAddress": "ac8d3488f17b", + "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": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "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": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 109056, + "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": 284, + "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": "peering", + "port_descr_descr": "PEERING.CZ", + "port_descr_circuit": null, + "port_descr_speed": "5G", + "port_descr_notes": "DWDM ch26", + "ifDescr": "GigabitEthernet0/3/9", + "ifName": "GigabitEthernet0/3/9", + "portName": null, + "ifIndex": 15, + "ifSpeed": 10000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "peering: PEERING.CZ [5G] (DWDM ch26)", + "ifPhysAddress": "ac8d3488f17c", + "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": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "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": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 109056, + "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": 284, + "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": "peering", + "port_descr_descr": "DETRONICS", + "port_descr_circuit": null, + "port_descr_speed": "10G", + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/3/10", + "ifName": "GigabitEthernet0/3/10", + "portName": null, + "ifIndex": 16, + "ifSpeed": 10000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "peering: DETRONICS [10G]", + "ifPhysAddress": "ac8d3488f17d", + "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": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "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": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 109056, + "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": 284, + "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": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/3/11", + "ifName": "GigabitEthernet0/3/11", + "portName": null, + "ifIndex": 17, + "ifSpeed": 10000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "NNI_TELEKOM", + "ifPhysAddress": "ac8d3488f17e", + "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": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "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": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 109056, + "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": 284, + "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": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/3/12", + "ifName": "GigabitEthernet0/3/12", + "portName": null, + "ifIndex": 18, + "ifSpeed": 10000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "NNI_TELEKOM_Backup", + "ifPhysAddress": "ac8d3488f17f", + "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": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "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": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 109056, + "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": 284, + "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": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/3/13", + "ifName": "GigabitEthernet0/3/13", + "portName": null, + "ifIndex": 19, + "ifSpeed": 10000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/3/13", + "ifPhysAddress": "ac8d3488f180", + "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": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "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": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 109056, + "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": 284, + "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": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/3/14", + "ifName": "GigabitEthernet0/3/14", + "portName": null, + "ifIndex": 20, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/3/14", + "ifPhysAddress": "ac8d3488f181", + "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": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "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": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 109056, + "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": 284, + "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": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/3/15", + "ifName": "GigabitEthernet0/3/15", + "portName": null, + "ifIndex": 21, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/3/15", + "ifPhysAddress": "ac8d3488f182", + "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": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "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": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 109056, + "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": 284, + "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": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/3/16", + "ifName": "GigabitEthernet0/3/16", + "portName": null, + "ifIndex": 22, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/3/16", + "ifPhysAddress": "ac8d3488f183", + "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": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "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": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 109056, + "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": 284, + "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": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/3/17", + "ifName": "GigabitEthernet0/3/17", + "portName": null, + "ifIndex": 23, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/3/17", + "ifPhysAddress": "ac8d3488f184", + "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": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "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": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 109056, + "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": 284, + "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": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/3/18", + "ifName": "GigabitEthernet0/3/18", + "portName": null, + "ifIndex": 24, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/3/18", + "ifPhysAddress": "ac8d3488f185", + "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": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "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": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 109056, + "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": 284, + "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": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/3/19", + "ifName": "GigabitEthernet0/3/19", + "portName": null, + "ifIndex": 25, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/3/19", + "ifPhysAddress": "ac8d3488f186", + "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": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "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": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 109056, + "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": 284, + "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": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/3/20", + "ifName": "GigabitEthernet0/3/20", + "portName": null, + "ifIndex": 26, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/3/20", + "ifPhysAddress": "ac8d3488f187", + "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": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "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": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 109056, + "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": 284, + "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": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/3/21", + "ifName": "GigabitEthernet0/3/21", + "portName": null, + "ifIndex": 27, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/3/21", + "ifPhysAddress": "ac8d3488f188", + "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": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "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": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 109056, + "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": 284, + "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": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/3/22", + "ifName": "GigabitEthernet0/3/22", + "portName": null, + "ifIndex": 28, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/3/22", + "ifPhysAddress": "ac8d3488f189", + "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": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "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": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 109056, + "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": 284, + "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": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/3/23", + "ifName": "GigabitEthernet0/3/23", + "portName": null, + "ifIndex": 29, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0/3/23", + "ifPhysAddress": "ac8d3488f18a", + "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": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "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": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 109056, + "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": 284, + "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": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "40GE0/3/0", + "ifName": "40GE0/3/0", + "portName": null, + "ifIndex": 43, + "ifSpeed": 40000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 40000, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1998, + "ifType": "ethernetCsmacd", + "ifAlias": "BRAT-PE1-Six_40GE0/1/1", + "ifPhysAddress": "ac8d3488f173", + "ifHardType": null, + "ifLastChange": 94900111, + "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": 88911, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 130030, + "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": 12028428, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 47050931, + "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": 5, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 2, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 22727, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 22737, + "ifOutMulticastPkts_prev": 0, + "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": "40GE0/3/1", + "ifName": "40GE0/3/1", + "portName": null, + "ifIndex": 44, + "ifSpeed": 40000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 40000, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1998, + "ifType": "ethernetCsmacd", + "ifAlias": "BRAT-PE1-Six_40GE1/1/1", + "ifPhysAddress": "ac8d3488f174", + "ifHardType": null, + "ifLastChange": 94899990, + "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": 307870, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 158147, + "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": 41136536, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 49216987, + "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": 1, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 2, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 22726, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 22741, + "ifOutMulticastPkts_prev": 0, + "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": "40GE0/3/2", + "ifName": "40GE0/3/2", + "portName": null, + "ifIndex": 45, + "ifSpeed": 40000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 40000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "40GE0/3/2", + "ifPhysAddress": "ac8d3488f175", + "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": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "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": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 109056, + "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": 284, + "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": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "40GE0/3/3", + "ifName": "40GE0/3/3", + "portName": null, + "ifIndex": 46, + "ifSpeed": 40000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 40000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "40GE0/3/3", + "ifPhysAddress": "ac8d3488f176", + "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": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "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": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 109056, + "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": 284, + "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": "brat-pe1-six ", + "port_descr_descr": "80G", + "port_descr_circuit": null, + "port_descr_speed": "80G", + "port_descr_notes": "IPv4_VRF:emax_core", + "ifDescr": "Eth-Trunk1", + "ifName": "Eth-Trunk1", + "portName": null, + "ifIndex": 47, + "ifSpeed": 80000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 80000, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1998, + "ifType": "ieee8023adLag", + "ifAlias": "BRAT-PE1-Six [80G] (IPv4_VRF:emax_core)", + "ifPhysAddress": "ac8d3488f164", + "ifHardType": null, + "ifLastChange": 94900341, + "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": 396781, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 288177, + "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": 53164964, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 96267918, + "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": 6, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 4, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 45453, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 45478, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": "brat-pe1-six ", + "port_descr_descr": "IPv4_VRF", + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": "IPv4_VRF:mmnet", + "ifDescr": "Eth-Trunk1.2", + "ifName": "Eth-Trunk1.2", + "portName": null, + "ifIndex": 48, + "ifSpeed": 80000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 80000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1998, + "ifType": "l2vlan", + "ifAlias": "BRAT-PE1-Six (IPv4_VRF:mmnet)", + "ifPhysAddress": "ac8d3488f164", + "ifHardType": null, + "ifLastChange": 96554351, + "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": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "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": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "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": "brat-pe1-six ", + "port_descr_descr": "20G", + "port_descr_circuit": null, + "port_descr_speed": "20G", + "port_descr_notes": "IPv6_VRF:emax_core", + "ifDescr": "Eth-Trunk2", + "ifName": "Eth-Trunk2", + "portName": null, + "ifIndex": 49, + "ifSpeed": 20000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 20000, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1998, + "ifType": "ieee8023adLag", + "ifAlias": "BRAT-PE1-Six [20G] (IPv6_VRF:emax_core)", + "ifPhysAddress": "ac8d3488f164", + "ifHardType": null, + "ifLastChange": 96755135, + "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": 17967, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 18497, + "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": 12540893, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 12085181, + "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": 42986, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 43003, + "ifOutMulticastPkts_prev": 0, + "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": "LoopBack1", + "ifName": "LoopBack1", + "portName": null, + "ifIndex": 50, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "softwareLoopback", + "ifAlias": "Management_loopback", + "ifPhysAddress": "000000000000", + "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": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "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": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "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": "transit", + "port_descr_descr": "TELEKOM_ISPC9", + "port_descr_circuit": null, + "port_descr_speed": "3.5G", + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/3/11.1673", + "ifName": "GigabitEthernet0/3/11.1673", + "portName": null, + "ifIndex": 51, + "ifSpeed": 10000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "transit: TELEKOM_ISPC9 [3.5G]", + "ifPhysAddress": "ac8d3488f17e", + "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": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "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": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "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": "transit", + "port_descr_descr": "TELEKOM_ISPC8009", + "port_descr_circuit": null, + "port_descr_speed": "3.5G", + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/3/12.1356", + "ifName": "GigabitEthernet0/3/12.1356", + "portName": null, + "ifIndex": 52, + "ifSpeed": 10000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "transit: TELEKOM_ISPC8009 [3.5G]", + "ifPhysAddress": "ac8d3488f17f", + "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": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "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": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "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": "transit", + "port_descr_descr": "SUPERNETWORK", + "port_descr_circuit": null, + "port_descr_speed": "3G", + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0/3/9.716", + "ifName": "GigabitEthernet0/3/9.716", + "portName": null, + "ifIndex": 53, + "ifSpeed": 10000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "transit: SUPERNETWORK [3G]", + "ifPhysAddress": "ac8d3488f17c", + "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": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "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": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "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 + } + ] + } } } diff --git a/tests/snmpsim/vrp_ne.snmprec b/tests/snmpsim/vrp_ne.snmprec index a9e2f83196..9dc22bc3e4 100644 --- a/tests/snmpsim/vrp_ne.snmprec +++ b/tests/snmpsim/vrp_ne.snmprec @@ -1,701 +1,3544 @@ 1.3.6.1.2.1.1.1.0|4|Huawei Versatile Routing Platform Software -1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.2011.2.62.26 -1.3.6.1.2.1.1.3.0|67|1234530042 +1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.2011.2.62.30 +1.3.6.1.2.1.1.3.0|67|128991488 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.15.2.0|2|265086 -1.3.6.1.2.1.15.3.1.9.55.7.46.20|2|6332 -1.3.6.1.2.1.15.3.1.9.54.7.42.34|2|1659 -1.3.6.1.2.1.15.3.1.9.54.7.42.192|2|2940 -1.3.6.1.2.1.15.3.1.9.54.7.42.203|2|3335 -1.3.6.1.2.1.15.3.1.9.54.7.42.252|2|2121 -1.3.6.1.2.1.15.3.1.9.54.7.42.253|2|6162 -1.3.6.1.2.1.15.3.1.9.54.7.42.254|2|6162 -1.3.6.1.2.1.15.3.1.9.54.7.43.9|2|6489 -1.3.6.1.2.1.15.3.1.9.54.7.43.10|2|6489 -1.3.6.1.2.1.15.3.1.9.54.7.43.82|2|2934 -1.3.6.1.2.1.15.3.1.9.54.7.43.83|2|2934 -1.3.6.1.2.1.15.3.1.9.54.7.43.207|2|2934 -1.3.6.1.2.1.15.3.1.9.54.7.43.208|2|2934 -1.3.6.1.2.1.15.3.1.9.54.7.45.253|2|6162 -1.3.6.1.2.1.15.3.1.9.54.7.45.254|2|6162 -1.3.6.1.2.1.15.3.1.9.54.7.149.45|2|2320 -1.3.6.1.2.1.15.3.1.9.54.7.253.70|2|5075 -1.3.6.1.2.1.15.3.1.9.54.7.34.6|2|64402 -1.3.6.1.2.1.15.3.1.9.54.7.34.30|2|8160 -1.3.6.1.2.1.15.3.1.9.54.7.253.145|2|8260 -1.3.6.1.2.1.15.3.1.9.54.7.5.46|2|8338 -1.3.6.1.2.1.15.3.1.9.54.7.149.164|2|5075 -1.3.6.1.4.1.2011.5.25.177.1.1.1.1.6.0.1.1.1.4.55.7.46.20|4|Public -1.3.6.1.4.1.2011.5.25.177.1.1.1.1.6.0.1.1.1.4.54.7.42.34|4|Public -1.3.6.1.4.1.2011.5.25.177.1.1.1.1.6.0.1.1.1.4.54.7.42.192|4|Public -1.3.6.1.4.1.2011.5.25.177.1.1.1.1.6.0.1.1.1.4.54.7.42.203|4|Public -1.3.6.1.4.1.2011.5.25.177.1.1.1.1.6.0.1.1.1.4.54.7.42.252|4|Public -1.3.6.1.4.1.2011.5.25.177.1.1.1.1.6.0.1.1.1.4.54.7.42.253|4|Public -1.3.6.1.4.1.2011.5.25.177.1.1.1.1.6.0.1.1.1.4.54.7.42.254|4|Public -1.3.6.1.4.1.2011.5.25.177.1.1.1.1.6.0.1.1.1.4.54.7.43.9|4|Public -1.3.6.1.4.1.2011.5.25.177.1.1.1.1.6.0.1.1.1.4.54.7.43.10|4|Public -1.3.6.1.4.1.2011.5.25.177.1.1.1.1.6.0.1.1.1.4.54.7.43.82|4|Public -1.3.6.1.4.1.2011.5.25.177.1.1.1.1.6.0.1.1.1.4.54.7.43.83|4|Public -1.3.6.1.4.1.2011.5.25.177.1.1.1.1.6.0.1.1.1.4.54.7.43.207|4|Public -1.3.6.1.4.1.2011.5.25.177.1.1.1.1.6.0.1.1.1.4.54.7.43.208|4|Public -1.3.6.1.4.1.2011.5.25.177.1.1.1.1.6.0.1.1.1.4.54.7.45.253|4|Public -1.3.6.1.4.1.2011.5.25.177.1.1.1.1.6.0.1.1.1.4.54.7.45.254|4|Public -1.3.6.1.4.1.2011.5.25.177.1.1.1.1.6.0.1.1.1.4.54.7.149.45|4|Public -1.3.6.1.4.1.2011.5.25.177.1.1.1.1.6.0.1.1.1.4.54.7.253.70|4|Public -1.3.6.1.4.1.2011.5.25.177.1.1.1.1.6.0.1.1.1.4.54.7.34.6|4|Public -1.3.6.1.4.1.2011.5.25.177.1.1.1.1.6.0.1.1.1.4.54.7.34.30|4|Public -1.3.6.1.4.1.2011.5.25.177.1.1.1.1.6.0.1.1.1.4.54.7.253.145|4|Public -1.3.6.1.4.1.2011.5.25.177.1.1.1.1.6.0.1.1.1.4.54.7.5.46|4|Public -1.3.6.1.4.1.2011.5.25.177.1.1.1.1.6.0.1.1.1.4.54.7.149.164|4|Public -1.3.6.1.4.1.2011.5.25.177.1.1.1.1.6.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.0.0.52|4|PublicV6 -1.3.6.1.4.1.2011.5.25.177.1.1.1.1.6.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.0.2.3|4|PublicV6 -1.3.6.1.4.1.2011.5.25.177.1.1.1.1.6.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.82.2.82|4|PublicV6 -1.3.6.1.4.1.2011.5.25.177.1.1.1.1.6.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.82.2.83|4|PublicV6 -1.3.6.1.4.1.2011.5.25.177.1.1.1.1.6.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.82.2.84|4|PublicV6 -1.3.6.1.4.1.2011.5.25.177.1.1.1.1.6.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.9|4|PublicV6 -1.3.6.1.4.1.2011.5.25.177.1.1.1.1.6.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.16|4|PublicV6 -1.3.6.1.4.1.2011.5.25.177.1.1.1.1.6.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.130|4|PublicV6 -1.3.6.1.4.1.2011.5.25.177.1.1.1.1.6.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.131|4|PublicV6 -1.3.6.1.4.1.2011.5.25.177.1.1.1.1.6.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.2.7|4|PublicV6 -1.3.6.1.4.1.2011.5.25.177.1.1.1.1.6.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.2.8|4|PublicV6 -1.3.6.1.4.1.2011.5.25.177.1.1.1.1.6.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.85.2.83|4|PublicV6 -1.3.6.1.4.1.2011.5.25.177.1.1.1.1.6.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.85.2.84|4|PublicV6 -1.3.6.1.4.1.2011.5.25.177.1.1.1.1.6.0.2.1.2.16.40.4.40.224.0.0.0.97.0.0.0.0.0.0.0.1|4|PublicV6 -1.3.6.1.4.1.2011.5.25.177.1.1.1.1.6.0.2.1.2.16.40.4.79.122.2.0.0.96.0.96.17.37.0.0.0.2|4|PublicV6 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.1.0.1.1.1.4.55.7.46.20|66|4 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.1.0.1.1.1.4.54.7.42.34|66|4 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.1.0.1.1.1.4.54.7.42.192|66|4 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.1.0.1.1.1.4.54.7.42.203|66|4 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.1.0.1.1.1.4.54.7.42.252|66|4 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.1.0.1.1.1.4.54.7.42.253|66|4 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.1.0.1.1.1.4.54.7.42.254|66|4 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.1.0.1.1.1.4.54.7.43.9|66|4 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.1.0.1.1.1.4.54.7.43.10|66|4 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.1.0.1.1.1.4.54.7.43.82|66|4 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.1.0.1.1.1.4.54.7.43.83|66|4 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.1.0.1.1.1.4.54.7.43.207|66|4 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.1.0.1.1.1.4.54.7.43.208|66|4 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.1.0.1.1.1.4.54.7.45.253|66|4 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.1.0.1.1.1.4.54.7.45.254|66|4 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.1.0.1.1.1.4.54.7.149.45|66|4 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.1.0.1.1.1.4.54.7.253.70|66|4 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.1.0.1.1.1.4.54.7.34.6|66|4 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.1.0.1.1.1.4.54.7.34.30|66|4 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.1.0.1.1.1.4.54.7.253.145|66|4 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.1.0.1.1.1.4.54.7.5.46|66|4 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.1.0.1.1.1.4.54.7.149.164|66|4 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.1.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.0.0.52|66|4 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.1.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.0.2.3|66|4 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.1.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.82.2.82|66|4 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.1.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.82.2.83|66|4 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.1.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.82.2.84|66|4 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.1.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.9|66|4 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.1.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.16|66|4 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.1.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.130|66|4 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.1.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.131|66|4 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.1.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.2.7|66|4 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.1.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.2.8|66|4 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.1.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.85.2.83|66|4 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.1.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.85.2.84|66|4 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.1.0.2.1.2.16.40.4.40.224.0.0.0.97.0.0.0.0.0.0.0.1|66|4 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.1.0.2.1.2.16.40.4.79.122.2.0.0.96.0.96.17.37.0.0.0.2|66|4 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.2.0.1.1.1.4.55.7.46.20|66|6332 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.2.0.1.1.1.4.54.7.42.34|66|1659 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.2.0.1.1.1.4.54.7.42.192|66|2940 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.2.0.1.1.1.4.54.7.42.203|66|3335 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.2.0.1.1.1.4.54.7.42.252|66|2121 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.2.0.1.1.1.4.54.7.42.253|66|6162 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.2.0.1.1.1.4.54.7.42.254|66|6162 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.2.0.1.1.1.4.54.7.43.9|66|6489 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.2.0.1.1.1.4.54.7.43.10|66|6489 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.2.0.1.1.1.4.54.7.43.82|66|2934 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.2.0.1.1.1.4.54.7.43.83|66|2934 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.2.0.1.1.1.4.54.7.43.207|66|2934 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.2.0.1.1.1.4.54.7.43.208|66|2934 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.2.0.1.1.1.4.54.7.45.253|66|6162 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.2.0.1.1.1.4.54.7.45.254|66|6162 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.2.0.1.1.1.4.54.7.149.45|66|2320 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.2.0.1.1.1.4.54.7.253.70|66|5075 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.2.0.1.1.1.4.54.7.34.6|66|64402 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.2.0.1.1.1.4.54.7.34.30|66|8160 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.2.0.1.1.1.4.54.7.253.145|66|8260 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.2.0.1.1.1.4.54.7.5.46|66|8338 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.2.0.1.1.1.4.54.7.149.164|66|5075 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.2.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.0.0.52|66|1659 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.2.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.0.2.3|66|2940 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.2.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.82.2.82|66|2121 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.2.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.82.2.83|66|6162 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.2.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.82.2.84|66|6162 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.2.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.9|66|6489 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.2.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.16|66|6489 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.2.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.130|66|2934 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.2.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.131|66|2934 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.2.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.2.7|66|2934 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.2.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.2.8|66|2934 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.2.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.85.2.83|66|6162 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.2.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.85.2.84|66|6162 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.2.0.2.1.2.16.40.4.40.224.0.0.0.97.0.0.0.0.0.0.0.1|66|8260 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.2.0.2.1.2.16.40.4.79.122.2.0.0.96.0.96.17.37.0.0.0.2|66|2320 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.4.0.1.1.1.4.55.7.46.20|4|55.7.46.20 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.4.0.1.1.1.4.54.7.42.34|4|54.7.42.34 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.4.0.1.1.1.4.54.7.42.192|4|54.7.42.192 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.4.0.1.1.1.4.54.7.42.203|4|54.7.42.203 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.4.0.1.1.1.4.54.7.42.252|4|54.7.42.252 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.4.0.1.1.1.4.54.7.42.253|4|54.7.42.253 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.4.0.1.1.1.4.54.7.42.254|4|54.7.42.254 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.4.0.1.1.1.4.54.7.43.9|4|54.7.43.9 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.4.0.1.1.1.4.54.7.43.10|4|54.7.43.10 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.4.0.1.1.1.4.54.7.43.82|4|54.7.43.82 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.4.0.1.1.1.4.54.7.43.83|4|54.7.43.83 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.4.0.1.1.1.4.54.7.43.207|4|54.7.43.207 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.4.0.1.1.1.4.54.7.43.208|4|54.7.43.208 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.4.0.1.1.1.4.54.7.45.253|4|54.7.45.253 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.4.0.1.1.1.4.54.7.45.254|4|54.7.45.254 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.4.0.1.1.1.4.54.7.149.45|4|54.7.149.45 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.4.0.1.1.1.4.54.7.253.70|4|54.7.253.70 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.4.0.1.1.1.4.54.7.34.6|4|54.7.34.6 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.4.0.1.1.1.4.54.7.34.30|4|54.7.34.30 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.4.0.1.1.1.4.54.7.253.145|4|54.7.253.145 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.4.0.1.1.1.4.54.7.5.46|4|54.7.5.46 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.4.0.1.1.1.4.54.7.149.164|4|54.7.149.164 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.4.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.0.0.52|4|2001:12F8:0:2::34 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.4.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.0.2.3|4|2001:12F8:0:2::203 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.4.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.82.2.82|4|2001:12F8:0:2::52:252 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.4.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.82.2.83|4|2001:12F8:0:2::52:253 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.4.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.82.2.84|4|2001:12F8:0:2::52:254 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.4.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.9|4|2001:12F8:0:2::53:9 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.4.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.16|4|2001:12F8:0:2::53:10 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.4.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.130|4|2001:12F8:0:2::53:82 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.4.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.131|4|2001:12F8:0:2::53:83 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.4.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.2.7|4|2001:12F8:0:2::53:207 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.4.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.2.8|4|2001:12F8:0:2::53:208 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.4.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.85.2.83|4|2001:12F8:0:2::55:253 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.4.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.85.2.84|4|2001:12F8:0:2::55:254 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.4.0.2.1.2.16.40.4.40.224.0.0.0.97.0.0.0.0.0.0.0.1|4|2804:28E4:0:61::1 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.4.0.2.1.2.16.40.4.79.122.2.0.0.96.0.96.17.37.0.0.0.2|4|2804:4F7C:200:60:60:1125::2 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.5.0.1.1.1.4.55.7.46.20|2|6 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.5.0.1.1.1.4.54.7.42.34|2|6 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.5.0.1.1.1.4.54.7.42.192|2|6 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.5.0.1.1.1.4.54.7.42.203|2|6 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.5.0.1.1.1.4.54.7.42.252|2|6 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.5.0.1.1.1.4.54.7.42.253|2|6 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.5.0.1.1.1.4.54.7.42.254|2|6 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.5.0.1.1.1.4.54.7.43.9|2|6 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.5.0.1.1.1.4.54.7.43.10|2|6 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.5.0.1.1.1.4.54.7.43.82|2|6 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.5.0.1.1.1.4.54.7.43.83|2|6 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.5.0.1.1.1.4.54.7.43.207|2|6 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.5.0.1.1.1.4.54.7.43.208|2|6 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.5.0.1.1.1.4.54.7.45.253|2|6 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.5.0.1.1.1.4.54.7.45.254|2|6 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.5.0.1.1.1.4.54.7.149.45|2|6 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.5.0.1.1.1.4.54.7.253.70|2|6 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.5.0.1.1.1.4.54.7.34.6|2|6 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.5.0.1.1.1.4.54.7.34.30|2|6 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.5.0.1.1.1.4.54.7.253.145|2|6 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.5.0.1.1.1.4.54.7.5.46|2|1 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.5.0.1.1.1.4.54.7.149.164|2|6 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.5.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.0.0.52|2|2 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.5.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.0.2.3|2|2 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.5.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.82.2.82|2|6 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.5.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.82.2.83|2|6 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.5.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.82.2.84|2|6 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.5.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.9|2|6 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.5.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.16|2|6 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.5.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.130|2|6 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.5.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.131|2|6 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.5.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.2.7|2|6 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.5.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.2.8|2|6 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.5.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.85.2.83|2|6 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.5.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.85.2.84|2|6 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.5.0.2.1.2.16.40.4.40.224.0.0.0.97.0.0.0.0.0.0.0.1|2|6 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.5.0.2.1.2.16.40.4.79.122.2.0.0.96.0.96.17.37.0.0.0.2|2|1 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.6.0.1.1.1.4.55.7.46.20|66|25 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.6.0.1.1.1.4.54.7.42.34|66|176 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.6.0.1.1.1.4.54.7.42.192|66|14 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.6.0.1.1.1.4.54.7.42.203|66|84 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.6.0.1.1.1.4.54.7.42.252|66|32 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.6.0.1.1.1.4.54.7.42.253|66|46 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.6.0.1.1.1.4.54.7.42.254|66|38 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.6.0.1.1.1.4.54.7.43.9|66|25 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.6.0.1.1.1.4.54.7.43.10|66|24 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.6.0.1.1.1.4.54.7.43.82|66|28 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.6.0.1.1.1.4.54.7.43.83|66|35 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.6.0.1.1.1.4.54.7.43.207|66|33 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.6.0.1.1.1.4.54.7.43.208|66|28 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.6.0.1.1.1.4.54.7.45.253|66|40 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.6.0.1.1.1.4.54.7.45.254|66|37 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.6.0.1.1.1.4.54.7.149.45|66|14 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.6.0.1.1.1.4.54.7.253.70|66|47 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.6.0.1.1.1.4.54.7.34.6|66|31 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.6.0.1.1.1.4.54.7.34.30|66|41 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.6.0.1.1.1.4.54.7.253.145|66|8 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.6.0.1.1.1.4.54.7.5.46|66|137 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.6.0.1.1.1.4.54.7.149.164|66|144 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.6.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.0.0.52|66|0 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.6.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.0.2.3|66|0 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.6.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.82.2.82|66|32 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.6.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.82.2.83|66|56 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.6.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.82.2.84|66|33 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.6.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.9|66|29 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.6.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.16|66|26 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.6.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.130|66|37 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.6.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.131|66|68 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.6.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.2.7|66|42 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.6.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.2.8|66|34 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.6.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.85.2.83|66|42 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.6.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.85.2.84|66|34 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.6.0.2.1.2.16.40.4.40.224.0.0.0.97.0.0.0.0.0.0.0.1|66|8 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.6.0.2.1.2.16.40.4.79.122.2.0.0.96.0.96.17.37.0.0.0.2|66|0 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.7.0.1.1.1.4.55.7.46.20|66|2239039 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.7.0.1.1.1.4.54.7.42.34|66|1106624 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.7.0.1.1.1.4.54.7.42.192|66|2239053 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.7.0.1.1.1.4.54.7.42.203|66|1106605 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.7.0.1.1.1.4.54.7.42.252|66|185501 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.7.0.1.1.1.4.54.7.42.253|66|2239059 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.7.0.1.1.1.4.54.7.42.254|66|647542 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.7.0.1.1.1.4.54.7.43.9|66|1106581 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.7.0.1.1.1.4.54.7.43.10|66|1163957 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.7.0.1.1.1.4.54.7.43.82|66|1106635 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.7.0.1.1.1.4.54.7.43.83|66|1106625 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.7.0.1.1.1.4.54.7.43.207|66|236191 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.7.0.1.1.1.4.54.7.43.208|66|1106633 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.7.0.1.1.1.4.54.7.45.253|66|2239058 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.7.0.1.1.1.4.54.7.45.254|66|2236958 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.7.0.1.1.1.4.54.7.149.45|66|2225448 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.7.0.1.1.1.4.54.7.253.70|66|843900 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.7.0.1.1.1.4.54.7.34.6|66|858555 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.7.0.1.1.1.4.54.7.34.30|66|734 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.7.0.1.1.1.4.54.7.253.145|66|2178112 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.7.0.1.1.1.4.54.7.5.46|66|0 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.7.0.1.1.1.4.54.7.149.164|66|150245 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.7.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.0.0.52|66|0 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.7.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.0.2.3|66|0 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.7.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.82.2.82|66|647723 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.7.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.82.2.83|66|648074 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.7.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.82.2.84|66|647552 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.7.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.9|66|648111 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.7.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.16|66|648210 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.7.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.130|66|647858 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.7.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.131|66|647535 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.7.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.2.7|66|236187 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.7.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.2.8|66|647735 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.7.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.85.2.83|66|1106603 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.7.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.85.2.84|66|647476 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.7.0.2.1.2.16.40.4.40.224.0.0.0.97.0.0.0.0.0.0.0.1|66|2239049 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.7.0.2.1.2.16.40.4.79.122.2.0.0.96.0.96.17.37.0.0.0.2|66|0 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.9.0.1.1.1.4.55.7.46.20|4x|0400 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.9.0.1.1.1.4.54.7.42.34|4x|0400 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.9.0.1.1.1.4.54.7.42.192|4x|0605 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.9.0.1.1.1.4.54.7.42.203|4x|0400 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.9.0.1.1.1.4.54.7.42.252|4x|0500 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.9.0.1.1.1.4.54.7.42.253|4x|0600 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.9.0.1.1.1.4.54.7.42.254|4x|0500 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.9.0.1.1.1.4.54.7.43.9|4x|0400 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.9.0.1.1.1.4.54.7.43.10|4x|0400 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.9.0.1.1.1.4.54.7.43.82|4x|0400 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.9.0.1.1.1.4.54.7.43.83|4x|0400 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.9.0.1.1.1.4.54.7.43.207|4x|0400 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.9.0.1.1.1.4.54.7.43.208|4x|0400 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.9.0.1.1.1.4.54.7.45.253|4x|0400 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.9.0.1.1.1.4.54.7.45.254|4x|0400 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.9.0.1.1.1.4.54.7.149.45|4x|0605 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.9.0.1.1.1.4.54.7.253.70|4x|0400 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.9.0.1.1.1.4.54.7.34.6|4x|0500 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.9.0.1.1.1.4.54.7.34.30|4x|0500 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.9.0.1.1.1.4.54.7.253.145|4x|0400 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.9.0.1.1.1.4.54.7.5.46|4x|0400 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.9.0.1.1.1.4.54.7.149.164|4x|0500 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.9.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.0.0.52|4x|0000 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.9.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.0.2.3|4x|0202 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.9.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.82.2.82|4x|0400 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.9.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.82.2.83|4x|0400 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.9.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.82.2.84|4x|0400 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.9.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.9|4x|0400 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.9.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.16|4x|0400 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.9.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.130|4x|0400 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.9.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.131|4x|0400 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.9.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.2.7|4x|0400 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.9.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.2.8|4x|0500 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.9.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.85.2.83|4x|0500 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.9.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.85.2.84|4x|0400 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.9.0.2.1.2.16.40.4.40.224.0.0.0.97.0.0.0.0.0.0.0.1|4x|0400 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.9.0.2.1.2.16.40.4.79.122.2.0.0.96.0.96.17.37.0.0.0.2|4x|0000 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.10.0.1.1.1.4.55.7.46.20|66|0 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.10.0.1.1.1.4.54.7.42.34|66|0 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.10.0.1.1.1.4.54.7.42.192|66|0 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.10.0.1.1.1.4.54.7.42.203|66|0 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.10.0.1.1.1.4.54.7.42.252|66|0 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.10.0.1.1.1.4.54.7.42.253|66|0 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.10.0.1.1.1.4.54.7.42.254|66|0 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.10.0.1.1.1.4.54.7.43.9|66|0 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.10.0.1.1.1.4.54.7.43.10|66|0 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.10.0.1.1.1.4.54.7.43.82|66|0 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.10.0.1.1.1.4.54.7.43.83|66|0 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.10.0.1.1.1.4.54.7.43.207|66|0 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.10.0.1.1.1.4.54.7.43.208|66|0 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.10.0.1.1.1.4.54.7.45.253|66|0 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.10.0.1.1.1.4.54.7.45.254|66|0 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.10.0.1.1.1.4.54.7.149.45|66|0 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.10.0.1.1.1.4.54.7.253.70|66|0 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.10.0.1.1.1.4.54.7.34.6|66|0 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.10.0.1.1.1.4.54.7.34.30|66|0 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.10.0.1.1.1.4.54.7.253.145|66|0 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.10.0.1.1.1.4.54.7.5.46|66|6 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.10.0.1.1.1.4.54.7.149.164|66|0 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.10.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.0.0.52|66|0 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.10.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.0.2.3|66|0 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.10.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.82.2.82|66|0 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.10.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.82.2.83|66|0 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.10.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.82.2.84|66|0 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.10.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.9|66|0 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.10.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.16|66|0 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.10.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.130|66|0 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.10.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.131|66|0 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.10.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.2.7|66|0 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.10.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.2.8|66|0 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.10.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.85.2.83|66|0 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.10.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.85.2.84|66|0 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.10.0.2.1.2.16.40.4.40.224.0.0.0.97.0.0.0.0.0.0.0.1|66|0 -1.3.6.1.4.1.2011.5.25.177.1.1.2.1.10.0.2.1.2.16.40.4.79.122.2.0.0.96.0.96.17.37.0.0.0.2|66|0 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.1.0.1.1.1.4.55.7.46.20|65|154 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.1.0.1.1.1.4.54.7.42.34|65|0 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.1.0.1.1.1.4.54.7.42.192|65|29 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.1.0.1.1.1.4.54.7.42.203|65|309 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.1.0.1.1.1.4.54.7.42.252|65|0 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.1.0.1.1.1.4.54.7.42.253|65|24922 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.1.0.1.1.1.4.54.7.42.254|65|22916 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.1.0.1.1.1.4.54.7.43.9|65|4 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.1.0.1.1.1.4.54.7.43.10|65|4 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.1.0.1.1.1.4.54.7.43.82|65|41 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.1.0.1.1.1.4.54.7.43.83|65|41 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.1.0.1.1.1.4.54.7.43.207|65|41 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.1.0.1.1.1.4.54.7.43.208|65|41 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.1.0.1.1.1.4.54.7.45.253|65|24716 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.1.0.1.1.1.4.54.7.45.254|65|23187 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.1.0.1.1.1.4.54.7.149.45|65|795674 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.1.0.1.1.1.4.54.7.253.70|65|14498 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.1.0.1.1.1.4.54.7.34.6|65|3 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.1.0.1.1.1.4.54.7.34.30|65|5 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.1.0.1.1.1.4.54.7.253.145|65|804629 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.1.0.1.1.1.4.54.7.5.46|65|0 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.1.0.1.1.1.4.54.7.149.164|65|14500 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.1.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.0.0.52|65|0 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.1.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.0.2.3|65|0 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.1.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.82.2.82|65|0 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.1.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.82.2.83|65|4088 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.1.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.82.2.84|65|3903 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.1.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.9|65|2 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.1.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.16|65|0 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.1.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.130|65|26 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.1.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.131|65|26 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.1.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.2.7|65|26 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.1.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.2.8|65|26 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.1.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.85.2.83|65|4047 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.1.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.85.2.84|65|3910 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.1.0.2.1.2.16.40.4.40.224.0.0.0.97.0.0.0.0.0.0.0.1|65|79197 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.1.0.2.1.2.16.40.4.79.122.2.0.0.96.0.96.17.37.0.0.0.2|65|0 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.2.0.1.1.1.4.55.7.46.20|65|154 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.2.0.1.1.1.4.54.7.42.34|65|0 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.2.0.1.1.1.4.54.7.42.192|65|0 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.2.0.1.1.1.4.54.7.42.203|65|0 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.2.0.1.1.1.4.54.7.42.252|65|0 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.2.0.1.1.1.4.54.7.42.253|65|537 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.2.0.1.1.1.4.54.7.42.254|65|0 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.2.0.1.1.1.4.54.7.43.9|65|0 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.2.0.1.1.1.4.54.7.43.10|65|0 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.2.0.1.1.1.4.54.7.43.82|65|0 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.2.0.1.1.1.4.54.7.43.83|65|0 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.2.0.1.1.1.4.54.7.43.207|65|0 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.2.0.1.1.1.4.54.7.43.208|65|0 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.2.0.1.1.1.4.54.7.45.253|65|0 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.2.0.1.1.1.4.54.7.45.254|65|0 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.2.0.1.1.1.4.54.7.149.45|65|795672 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.2.0.1.1.1.4.54.7.253.70|65|14068 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.2.0.1.1.1.4.54.7.34.6|65|3 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.2.0.1.1.1.4.54.7.34.30|65|5 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.2.0.1.1.1.4.54.7.253.145|65|9114 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.2.0.1.1.1.4.54.7.5.46|65|0 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.2.0.1.1.1.4.54.7.149.164|65|9 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.2.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.0.0.52|65|0 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.2.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.0.2.3|65|0 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.2.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.82.2.82|65|0 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.2.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.82.2.83|65|4084 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.2.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.82.2.84|65|18 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.2.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.9|65|2 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.2.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.16|65|0 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.2.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.130|65|0 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.2.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.131|65|0 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.2.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.2.7|65|0 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.2.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.2.8|65|8 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.2.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.85.2.83|65|1 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.2.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.85.2.84|65|4 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.2.0.2.1.2.16.40.4.40.224.0.0.0.97.0.0.0.0.0.0.0.1|65|75141 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.2.0.2.1.2.16.40.4.79.122.2.0.0.96.0.96.17.37.0.0.0.2|65|0 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.3.0.1.1.1.4.55.7.46.20|65|0 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.3.0.1.1.1.4.54.7.42.34|65|7 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.3.0.1.1.1.4.54.7.42.192|65|7 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.3.0.1.1.1.4.54.7.42.203|65|7 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.3.0.1.1.1.4.54.7.42.252|65|0 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.3.0.1.1.1.4.54.7.42.253|65|15 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.3.0.1.1.1.4.54.7.42.254|65|15 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.3.0.1.1.1.4.54.7.43.9|65|7 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.3.0.1.1.1.4.54.7.43.10|65|7 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.3.0.1.1.1.4.54.7.43.82|65|7 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.3.0.1.1.1.4.54.7.43.83|65|7 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.3.0.1.1.1.4.54.7.43.207|65|7 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.3.0.1.1.1.4.54.7.43.208|65|7 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.3.0.1.1.1.4.54.7.45.253|65|15 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.3.0.1.1.1.4.54.7.45.254|65|15 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.3.0.1.1.1.4.54.7.149.45|65|5 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.3.0.1.1.1.4.54.7.253.70|65|819406 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.3.0.1.1.1.4.54.7.34.6|65|0 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.3.0.1.1.1.4.54.7.34.30|65|806194 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.3.0.1.1.1.4.54.7.253.145|65|7 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.3.0.1.1.1.4.54.7.5.46|65|0 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.3.0.1.1.1.4.54.7.149.164|65|819406 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.3.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.0.0.52|65|0 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.3.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.0.2.3|65|0 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.3.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.82.2.82|65|1 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.3.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.82.2.83|65|1 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.3.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.82.2.84|65|1 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.3.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.9|65|0 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.3.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.16|65|0 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.3.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.130|65|0 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.3.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.131|65|0 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.3.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.2.7|65|0 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.3.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.2.8|65|0 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.3.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.85.2.83|65|1 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.3.0.2.1.2.16.32.1.18.244.0.0.0.2.0.0.0.0.0.85.2.84|65|1 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.3.0.2.1.2.16.40.4.40.224.0.0.0.97.0.0.0.0.0.0.0.1|65|1 -1.3.6.1.4.1.2011.5.25.177.1.1.3.1.3.0.2.1.2.16.40.4.79.122.2.0.0.96.0.96.17.37.0.0.0.2|65|0 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.4.0.0.4.54.7.66.20|65|3 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.4.0.0.4.55.7.46.20|65|25 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.4.0.0.4.54.7.42.34|65|176 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.4.0.0.4.54.7.42.192|65|14 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.4.0.0.4.54.7.42.203|65|84 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.4.0.0.4.54.7.42.252|65|32 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.4.0.0.4.54.7.42.253|65|46 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.4.0.0.4.54.7.42.254|65|38 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.4.0.0.4.54.7.43.9|65|25 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.4.0.0.4.54.7.43.10|65|24 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.4.0.0.4.54.7.43.82|65|28 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.4.0.0.4.54.7.43.83|65|35 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.4.0.0.4.54.7.43.207|65|33 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.4.0.0.4.54.7.43.208|65|28 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.4.0.0.4.54.7.45.253|65|40 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.4.0.0.4.54.7.45.254|65|37 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.4.0.0.4.54.7.149.45|65|14 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.4.0.0.4.54.7.253.70|65|47 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.4.0.0.4.54.7.34.6|65|31 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.4.0.0.4.54.7.34.30|65|41 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.4.0.0.4.54.7.253.145|65|8 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.4.0.0.4.54.7.5.46|65|137 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.4.0.0.4.54.7.149.164|65|144 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.4.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.0.0.52|65|0 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.4.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.0.2.3|65|0 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.4.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.82.2.82|65|32 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.4.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.82.2.83|65|56 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.4.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.82.2.84|65|33 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.4.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.9|65|29 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.4.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.16|65|26 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.4.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.130|65|37 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.4.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.131|65|68 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.4.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.2.7|65|42 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.4.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.2.8|65|34 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.4.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.85.2.83|65|42 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.4.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.85.2.84|65|34 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.4.0.0.16.40.4.40.224.0.0.0.97.0.0.0.0.0.0.0.1|65|8 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.4.0.0.16.40.4.79.122.2.0.0.96.0.96.17.37.0.0.0.2|65|0 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.5.0.0.4.54.7.66.20|65|3 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.5.0.0.4.55.7.46.20|65|24 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.5.0.0.4.54.7.42.34|65|175 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.5.0.0.4.54.7.42.192|65|13 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.5.0.0.4.54.7.42.203|65|83 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.5.0.0.4.54.7.42.252|65|31 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.5.0.0.4.54.7.42.253|65|45 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.5.0.0.4.54.7.42.254|65|37 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.5.0.0.4.54.7.43.9|65|24 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.5.0.0.4.54.7.43.10|65|23 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.5.0.0.4.54.7.43.82|65|27 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.5.0.0.4.54.7.43.83|65|34 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.5.0.0.4.54.7.43.207|65|32 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.5.0.0.4.54.7.43.208|65|27 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.5.0.0.4.54.7.45.253|65|39 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.5.0.0.4.54.7.45.254|65|36 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.5.0.0.4.54.7.149.45|65|13 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.5.0.0.4.54.7.253.70|65|46 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.5.0.0.4.54.7.34.6|65|30 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.5.0.0.4.54.7.34.30|65|40 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.5.0.0.4.54.7.253.145|65|7 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.5.0.0.4.54.7.5.46|65|137 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.5.0.0.4.54.7.149.164|65|143 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.5.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.0.0.52|65|0 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.5.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.0.2.3|65|0 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.5.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.82.2.82|65|31 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.5.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.82.2.83|65|55 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.5.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.82.2.84|65|32 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.5.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.9|65|28 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.5.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.16|65|25 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.5.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.130|65|36 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.5.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.131|65|67 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.5.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.2.7|65|41 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.5.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.2.8|65|33 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.5.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.85.2.83|65|41 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.5.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.85.2.84|65|33 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.5.0.0.16.40.4.40.224.0.0.0.97.0.0.0.0.0.0.0.1|65|7 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.5.0.0.16.40.4.79.122.2.0.0.96.0.96.17.37.0.0.0.2|65|0 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.6.0.0.4.54.7.66.20|65|0 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.6.0.0.4.55.7.46.20|65|119 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.6.0.0.4.54.7.42.34|65|0 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.6.0.0.4.54.7.42.192|65|150 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.6.0.0.4.54.7.42.203|65|799 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.6.0.0.4.54.7.42.252|65|1 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.6.0.0.4.54.7.42.253|65|322121 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.6.0.0.4.54.7.42.254|65|167660 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.6.0.0.4.54.7.43.9|65|4 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.6.0.0.4.54.7.43.10|65|4 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.6.0.0.4.54.7.43.82|65|57 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.6.0.0.4.54.7.43.83|65|57 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.6.0.0.4.54.7.43.207|65|6 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.6.0.0.4.54.7.43.208|65|57 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.6.0.0.4.54.7.45.253|65|331800 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.6.0.0.4.54.7.45.254|65|502373 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.6.0.0.4.54.7.149.45|65|10548031 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.6.0.0.4.54.7.253.70|65|2251 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.6.0.0.4.54.7.34.6|65|2 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.6.0.0.4.54.7.34.30|65|1 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.6.0.0.4.54.7.253.145|65|6700261 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.6.0.0.4.54.7.5.46|65|0 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.6.0.0.4.54.7.149.164|65|4363 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.6.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.0.0.52|65|0 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.6.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.0.2.3|65|0 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.6.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.82.2.82|65|1 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.6.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.82.2.83|65|47527 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.6.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.82.2.84|65|574090 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.6.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.9|65|2 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.6.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.16|65|2 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.6.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.130|65|31 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.6.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.131|65|31 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.6.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.2.7|65|10 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.6.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.2.8|65|31 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.6.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.85.2.83|65|49529 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.6.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.85.2.84|65|326230 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.6.0.0.16.40.4.40.224.0.0.0.97.0.0.0.0.0.0.0.1|65|3344916 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.6.0.0.16.40.4.79.122.2.0.0.96.0.96.17.37.0.0.0.2|65|0 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.7.0.0.4.54.7.66.20|65|0 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.7.0.0.4.55.7.46.20|65|1 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.7.0.0.4.54.7.42.34|65|5 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.7.0.0.4.54.7.42.192|65|9 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.7.0.0.4.54.7.42.203|65|5 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.7.0.0.4.54.7.42.252|65|1 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.7.0.0.4.54.7.42.253|65|39 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.7.0.0.4.54.7.42.254|65|8 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.7.0.0.4.54.7.43.9|65|5 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.7.0.0.4.54.7.43.10|65|5 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.7.0.0.4.54.7.43.82|65|5 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.7.0.0.4.54.7.43.83|65|5 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.7.0.0.4.54.7.43.207|65|3 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.7.0.0.4.54.7.43.208|65|5 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.7.0.0.4.54.7.45.253|65|39 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.7.0.0.4.54.7.45.254|65|39 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.7.0.0.4.54.7.149.45|65|17 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.7.0.0.4.54.7.253.70|65|2279853 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.7.0.0.4.54.7.34.6|65|1 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.7.0.0.4.54.7.34.30|65|406173 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.7.0.0.4.54.7.253.145|65|36 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.7.0.0.4.54.7.5.46|65|0 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.7.0.0.4.54.7.149.164|65|731439 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.7.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.0.0.52|65|0 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.7.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.0.2.3|65|0 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.7.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.82.2.82|65|2 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.7.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.82.2.83|65|2 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.7.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.82.2.84|65|2 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.7.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.9|65|1 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.7.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.16|65|1 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.7.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.130|65|1 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.7.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.131|65|1 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.7.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.2.7|65|1 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.7.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.2.8|65|1 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.7.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.85.2.83|65|2 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.7.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.85.2.84|65|2 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.7.0.0.16.40.4.40.224.0.0.0.97.0.0.0.0.0.0.0.1|65|2 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.7.0.0.16.40.4.79.122.2.0.0.96.0.96.17.37.0.0.0.2|65|0 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.8.0.0.4.54.7.66.20|65|0 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.8.0.0.4.55.7.46.20|65|41130 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.8.0.0.4.54.7.42.34|65|38791 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.8.0.0.4.54.7.42.192|65|77941 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.8.0.0.4.54.7.42.203|65|38956 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.8.0.0.4.54.7.42.252|65|6973 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.8.0.0.4.54.7.42.253|65|322383 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.8.0.0.4.54.7.42.254|65|179985 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.8.0.0.4.54.7.43.9|65|18448 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.8.0.0.4.54.7.43.10|65|19404 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.8.0.0.4.54.7.43.82|65|38035 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.8.0.0.4.54.7.43.83|65|38016 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.8.0.0.4.54.7.43.207|65|8173 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.8.0.0.4.54.7.43.208|65|38324 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.8.0.0.4.54.7.45.253|65|332059 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.8.0.0.4.54.7.45.254|65|545019 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.8.0.0.4.54.7.149.45|65|10625591 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.8.0.0.4.54.7.253.70|65|18311 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.8.0.0.4.54.7.34.6|65|16351 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.8.0.0.4.54.7.34.30|65|16 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.8.0.0.4.54.7.253.145|65|6700535 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.8.0.0.4.54.7.5.46|65|0 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.8.0.0.4.54.7.149.164|65|7221 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.8.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.0.0.52|65|0 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.8.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.0.2.3|65|0 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.8.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.82.2.82|65|12336 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.8.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.82.2.83|65|54850 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.8.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.82.2.84|65|586422 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.8.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.9|65|10805 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.8.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.16|65|10807 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.8.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.130|65|22267 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.8.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.131|65|22243 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.8.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.2.7|65|8177 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.8.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.2.8|65|22432 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.8.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.85.2.83|65|61211 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.8.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.85.2.84|65|338580 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.8.0.0.16.40.4.40.224.0.0.0.97.0.0.0.0.0.0.0.1|65|3345234 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.8.0.0.16.40.4.79.122.2.0.0.96.0.96.17.37.0.0.0.2|65|0 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.9.0.0.4.54.7.66.20|65|0 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.9.0.0.4.55.7.46.20|65|43746 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.9.0.0.4.54.7.42.34|65|42793 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.9.0.0.4.54.7.42.192|65|86619 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.9.0.0.4.54.7.42.203|65|42763 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.9.0.0.4.54.7.42.252|65|3626 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.9.0.0.4.54.7.42.253|65|43751 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.9.0.0.4.54.7.42.254|65|12639 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.9.0.0.4.54.7.43.9|65|21625 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.9.0.0.4.54.7.43.10|65|22722 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.9.0.0.4.54.7.43.82|65|42799 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.9.0.0.4.54.7.43.83|65|42792 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.9.0.0.4.54.7.43.207|65|9127 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.9.0.0.4.54.7.43.208|65|42782 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.9.0.0.4.54.7.45.253|65|43783 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.9.0.0.4.54.7.45.254|65|43742 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.9.0.0.4.54.7.149.45|65|86113 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.9.0.0.4.54.7.253.70|65|2296326 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.9.0.0.4.54.7.34.6|65|16786 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.9.0.0.4.54.7.34.30|65|406190 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.9.0.0.4.54.7.253.145|65|42602 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.9.0.0.4.54.7.5.46|65|0 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.9.0.0.4.54.7.149.164|65|734364 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.9.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.0.0.52|65|0 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.9.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.0.2.3|65|0 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.9.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.82.2.82|65|12666 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.9.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.82.2.83|65|12661 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.9.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.82.2.84|65|12631 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.9.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.9|65|12650 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.9.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.16|65|12671 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.9.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.130|65|25043 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.9.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.0.131|65|25026 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.9.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.2.7|65|9132 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.9.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.83.2.8|65|25063 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.9.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.85.2.83|65|21624 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.9.0.0.16.32.1.18.244.0.0.0.2.0.0.0.0.0.85.2.84|65|12647 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.9.0.0.16.40.4.40.224.0.0.0.97.0.0.0.0.0.0.0.1|65|43714 -1.3.6.1.4.1.2011.5.25.177.1.1.7.1.9.0.0.16.40.4.79.122.2.0.0.96.0.96.17.37.0.0.0.2|65|0 +1.3.6.1.2.1.2.2.1.2.1|4|Virtual-Template0 +1.3.6.1.2.1.2.2.1.2.2|4|NULL0 +1.3.6.1.2.1.2.2.1.2.3|4|InLoopBack0 +1.3.6.1.2.1.2.2.1.2.4|4|GigabitEthernet0/0/0 +1.3.6.1.2.1.2.2.1.2.10|4|GigabitEthernet0/3/4 +1.3.6.1.2.1.2.2.1.2.11|4|GigabitEthernet0/3/5 +1.3.6.1.2.1.2.2.1.2.12|4|GigabitEthernet0/3/6 +1.3.6.1.2.1.2.2.1.2.13|4|GigabitEthernet0/3/7 +1.3.6.1.2.1.2.2.1.2.14|4|GigabitEthernet0/3/8 +1.3.6.1.2.1.2.2.1.2.15|4|GigabitEthernet0/3/9 +1.3.6.1.2.1.2.2.1.2.16|4|GigabitEthernet0/3/10 +1.3.6.1.2.1.2.2.1.2.17|4|GigabitEthernet0/3/11 +1.3.6.1.2.1.2.2.1.2.18|4|GigabitEthernet0/3/12 +1.3.6.1.2.1.2.2.1.2.19|4|GigabitEthernet0/3/13 +1.3.6.1.2.1.2.2.1.2.20|4|GigabitEthernet0/3/14 +1.3.6.1.2.1.2.2.1.2.21|4|GigabitEthernet0/3/15 +1.3.6.1.2.1.2.2.1.2.22|4|GigabitEthernet0/3/16 +1.3.6.1.2.1.2.2.1.2.23|4|GigabitEthernet0/3/17 +1.3.6.1.2.1.2.2.1.2.24|4|GigabitEthernet0/3/18 +1.3.6.1.2.1.2.2.1.2.25|4|GigabitEthernet0/3/19 +1.3.6.1.2.1.2.2.1.2.26|4|GigabitEthernet0/3/20 +1.3.6.1.2.1.2.2.1.2.27|4|GigabitEthernet0/3/21 +1.3.6.1.2.1.2.2.1.2.28|4|GigabitEthernet0/3/22 +1.3.6.1.2.1.2.2.1.2.29|4|GigabitEthernet0/3/23 +1.3.6.1.2.1.2.2.1.2.43|4|40GE0/3/0 +1.3.6.1.2.1.2.2.1.2.44|4|40GE0/3/1 +1.3.6.1.2.1.2.2.1.2.45|4|40GE0/3/2 +1.3.6.1.2.1.2.2.1.2.46|4|40GE0/3/3 +1.3.6.1.2.1.2.2.1.2.47|4|Eth-Trunk1 +1.3.6.1.2.1.2.2.1.2.48|4|Eth-Trunk1.2 +1.3.6.1.2.1.2.2.1.2.49|4|Eth-Trunk2 +1.3.6.1.2.1.2.2.1.2.50|4|LoopBack1 +1.3.6.1.2.1.2.2.1.2.51|4|GigabitEthernet0/3/11.1673 +1.3.6.1.2.1.2.2.1.2.52|4|GigabitEthernet0/3/12.1356 +1.3.6.1.2.1.2.2.1.2.53|4|GigabitEthernet0/3/9.716 +1.3.6.1.2.1.2.2.1.3.1|2|23 +1.3.6.1.2.1.2.2.1.3.2|2|1 +1.3.6.1.2.1.2.2.1.3.3|2|24 +1.3.6.1.2.1.2.2.1.3.4|2|6 +1.3.6.1.2.1.2.2.1.3.10|2|6 +1.3.6.1.2.1.2.2.1.3.11|2|6 +1.3.6.1.2.1.2.2.1.3.12|2|6 +1.3.6.1.2.1.2.2.1.3.13|2|6 +1.3.6.1.2.1.2.2.1.3.14|2|6 +1.3.6.1.2.1.2.2.1.3.15|2|6 +1.3.6.1.2.1.2.2.1.3.16|2|6 +1.3.6.1.2.1.2.2.1.3.17|2|6 +1.3.6.1.2.1.2.2.1.3.18|2|6 +1.3.6.1.2.1.2.2.1.3.19|2|6 +1.3.6.1.2.1.2.2.1.3.20|2|6 +1.3.6.1.2.1.2.2.1.3.21|2|6 +1.3.6.1.2.1.2.2.1.3.22|2|6 +1.3.6.1.2.1.2.2.1.3.23|2|6 +1.3.6.1.2.1.2.2.1.3.24|2|6 +1.3.6.1.2.1.2.2.1.3.25|2|6 +1.3.6.1.2.1.2.2.1.3.26|2|6 +1.3.6.1.2.1.2.2.1.3.27|2|6 +1.3.6.1.2.1.2.2.1.3.28|2|6 +1.3.6.1.2.1.2.2.1.3.29|2|6 +1.3.6.1.2.1.2.2.1.3.43|2|6 +1.3.6.1.2.1.2.2.1.3.44|2|6 +1.3.6.1.2.1.2.2.1.3.45|2|6 +1.3.6.1.2.1.2.2.1.3.46|2|6 +1.3.6.1.2.1.2.2.1.3.47|2|161 +1.3.6.1.2.1.2.2.1.3.48|2|135 +1.3.6.1.2.1.2.2.1.3.49|2|161 +1.3.6.1.2.1.2.2.1.3.50|2|24 +1.3.6.1.2.1.2.2.1.3.51|2|135 +1.3.6.1.2.1.2.2.1.3.52|2|135 +1.3.6.1.2.1.2.2.1.3.53|2|135 +1.3.6.1.2.1.2.2.1.4.1|2|1492 +1.3.6.1.2.1.2.2.1.4.2|2|1500 +1.3.6.1.2.1.2.2.1.4.3|2|1500 +1.3.6.1.2.1.2.2.1.4.4|2|1500 +1.3.6.1.2.1.2.2.1.4.10|2|1998 +1.3.6.1.2.1.2.2.1.4.11|2|1998 +1.3.6.1.2.1.2.2.1.4.12|2|1500 +1.3.6.1.2.1.2.2.1.4.13|2|1500 +1.3.6.1.2.1.2.2.1.4.14|2|1500 +1.3.6.1.2.1.2.2.1.4.15|2|1500 +1.3.6.1.2.1.2.2.1.4.16|2|1500 +1.3.6.1.2.1.2.2.1.4.17|2|1500 +1.3.6.1.2.1.2.2.1.4.18|2|1500 +1.3.6.1.2.1.2.2.1.4.19|2|1500 +1.3.6.1.2.1.2.2.1.4.20|2|1500 +1.3.6.1.2.1.2.2.1.4.21|2|1500 +1.3.6.1.2.1.2.2.1.4.22|2|1500 +1.3.6.1.2.1.2.2.1.4.23|2|1500 +1.3.6.1.2.1.2.2.1.4.24|2|1500 +1.3.6.1.2.1.2.2.1.4.25|2|1500 +1.3.6.1.2.1.2.2.1.4.26|2|1500 +1.3.6.1.2.1.2.2.1.4.27|2|1500 +1.3.6.1.2.1.2.2.1.4.28|2|1500 +1.3.6.1.2.1.2.2.1.4.29|2|1500 +1.3.6.1.2.1.2.2.1.4.43|2|1998 +1.3.6.1.2.1.2.2.1.4.44|2|1998 +1.3.6.1.2.1.2.2.1.4.45|2|1500 +1.3.6.1.2.1.2.2.1.4.46|2|1500 +1.3.6.1.2.1.2.2.1.4.47|2|1998 +1.3.6.1.2.1.2.2.1.4.48|2|1998 +1.3.6.1.2.1.2.2.1.4.49|2|1998 +1.3.6.1.2.1.2.2.1.4.50|2|1500 +1.3.6.1.2.1.2.2.1.4.51|2|1500 +1.3.6.1.2.1.2.2.1.4.52|2|1500 +1.3.6.1.2.1.2.2.1.4.53|2|1500 +1.3.6.1.2.1.2.2.1.6.1|4x|000000000000 +1.3.6.1.2.1.2.2.1.6.2|4x|000000000000 +1.3.6.1.2.1.2.2.1.6.3|4x|000000000000 +1.3.6.1.2.1.2.2.1.6.4|4x|AC8D3488F163 +1.3.6.1.2.1.2.2.1.6.10|4x|AC8D3488F177 +1.3.6.1.2.1.2.2.1.6.11|4x|AC8D3488F178 +1.3.6.1.2.1.2.2.1.6.12|4x|AC8D3488F179 +1.3.6.1.2.1.2.2.1.6.13|4x|AC8D3488F17A +1.3.6.1.2.1.2.2.1.6.14|4x|AC8D3488F17B +1.3.6.1.2.1.2.2.1.6.15|4x|AC8D3488F17C +1.3.6.1.2.1.2.2.1.6.16|4x|AC8D3488F17D +1.3.6.1.2.1.2.2.1.6.17|4x|AC8D3488F17E +1.3.6.1.2.1.2.2.1.6.18|4x|AC8D3488F17F +1.3.6.1.2.1.2.2.1.6.19|4x|AC8D3488F180 +1.3.6.1.2.1.2.2.1.6.20|4x|AC8D3488F181 +1.3.6.1.2.1.2.2.1.6.21|4x|AC8D3488F182 +1.3.6.1.2.1.2.2.1.6.22|4x|AC8D3488F183 +1.3.6.1.2.1.2.2.1.6.23|4x|AC8D3488F184 +1.3.6.1.2.1.2.2.1.6.24|4x|AC8D3488F185 +1.3.6.1.2.1.2.2.1.6.25|4x|AC8D3488F186 +1.3.6.1.2.1.2.2.1.6.26|4x|AC8D3488F187 +1.3.6.1.2.1.2.2.1.6.27|4x|AC8D3488F188 +1.3.6.1.2.1.2.2.1.6.28|4x|AC8D3488F189 +1.3.6.1.2.1.2.2.1.6.29|4x|AC8D3488F18A +1.3.6.1.2.1.2.2.1.6.43|4x|AC8D3488F173 +1.3.6.1.2.1.2.2.1.6.44|4x|AC8D3488F174 +1.3.6.1.2.1.2.2.1.6.45|4x|AC8D3488F175 +1.3.6.1.2.1.2.2.1.6.46|4x|AC8D3488F176 +1.3.6.1.2.1.2.2.1.6.47|4x|AC8D3488F164 +1.3.6.1.2.1.2.2.1.6.48|4x|AC8D3488F164 +1.3.6.1.2.1.2.2.1.6.49|4x|AC8D3488F164 +1.3.6.1.2.1.2.2.1.6.50|4x|000000000000 +1.3.6.1.2.1.2.2.1.6.51|4x|AC8D3488F17E +1.3.6.1.2.1.2.2.1.6.52|4x|AC8D3488F17F +1.3.6.1.2.1.2.2.1.6.53|4x|AC8D3488F17C +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.7.3|2|1 +1.3.6.1.2.1.2.2.1.7.4|2|2 +1.3.6.1.2.1.2.2.1.7.10|2|1 +1.3.6.1.2.1.2.2.1.7.11|2|1 +1.3.6.1.2.1.2.2.1.7.12|2|2 +1.3.6.1.2.1.2.2.1.7.13|2|2 +1.3.6.1.2.1.2.2.1.7.14|2|2 +1.3.6.1.2.1.2.2.1.7.15|2|2 +1.3.6.1.2.1.2.2.1.7.16|2|2 +1.3.6.1.2.1.2.2.1.7.17|2|2 +1.3.6.1.2.1.2.2.1.7.18|2|2 +1.3.6.1.2.1.2.2.1.7.19|2|2 +1.3.6.1.2.1.2.2.1.7.20|2|2 +1.3.6.1.2.1.2.2.1.7.21|2|2 +1.3.6.1.2.1.2.2.1.7.22|2|2 +1.3.6.1.2.1.2.2.1.7.23|2|2 +1.3.6.1.2.1.2.2.1.7.24|2|2 +1.3.6.1.2.1.2.2.1.7.25|2|2 +1.3.6.1.2.1.2.2.1.7.26|2|2 +1.3.6.1.2.1.2.2.1.7.27|2|2 +1.3.6.1.2.1.2.2.1.7.28|2|2 +1.3.6.1.2.1.2.2.1.7.29|2|2 +1.3.6.1.2.1.2.2.1.7.43|2|1 +1.3.6.1.2.1.2.2.1.7.44|2|1 +1.3.6.1.2.1.2.2.1.7.45|2|2 +1.3.6.1.2.1.2.2.1.7.46|2|2 +1.3.6.1.2.1.2.2.1.7.47|2|1 +1.3.6.1.2.1.2.2.1.7.48|2|2 +1.3.6.1.2.1.2.2.1.7.49|2|1 +1.3.6.1.2.1.2.2.1.7.50|2|1 +1.3.6.1.2.1.2.2.1.7.51|2|1 +1.3.6.1.2.1.2.2.1.7.52|2|1 +1.3.6.1.2.1.2.2.1.7.53|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.8.3|2|1 +1.3.6.1.2.1.2.2.1.8.4|2|2 +1.3.6.1.2.1.2.2.1.8.10|2|1 +1.3.6.1.2.1.2.2.1.8.11|2|1 +1.3.6.1.2.1.2.2.1.8.12|2|2 +1.3.6.1.2.1.2.2.1.8.13|2|2 +1.3.6.1.2.1.2.2.1.8.14|2|2 +1.3.6.1.2.1.2.2.1.8.15|2|2 +1.3.6.1.2.1.2.2.1.8.16|2|2 +1.3.6.1.2.1.2.2.1.8.17|2|2 +1.3.6.1.2.1.2.2.1.8.18|2|2 +1.3.6.1.2.1.2.2.1.8.19|2|2 +1.3.6.1.2.1.2.2.1.8.20|2|2 +1.3.6.1.2.1.2.2.1.8.21|2|2 +1.3.6.1.2.1.2.2.1.8.22|2|2 +1.3.6.1.2.1.2.2.1.8.23|2|2 +1.3.6.1.2.1.2.2.1.8.24|2|2 +1.3.6.1.2.1.2.2.1.8.25|2|2 +1.3.6.1.2.1.2.2.1.8.26|2|2 +1.3.6.1.2.1.2.2.1.8.27|2|2 +1.3.6.1.2.1.2.2.1.8.28|2|2 +1.3.6.1.2.1.2.2.1.8.29|2|2 +1.3.6.1.2.1.2.2.1.8.43|2|1 +1.3.6.1.2.1.2.2.1.8.44|2|1 +1.3.6.1.2.1.2.2.1.8.45|2|2 +1.3.6.1.2.1.2.2.1.8.46|2|2 +1.3.6.1.2.1.2.2.1.8.47|2|1 +1.3.6.1.2.1.2.2.1.8.48|2|2 +1.3.6.1.2.1.2.2.1.8.49|2|1 +1.3.6.1.2.1.2.2.1.8.50|2|1 +1.3.6.1.2.1.2.2.1.8.51|2|2 +1.3.6.1.2.1.2.2.1.8.52|2|2 +1.3.6.1.2.1.2.2.1.8.53|2|2 +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|0 +1.3.6.1.2.1.2.2.1.9.4|67|0 +1.3.6.1.2.1.2.2.1.9.10|67|96754916 +1.3.6.1.2.1.2.2.1.9.11|67|96756195 +1.3.6.1.2.1.2.2.1.9.12|67|0 +1.3.6.1.2.1.2.2.1.9.13|67|0 +1.3.6.1.2.1.2.2.1.9.14|67|0 +1.3.6.1.2.1.2.2.1.9.15|67|0 +1.3.6.1.2.1.2.2.1.9.16|67|0 +1.3.6.1.2.1.2.2.1.9.17|67|0 +1.3.6.1.2.1.2.2.1.9.18|67|0 +1.3.6.1.2.1.2.2.1.9.19|67|0 +1.3.6.1.2.1.2.2.1.9.20|67|0 +1.3.6.1.2.1.2.2.1.9.21|67|0 +1.3.6.1.2.1.2.2.1.9.22|67|0 +1.3.6.1.2.1.2.2.1.9.23|67|0 +1.3.6.1.2.1.2.2.1.9.24|67|0 +1.3.6.1.2.1.2.2.1.9.25|67|0 +1.3.6.1.2.1.2.2.1.9.26|67|0 +1.3.6.1.2.1.2.2.1.9.27|67|0 +1.3.6.1.2.1.2.2.1.9.28|67|0 +1.3.6.1.2.1.2.2.1.9.29|67|0 +1.3.6.1.2.1.2.2.1.9.43|67|94900111 +1.3.6.1.2.1.2.2.1.9.44|67|94899990 +1.3.6.1.2.1.2.2.1.9.45|67|0 +1.3.6.1.2.1.2.2.1.9.46|67|0 +1.3.6.1.2.1.2.2.1.9.47|67|94900341 +1.3.6.1.2.1.2.2.1.9.48|67|96554351 +1.3.6.1.2.1.2.2.1.9.49|67|96755135 +1.3.6.1.2.1.2.2.1.9.50|67|0 +1.3.6.1.2.1.2.2.1.9.51|67|0 +1.3.6.1.2.1.2.2.1.9.52|67|0 +1.3.6.1.2.1.2.2.1.9.53|67|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.10|65|0 +1.3.6.1.2.1.2.2.1.13.11|65|0 +1.3.6.1.2.1.2.2.1.13.12|65|0 +1.3.6.1.2.1.2.2.1.13.13|65|0 +1.3.6.1.2.1.2.2.1.13.14|65|0 +1.3.6.1.2.1.2.2.1.13.15|65|0 +1.3.6.1.2.1.2.2.1.13.16|65|0 +1.3.6.1.2.1.2.2.1.13.17|65|0 +1.3.6.1.2.1.2.2.1.13.18|65|0 +1.3.6.1.2.1.2.2.1.13.19|65|0 +1.3.6.1.2.1.2.2.1.13.20|65|0 +1.3.6.1.2.1.2.2.1.13.21|65|0 +1.3.6.1.2.1.2.2.1.13.22|65|0 +1.3.6.1.2.1.2.2.1.13.23|65|0 +1.3.6.1.2.1.2.2.1.13.24|65|0 +1.3.6.1.2.1.2.2.1.13.25|65|0 +1.3.6.1.2.1.2.2.1.13.26|65|0 +1.3.6.1.2.1.2.2.1.13.27|65|0 +1.3.6.1.2.1.2.2.1.13.28|65|0 +1.3.6.1.2.1.2.2.1.13.29|65|0 +1.3.6.1.2.1.2.2.1.13.43|65|0 +1.3.6.1.2.1.2.2.1.13.44|65|0 +1.3.6.1.2.1.2.2.1.13.45|65|0 +1.3.6.1.2.1.2.2.1.13.46|65|0 +1.3.6.1.2.1.2.2.1.13.47|65|0 +1.3.6.1.2.1.2.2.1.13.48|65|0 +1.3.6.1.2.1.2.2.1.13.49|65|0 +1.3.6.1.2.1.2.2.1.13.50|65|0 +1.3.6.1.2.1.2.2.1.13.51|65|0 +1.3.6.1.2.1.2.2.1.13.52|65|0 +1.3.6.1.2.1.2.2.1.13.53|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.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.10|65|0 +1.3.6.1.2.1.2.2.1.14.11|65|0 +1.3.6.1.2.1.2.2.1.14.12|65|0 +1.3.6.1.2.1.2.2.1.14.13|65|0 +1.3.6.1.2.1.2.2.1.14.14|65|0 +1.3.6.1.2.1.2.2.1.14.15|65|0 +1.3.6.1.2.1.2.2.1.14.16|65|0 +1.3.6.1.2.1.2.2.1.14.17|65|0 +1.3.6.1.2.1.2.2.1.14.18|65|0 +1.3.6.1.2.1.2.2.1.14.19|65|0 +1.3.6.1.2.1.2.2.1.14.20|65|0 +1.3.6.1.2.1.2.2.1.14.21|65|0 +1.3.6.1.2.1.2.2.1.14.22|65|0 +1.3.6.1.2.1.2.2.1.14.23|65|0 +1.3.6.1.2.1.2.2.1.14.24|65|0 +1.3.6.1.2.1.2.2.1.14.25|65|0 +1.3.6.1.2.1.2.2.1.14.26|65|0 +1.3.6.1.2.1.2.2.1.14.27|65|0 +1.3.6.1.2.1.2.2.1.14.28|65|0 +1.3.6.1.2.1.2.2.1.14.29|65|0 +1.3.6.1.2.1.2.2.1.14.43|65|0 +1.3.6.1.2.1.2.2.1.14.44|65|0 +1.3.6.1.2.1.2.2.1.14.45|65|0 +1.3.6.1.2.1.2.2.1.14.46|65|0 +1.3.6.1.2.1.2.2.1.14.47|65|0 +1.3.6.1.2.1.2.2.1.14.48|65|0 +1.3.6.1.2.1.2.2.1.14.49|65|0 +1.3.6.1.2.1.2.2.1.14.50|65|0 +1.3.6.1.2.1.2.2.1.14.51|65|0 +1.3.6.1.2.1.2.2.1.14.52|65|0 +1.3.6.1.2.1.2.2.1.14.53|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.10|65|0 +1.3.6.1.2.1.2.2.1.19.11|65|0 +1.3.6.1.2.1.2.2.1.19.12|65|0 +1.3.6.1.2.1.2.2.1.19.13|65|0 +1.3.6.1.2.1.2.2.1.19.14|65|0 +1.3.6.1.2.1.2.2.1.19.15|65|0 +1.3.6.1.2.1.2.2.1.19.16|65|0 +1.3.6.1.2.1.2.2.1.19.17|65|0 +1.3.6.1.2.1.2.2.1.19.18|65|0 +1.3.6.1.2.1.2.2.1.19.19|65|0 +1.3.6.1.2.1.2.2.1.19.20|65|0 +1.3.6.1.2.1.2.2.1.19.21|65|0 +1.3.6.1.2.1.2.2.1.19.22|65|0 +1.3.6.1.2.1.2.2.1.19.23|65|0 +1.3.6.1.2.1.2.2.1.19.24|65|0 +1.3.6.1.2.1.2.2.1.19.25|65|0 +1.3.6.1.2.1.2.2.1.19.26|65|0 +1.3.6.1.2.1.2.2.1.19.27|65|0 +1.3.6.1.2.1.2.2.1.19.28|65|0 +1.3.6.1.2.1.2.2.1.19.29|65|0 +1.3.6.1.2.1.2.2.1.19.43|65|0 +1.3.6.1.2.1.2.2.1.19.44|65|0 +1.3.6.1.2.1.2.2.1.19.45|65|0 +1.3.6.1.2.1.2.2.1.19.46|65|0 +1.3.6.1.2.1.2.2.1.19.47|65|0 +1.3.6.1.2.1.2.2.1.19.48|65|0 +1.3.6.1.2.1.2.2.1.19.49|65|0 +1.3.6.1.2.1.2.2.1.19.50|65|0 +1.3.6.1.2.1.2.2.1.19.51|65|0 +1.3.6.1.2.1.2.2.1.19.52|65|0 +1.3.6.1.2.1.2.2.1.19.53|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.10|65|0 +1.3.6.1.2.1.2.2.1.20.11|65|0 +1.3.6.1.2.1.2.2.1.20.12|65|0 +1.3.6.1.2.1.2.2.1.20.13|65|0 +1.3.6.1.2.1.2.2.1.20.14|65|0 +1.3.6.1.2.1.2.2.1.20.15|65|0 +1.3.6.1.2.1.2.2.1.20.16|65|0 +1.3.6.1.2.1.2.2.1.20.17|65|0 +1.3.6.1.2.1.2.2.1.20.18|65|0 +1.3.6.1.2.1.2.2.1.20.19|65|0 +1.3.6.1.2.1.2.2.1.20.20|65|0 +1.3.6.1.2.1.2.2.1.20.21|65|0 +1.3.6.1.2.1.2.2.1.20.22|65|0 +1.3.6.1.2.1.2.2.1.20.23|65|0 +1.3.6.1.2.1.2.2.1.20.24|65|0 +1.3.6.1.2.1.2.2.1.20.25|65|0 +1.3.6.1.2.1.2.2.1.20.26|65|0 +1.3.6.1.2.1.2.2.1.20.27|65|0 +1.3.6.1.2.1.2.2.1.20.28|65|0 +1.3.6.1.2.1.2.2.1.20.29|65|0 +1.3.6.1.2.1.2.2.1.20.43|65|0 +1.3.6.1.2.1.2.2.1.20.44|65|0 +1.3.6.1.2.1.2.2.1.20.45|65|0 +1.3.6.1.2.1.2.2.1.20.46|65|0 +1.3.6.1.2.1.2.2.1.20.47|65|0 +1.3.6.1.2.1.2.2.1.20.48|65|0 +1.3.6.1.2.1.2.2.1.20.49|65|0 +1.3.6.1.2.1.2.2.1.20.50|65|0 +1.3.6.1.2.1.2.2.1.20.51|65|0 +1.3.6.1.2.1.2.2.1.20.52|65|0 +1.3.6.1.2.1.2.2.1.20.53|65|0 +1.3.6.1.2.1.4.3.0|65|370447 +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|32 +1.3.6.1.2.1.4.7.0|65|0 +1.3.6.1.2.1.4.8.0|65|0 +1.3.6.1.2.1.4.9.0|65|148319 +1.3.6.1.2.1.4.10.0|65|149580 +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|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.20.1.2.10.99.99.3|2|50 +1.3.6.1.2.1.4.20.1.2.10.99.100.234|2|4 +1.3.6.1.2.1.4.20.1.2.87.197.252.6|2|52 +1.3.6.1.2.1.4.20.1.2.87.197.252.142|2|51 +1.3.6.1.2.1.4.20.1.2.88.86.99.226|2|53 +1.3.6.1.2.1.4.20.1.2.91.213.211.222|2|15 +1.3.6.1.2.1.4.20.1.2.127.0.0.1|2|3 +1.3.6.1.2.1.4.20.1.2.188.120.0.3|2|47 +1.3.6.1.2.1.4.20.1.2.188.120.0.146|2|48 +1.3.6.1.2.1.4.20.1.2.192.108.148.130|2|12 +1.3.6.1.2.1.4.20.1.3.10.99.99.3|64|255.255.255.255 +1.3.6.1.2.1.4.20.1.3.10.99.100.234|64|255.255.255.0 +1.3.6.1.2.1.4.20.1.3.87.197.252.6|64|255.255.255.252 +1.3.6.1.2.1.4.20.1.3.87.197.252.142|64|255.255.255.252 +1.3.6.1.2.1.4.20.1.3.88.86.99.226|64|255.255.255.252 +1.3.6.1.2.1.4.20.1.3.91.213.211.222|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.20.1.3.188.120.0.3|64|255.255.255.254 +1.3.6.1.2.1.4.20.1.3.188.120.0.146|64|255.255.255.254 +1.3.6.1.2.1.4.20.1.3.192.108.148.130|64|255.255.255.0 +1.3.6.1.2.1.4.22.1.2.4.10.99.100.234|4x|AC8D3488F163 +1.3.6.1.2.1.4.22.1.2.12.192.108.148.130|4x|AC8D3488F179 +1.3.6.1.2.1.4.22.1.2.15.91.213.211.222|4x|AC8D3488F17C +1.3.6.1.2.1.4.22.1.2.47.188.120.0.2|4x|7CC38590776C +1.3.6.1.2.1.4.22.1.2.47.188.120.0.3|4x|AC8D3488F164 +1.3.6.1.2.1.4.22.1.2.48.188.120.0.146|4x|AC8D3488F164 +1.3.6.1.2.1.4.22.1.2.51.87.197.252.142|4x|AC8D3488F17E +1.3.6.1.2.1.4.22.1.2.52.87.197.252.6|4x|AC8D3488F17F +1.3.6.1.2.1.4.22.1.2.53.88.86.99.226|4x|AC8D3488F17C +1.3.6.1.2.1.4.24.3.0|66|387 +1.3.6.1.2.1.4.31.1.1.3.1|65|398411 +1.3.6.1.2.1.4.31.1.1.3.2|65|17972 +1.3.6.1.2.1.4.31.1.1.4.1|70|398411 +1.3.6.1.2.1.4.31.1.1.4.2|70|17972 +1.3.6.1.2.1.4.31.1.1.5.1|65|34778505 +1.3.6.1.2.1.4.31.1.1.5.2|65|1258608 +1.3.6.1.2.1.4.31.1.1.6.1|70|34778505 +1.3.6.1.2.1.4.31.1.1.6.2|70|1258608 +1.3.6.1.2.1.4.31.1.1.7.1|65|83 +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|0 +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|0 +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|0 +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|0 +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|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|47639 +1.3.6.1.2.1.4.31.1.1.18.2|65|11526 +1.3.6.1.2.1.4.31.1.1.19.1|70|47639 +1.3.6.1.2.1.4.31.1.1.19.2|70|11526 +1.3.6.1.2.1.4.31.1.1.20.1|65|149592 +1.3.6.1.2.1.4.31.1.1.20.2|65|12056 +1.3.6.1.2.1.4.31.1.1.21.1|70|149592 +1.3.6.1.2.1.4.31.1.1.21.2|70|12056 +1.3.6.1.2.1.4.31.1.1.22.1|65|12109 +1.3.6.1.2.1.4.31.1.1.22.2|65|0 +1.3.6.1.2.1.4.31.1.1.23.1|65|0 +1.3.6.1.2.1.4.31.1.1.23.2|65|0 +1.3.6.1.2.1.4.31.1.1.24.1|70|0 +1.3.6.1.2.1.4.31.1.1.24.2|70|0 +1.3.6.1.2.1.4.31.1.1.25.1|65|2 +1.3.6.1.2.1.4.31.1.1.25.2|65|0 +1.3.6.1.2.1.4.31.1.1.26.1|65|0 +1.3.6.1.2.1.4.31.1.1.26.2|65|0 +1.3.6.1.2.1.4.31.1.1.27.1|65|0 +1.3.6.1.2.1.4.31.1.1.27.2|65|0 +1.3.6.1.2.1.4.31.1.1.28.1|65|0 +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|395273 +1.3.6.1.2.1.4.31.1.1.30.2|65|0 +1.3.6.1.2.1.4.31.1.1.31.1|70|395273 +1.3.6.1.2.1.4.31.1.1.31.2|70|0 +1.3.6.1.2.1.4.31.1.1.32.1|65|91057819 +1.3.6.1.2.1.4.31.1.1.32.2|65|1563373 +1.3.6.1.2.1.4.31.1.1.33.1|70|91057819 +1.3.6.1.2.1.4.31.1.1.33.2|70|1563373 +1.3.6.1.2.1.4.31.1.1.34.1|65|0 +1.3.6.1.2.1.4.31.1.1.34.2|65|4 +1.3.6.1.2.1.4.31.1.1.35.1|70|0 +1.3.6.1.2.1.4.31.1.1.35.2|70|4 +1.3.6.1.2.1.4.31.1.1.36.1|65|0 +1.3.6.1.2.1.4.31.1.1.36.2|65|272 +1.3.6.1.2.1.4.31.1.1.37.1|70|0 +1.3.6.1.2.1.4.31.1.1.37.2|70|272 +1.3.6.1.2.1.4.31.1.1.38.1|65|0 +1.3.6.1.2.1.4.31.1.1.38.2|65|0 +1.3.6.1.2.1.4.31.1.1.39.1|70|0 +1.3.6.1.2.1.4.31.1.1.39.2|70|0 +1.3.6.1.2.1.4.31.1.1.40.1|65|0 +1.3.6.1.2.1.4.31.1.1.40.2|65|0 +1.3.6.1.2.1.4.31.1.1.41.1|70|0 +1.3.6.1.2.1.4.31.1.1.41.2|70|0 +1.3.6.1.2.1.4.31.1.1.42.1|65|0 +1.3.6.1.2.1.4.31.1.1.42.2|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.43.2|70|0 +1.3.6.1.2.1.4.31.1.1.44.1|65|6816 +1.3.6.1.2.1.4.31.1.1.44.2|65|0 +1.3.6.1.2.1.4.31.1.1.45.1|70|6816 +1.3.6.1.2.1.4.31.1.1.45.2|70|0 +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|0 +1.3.6.1.2.1.4.31.1.1.47.2|66|0 +1.3.6.1.2.1.4.34.1.3.2.16.32.1.7.248.0.47.0.0.0.0.0.0.0.0.1.48|2|12 +1.3.6.1.2.1.4.34.1.3.2.16.32.1.7.248.0.127.0.0.0.0.0.0.0.0.2.34|2|15 +1.3.6.1.2.1.4.34.1.3.2.16.42.0.18.168.0.1.0.33.0.0.0.0.0.0.0.2|2|51 +1.3.6.1.2.1.4.34.1.3.2.16.42.0.18.168.0.1.0.34.0.0.0.0.0.0.0.2|2|52 +1.3.6.1.2.1.4.34.1.3.2.16.42.3.39.96.0.0.0.1.0.0.0.0.0.0.0.1|2|49 +1.3.6.1.2.1.4.34.1.3.2.16.253.0.0.153.0.153.0.0.0.0.0.0.0.0.0.3|2|50 +1.3.6.1.2.1.4.34.1.5.2.16.32.1.7.248.0.47.0.0.0.0.0.0.0.0.1.48|6|1.3.6.1.2.1.4.32.1.5.12.2.16.32.1.7.248.0.47.0.0.0.0.0.0.0.0.0.0.64 +1.3.6.1.2.1.4.34.1.5.2.16.32.1.7.248.0.127.0.0.0.0.0.0.0.0.2.34|6|1.3.6.1.2.1.4.32.1.5.15.2.16.32.1.7.248.0.127.0.0.0.0.0.0.0.0.0.0.64 +1.3.6.1.2.1.4.34.1.5.2.16.42.0.18.168.0.1.0.33.0.0.0.0.0.0.0.2|6|1.3.6.1.2.1.4.32.1.5.51.2.16.42.0.18.168.0.1.0.33.0.0.0.0.0.0.0.0.64 +1.3.6.1.2.1.4.34.1.5.2.16.42.0.18.168.0.1.0.34.0.0.0.0.0.0.0.2|6|1.3.6.1.2.1.4.32.1.5.52.2.16.42.0.18.168.0.1.0.34.0.0.0.0.0.0.0.0.64 +1.3.6.1.2.1.4.34.1.5.2.16.42.3.39.96.0.0.0.1.0.0.0.0.0.0.0.1|6|1.3.6.1.2.1.4.32.1.5.49.2.16.42.3.39.96.0.0.0.1.0.0.0.0.0.0.0.0.64 +1.3.6.1.2.1.4.34.1.5.2.16.253.0.0.153.0.153.0.0.0.0.0.0.0.0.0.3|6|1.3.6.1.2.1.4.32.1.5.50.2.16.253.0.0.153.0.153.0.0.0.0.0.0.0.0.0.3.128 +1.3.6.1.2.1.4.34.1.6.2.16.32.1.7.248.0.47.0.0.0.0.0.0.0.0.1.48|2|2 +1.3.6.1.2.1.4.34.1.6.2.16.32.1.7.248.0.127.0.0.0.0.0.0.0.0.2.34|2|2 +1.3.6.1.2.1.4.34.1.6.2.16.42.0.18.168.0.1.0.33.0.0.0.0.0.0.0.2|2|2 +1.3.6.1.2.1.4.34.1.6.2.16.42.0.18.168.0.1.0.34.0.0.0.0.0.0.0.2|2|2 +1.3.6.1.2.1.4.34.1.6.2.16.42.3.39.96.0.0.0.1.0.0.0.0.0.0.0.1|2|2 +1.3.6.1.2.1.4.34.1.6.2.16.253.0.0.153.0.153.0.0.0.0.0.0.0.0.0.3|2|2 +1.3.6.1.2.1.4.35.1.4.4.1.4.10.99.100.234|4x|AC8D3488F163 +1.3.6.1.2.1.4.35.1.4.12.1.4.192.108.148.130|4x|AC8D3488F179 +1.3.6.1.2.1.4.35.1.4.15.1.4.91.213.211.222|4x|AC8D3488F17C +1.3.6.1.2.1.4.35.1.4.47.1.4.188.120.0.2|4x|7CC38590776C +1.3.6.1.2.1.4.35.1.4.47.1.4.188.120.0.3|4x|AC8D3488F164 +1.3.6.1.2.1.4.35.1.4.48.1.4.188.120.0.146|4x|AC8D3488F164 +1.3.6.1.2.1.4.35.1.4.49.2.16.42.3.39.96.0.0.0.1.0.0.0.0.0.0.0.2|4x|7CC38590776D +1.3.6.1.2.1.4.35.1.4.51.1.4.87.197.252.142|4x|AC8D3488F17E +1.3.6.1.2.1.4.35.1.4.52.1.4.87.197.252.6|4x|AC8D3488F17F +1.3.6.1.2.1.4.35.1.4.53.1.4.88.86.99.226|4x|AC8D3488F17C +1.3.6.1.2.1.5.1.0|65|26 +1.3.6.1.2.1.5.2.0|65|0 +1.3.6.1.2.1.5.3.0|65|8 +1.3.6.1.2.1.5.4.0|65|2 +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|5 +1.3.6.1.2.1.5.9.0|65|16 +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|1492 +1.3.6.1.2.1.5.15.0|65|0 +1.3.6.1.2.1.5.16.0|65|1472 +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|15 +1.3.6.1.2.1.5.22.0|65|5 +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.5.29.1.2.1|65|32 +1.3.6.1.2.1.5.29.1.2.2|65|6447 +1.3.6.1.2.1.5.29.1.3.1|65|1 +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|1492 +1.3.6.1.2.1.5.29.1.4.2|65|6447 +1.3.6.1.2.1.5.29.1.5.1|65|0 +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|16 +1.3.6.1.2.1.5.30.1.3.1.1|65|0 +1.3.6.1.2.1.5.30.1.3.1.2|65|0 +1.3.6.1.2.1.5.30.1.3.1.3|65|8 +1.3.6.1.2.1.5.30.1.3.1.4|65|0 +1.3.6.1.2.1.5.30.1.3.1.5|65|0 +1.3.6.1.2.1.5.30.1.3.1.6|65|0 +1.3.6.1.2.1.5.30.1.3.1.7|65|0 +1.3.6.1.2.1.5.30.1.3.1.8|65|5 +1.3.6.1.2.1.5.30.1.3.1.9|65|0 +1.3.6.1.2.1.5.30.1.3.1.10|65|0 +1.3.6.1.2.1.5.30.1.3.1.11|65|2 +1.3.6.1.2.1.5.30.1.3.1.12|65|0 +1.3.6.1.2.1.5.30.1.3.1.13|65|0 +1.3.6.1.2.1.5.30.1.3.1.14|65|0 +1.3.6.1.2.1.5.30.1.3.1.15|65|0 +1.3.6.1.2.1.5.30.1.3.1.16|65|0 +1.3.6.1.2.1.5.30.1.3.1.17|65|0 +1.3.6.1.2.1.5.30.1.3.1.18|65|0 +1.3.6.1.2.1.5.30.1.3.1.19|65|0 +1.3.6.1.2.1.5.30.1.3.1.20|65|0 +1.3.6.1.2.1.5.30.1.3.1.21|65|0 +1.3.6.1.2.1.5.30.1.3.1.22|65|0 +1.3.6.1.2.1.5.30.1.3.1.23|65|0 +1.3.6.1.2.1.5.30.1.3.1.24|65|0 +1.3.6.1.2.1.5.30.1.3.1.25|65|0 +1.3.6.1.2.1.5.30.1.3.1.26|65|0 +1.3.6.1.2.1.5.30.1.3.1.27|65|0 +1.3.6.1.2.1.5.30.1.3.1.28|65|0 +1.3.6.1.2.1.5.30.1.3.1.29|65|0 +1.3.6.1.2.1.5.30.1.3.1.30|65|0 +1.3.6.1.2.1.5.30.1.3.1.31|65|0 +1.3.6.1.2.1.5.30.1.3.1.32|65|0 +1.3.6.1.2.1.5.30.1.3.1.33|65|0 +1.3.6.1.2.1.5.30.1.3.1.34|65|0 +1.3.6.1.2.1.5.30.1.3.1.35|65|0 +1.3.6.1.2.1.5.30.1.3.1.36|65|0 +1.3.6.1.2.1.5.30.1.3.1.37|65|0 +1.3.6.1.2.1.5.30.1.3.1.38|65|0 +1.3.6.1.2.1.5.30.1.3.1.39|65|0 +1.3.6.1.2.1.5.30.1.3.1.40|65|0 +1.3.6.1.2.1.5.30.1.3.1.41|65|0 +1.3.6.1.2.1.5.30.1.3.1.42|65|0 +1.3.6.1.2.1.5.30.1.3.1.43|65|0 +1.3.6.1.2.1.5.30.1.3.1.44|65|0 +1.3.6.1.2.1.5.30.1.3.1.45|65|0 +1.3.6.1.2.1.5.30.1.3.1.46|65|0 +1.3.6.1.2.1.5.30.1.3.1.47|65|0 +1.3.6.1.2.1.5.30.1.3.1.48|65|0 +1.3.6.1.2.1.5.30.1.3.1.49|65|0 +1.3.6.1.2.1.5.30.1.3.1.50|65|0 +1.3.6.1.2.1.5.30.1.3.1.51|65|0 +1.3.6.1.2.1.5.30.1.3.1.52|65|0 +1.3.6.1.2.1.5.30.1.3.1.53|65|0 +1.3.6.1.2.1.5.30.1.3.1.54|65|0 +1.3.6.1.2.1.5.30.1.3.1.55|65|0 +1.3.6.1.2.1.5.30.1.3.1.56|65|0 +1.3.6.1.2.1.5.30.1.3.1.57|65|0 +1.3.6.1.2.1.5.30.1.3.1.58|65|0 +1.3.6.1.2.1.5.30.1.3.1.59|65|0 +1.3.6.1.2.1.5.30.1.3.1.60|65|0 +1.3.6.1.2.1.5.30.1.3.1.61|65|0 +1.3.6.1.2.1.5.30.1.3.1.62|65|0 +1.3.6.1.2.1.5.30.1.3.1.63|65|0 +1.3.6.1.2.1.5.30.1.3.1.64|65|0 +1.3.6.1.2.1.5.30.1.3.1.65|65|0 +1.3.6.1.2.1.5.30.1.3.1.66|65|0 +1.3.6.1.2.1.5.30.1.3.1.67|65|0 +1.3.6.1.2.1.5.30.1.3.1.68|65|0 +1.3.6.1.2.1.5.30.1.3.1.69|65|0 +1.3.6.1.2.1.5.30.1.3.1.70|65|0 +1.3.6.1.2.1.5.30.1.3.1.71|65|0 +1.3.6.1.2.1.5.30.1.3.1.72|65|0 +1.3.6.1.2.1.5.30.1.3.1.73|65|0 +1.3.6.1.2.1.5.30.1.3.1.74|65|0 +1.3.6.1.2.1.5.30.1.3.1.75|65|0 +1.3.6.1.2.1.5.30.1.3.1.76|65|0 +1.3.6.1.2.1.5.30.1.3.1.77|65|0 +1.3.6.1.2.1.5.30.1.3.1.78|65|0 +1.3.6.1.2.1.5.30.1.3.1.79|65|0 +1.3.6.1.2.1.5.30.1.3.1.80|65|0 +1.3.6.1.2.1.5.30.1.3.1.81|65|0 +1.3.6.1.2.1.5.30.1.3.1.82|65|0 +1.3.6.1.2.1.5.30.1.3.1.83|65|0 +1.3.6.1.2.1.5.30.1.3.1.84|65|0 +1.3.6.1.2.1.5.30.1.3.1.85|65|0 +1.3.6.1.2.1.5.30.1.3.1.86|65|0 +1.3.6.1.2.1.5.30.1.3.1.87|65|0 +1.3.6.1.2.1.5.30.1.3.1.88|65|0 +1.3.6.1.2.1.5.30.1.3.1.89|65|0 +1.3.6.1.2.1.5.30.1.3.1.90|65|0 +1.3.6.1.2.1.5.30.1.3.1.91|65|0 +1.3.6.1.2.1.5.30.1.3.1.92|65|0 +1.3.6.1.2.1.5.30.1.3.1.93|65|0 +1.3.6.1.2.1.5.30.1.3.1.94|65|0 +1.3.6.1.2.1.5.30.1.3.1.95|65|0 +1.3.6.1.2.1.5.30.1.3.1.96|65|0 +1.3.6.1.2.1.5.30.1.3.1.97|65|0 +1.3.6.1.2.1.5.30.1.3.1.98|65|0 +1.3.6.1.2.1.5.30.1.3.1.99|65|0 +1.3.6.1.2.1.5.30.1.3.1.100|65|0 +1.3.6.1.2.1.5.30.1.3.1.101|65|0 +1.3.6.1.2.1.5.30.1.3.1.102|65|0 +1.3.6.1.2.1.5.30.1.3.1.103|65|0 +1.3.6.1.2.1.5.30.1.3.1.104|65|0 +1.3.6.1.2.1.5.30.1.3.1.105|65|0 +1.3.6.1.2.1.5.30.1.3.1.106|65|0 +1.3.6.1.2.1.5.30.1.3.1.107|65|0 +1.3.6.1.2.1.5.30.1.3.1.108|65|0 +1.3.6.1.2.1.5.30.1.3.1.109|65|0 +1.3.6.1.2.1.5.30.1.3.1.110|65|0 +1.3.6.1.2.1.5.30.1.3.1.111|65|0 +1.3.6.1.2.1.5.30.1.3.1.112|65|0 +1.3.6.1.2.1.5.30.1.3.1.113|65|0 +1.3.6.1.2.1.5.30.1.3.1.114|65|0 +1.3.6.1.2.1.5.30.1.3.1.115|65|0 +1.3.6.1.2.1.5.30.1.3.1.116|65|0 +1.3.6.1.2.1.5.30.1.3.1.117|65|0 +1.3.6.1.2.1.5.30.1.3.1.118|65|0 +1.3.6.1.2.1.5.30.1.3.1.119|65|0 +1.3.6.1.2.1.5.30.1.3.1.120|65|0 +1.3.6.1.2.1.5.30.1.3.1.121|65|0 +1.3.6.1.2.1.5.30.1.3.1.122|65|0 +1.3.6.1.2.1.5.30.1.3.1.123|65|0 +1.3.6.1.2.1.5.30.1.3.1.124|65|0 +1.3.6.1.2.1.5.30.1.3.1.125|65|0 +1.3.6.1.2.1.5.30.1.3.1.126|65|0 +1.3.6.1.2.1.5.30.1.3.1.127|65|0 +1.3.6.1.2.1.5.30.1.3.1.128|65|0 +1.3.6.1.2.1.5.30.1.3.1.129|65|0 +1.3.6.1.2.1.5.30.1.3.1.130|65|0 +1.3.6.1.2.1.5.30.1.3.1.131|65|0 +1.3.6.1.2.1.5.30.1.3.1.132|65|0 +1.3.6.1.2.1.5.30.1.3.1.133|65|0 +1.3.6.1.2.1.5.30.1.3.1.134|65|0 +1.3.6.1.2.1.5.30.1.3.1.135|65|0 +1.3.6.1.2.1.5.30.1.3.1.136|65|0 +1.3.6.1.2.1.5.30.1.3.1.137|65|0 +1.3.6.1.2.1.5.30.1.3.1.138|65|0 +1.3.6.1.2.1.5.30.1.3.1.139|65|0 +1.3.6.1.2.1.5.30.1.3.1.140|65|0 +1.3.6.1.2.1.5.30.1.3.1.141|65|0 +1.3.6.1.2.1.5.30.1.3.1.142|65|0 +1.3.6.1.2.1.5.30.1.3.1.143|65|0 +1.3.6.1.2.1.5.30.1.3.1.144|65|0 +1.3.6.1.2.1.5.30.1.3.1.145|65|0 +1.3.6.1.2.1.5.30.1.3.1.146|65|0 +1.3.6.1.2.1.5.30.1.3.1.147|65|0 +1.3.6.1.2.1.5.30.1.3.1.148|65|0 +1.3.6.1.2.1.5.30.1.3.1.149|65|0 +1.3.6.1.2.1.5.30.1.3.1.150|65|0 +1.3.6.1.2.1.5.30.1.3.1.151|65|0 +1.3.6.1.2.1.5.30.1.3.1.152|65|0 +1.3.6.1.2.1.5.30.1.3.1.153|65|0 +1.3.6.1.2.1.5.30.1.3.1.154|65|0 +1.3.6.1.2.1.5.30.1.3.1.155|65|0 +1.3.6.1.2.1.5.30.1.3.1.156|65|0 +1.3.6.1.2.1.5.30.1.3.1.157|65|0 +1.3.6.1.2.1.5.30.1.3.1.158|65|0 +1.3.6.1.2.1.5.30.1.3.1.159|65|0 +1.3.6.1.2.1.5.30.1.3.1.160|65|0 +1.3.6.1.2.1.5.30.1.3.1.161|65|0 +1.3.6.1.2.1.5.30.1.3.1.162|65|0 +1.3.6.1.2.1.5.30.1.3.1.163|65|0 +1.3.6.1.2.1.5.30.1.3.1.164|65|0 +1.3.6.1.2.1.5.30.1.3.1.165|65|0 +1.3.6.1.2.1.5.30.1.3.1.166|65|0 +1.3.6.1.2.1.5.30.1.3.1.167|65|0 +1.3.6.1.2.1.5.30.1.3.1.168|65|0 +1.3.6.1.2.1.5.30.1.3.1.169|65|0 +1.3.6.1.2.1.5.30.1.3.1.170|65|0 +1.3.6.1.2.1.5.30.1.3.1.171|65|0 +1.3.6.1.2.1.5.30.1.3.1.172|65|0 +1.3.6.1.2.1.5.30.1.3.1.173|65|0 +1.3.6.1.2.1.5.30.1.3.1.174|65|0 +1.3.6.1.2.1.5.30.1.3.1.175|65|0 +1.3.6.1.2.1.5.30.1.3.1.176|65|0 +1.3.6.1.2.1.5.30.1.3.1.177|65|0 +1.3.6.1.2.1.5.30.1.3.1.178|65|0 +1.3.6.1.2.1.5.30.1.3.1.179|65|0 +1.3.6.1.2.1.5.30.1.3.1.180|65|0 +1.3.6.1.2.1.5.30.1.3.1.181|65|0 +1.3.6.1.2.1.5.30.1.3.1.182|65|0 +1.3.6.1.2.1.5.30.1.3.1.183|65|0 +1.3.6.1.2.1.5.30.1.3.1.184|65|0 +1.3.6.1.2.1.5.30.1.3.1.185|65|0 +1.3.6.1.2.1.5.30.1.3.1.186|65|0 +1.3.6.1.2.1.5.30.1.3.1.187|65|0 +1.3.6.1.2.1.5.30.1.3.1.188|65|0 +1.3.6.1.2.1.5.30.1.3.1.189|65|0 +1.3.6.1.2.1.5.30.1.3.1.190|65|0 +1.3.6.1.2.1.5.30.1.3.1.191|65|0 +1.3.6.1.2.1.5.30.1.3.1.192|65|0 +1.3.6.1.2.1.5.30.1.3.1.193|65|0 +1.3.6.1.2.1.5.30.1.3.1.194|65|0 +1.3.6.1.2.1.5.30.1.3.1.195|65|0 +1.3.6.1.2.1.5.30.1.3.1.196|65|0 +1.3.6.1.2.1.5.30.1.3.1.197|65|0 +1.3.6.1.2.1.5.30.1.3.1.198|65|0 +1.3.6.1.2.1.5.30.1.3.1.199|65|0 +1.3.6.1.2.1.5.30.1.3.1.200|65|0 +1.3.6.1.2.1.5.30.1.3.1.201|65|0 +1.3.6.1.2.1.5.30.1.3.1.202|65|0 +1.3.6.1.2.1.5.30.1.3.1.203|65|0 +1.3.6.1.2.1.5.30.1.3.1.204|65|0 +1.3.6.1.2.1.5.30.1.3.1.205|65|0 +1.3.6.1.2.1.5.30.1.3.1.206|65|0 +1.3.6.1.2.1.5.30.1.3.1.207|65|0 +1.3.6.1.2.1.5.30.1.3.1.208|65|0 +1.3.6.1.2.1.5.30.1.3.1.209|65|0 +1.3.6.1.2.1.5.30.1.3.1.210|65|0 +1.3.6.1.2.1.5.30.1.3.1.211|65|0 +1.3.6.1.2.1.5.30.1.3.1.212|65|0 +1.3.6.1.2.1.5.30.1.3.1.213|65|0 +1.3.6.1.2.1.5.30.1.3.1.214|65|0 +1.3.6.1.2.1.5.30.1.3.1.215|65|0 +1.3.6.1.2.1.5.30.1.3.1.216|65|0 +1.3.6.1.2.1.5.30.1.3.1.217|65|0 +1.3.6.1.2.1.5.30.1.3.1.218|65|0 +1.3.6.1.2.1.5.30.1.3.1.219|65|0 +1.3.6.1.2.1.5.30.1.3.1.220|65|0 +1.3.6.1.2.1.5.30.1.3.1.221|65|0 +1.3.6.1.2.1.5.30.1.3.1.222|65|0 +1.3.6.1.2.1.5.30.1.3.1.223|65|0 +1.3.6.1.2.1.5.30.1.3.1.224|65|0 +1.3.6.1.2.1.5.30.1.3.1.225|65|0 +1.3.6.1.2.1.5.30.1.3.1.226|65|0 +1.3.6.1.2.1.5.30.1.3.1.227|65|0 +1.3.6.1.2.1.5.30.1.3.1.228|65|0 +1.3.6.1.2.1.5.30.1.3.1.229|65|0 +1.3.6.1.2.1.5.30.1.3.1.230|65|0 +1.3.6.1.2.1.5.30.1.3.1.231|65|0 +1.3.6.1.2.1.5.30.1.3.1.232|65|0 +1.3.6.1.2.1.5.30.1.3.1.233|65|0 +1.3.6.1.2.1.5.30.1.3.1.234|65|0 +1.3.6.1.2.1.5.30.1.3.1.235|65|0 +1.3.6.1.2.1.5.30.1.3.1.236|65|0 +1.3.6.1.2.1.5.30.1.3.1.237|65|0 +1.3.6.1.2.1.5.30.1.3.1.238|65|0 +1.3.6.1.2.1.5.30.1.3.1.239|65|0 +1.3.6.1.2.1.5.30.1.3.1.240|65|0 +1.3.6.1.2.1.5.30.1.3.1.241|65|0 +1.3.6.1.2.1.5.30.1.3.1.242|65|0 +1.3.6.1.2.1.5.30.1.3.1.243|65|0 +1.3.6.1.2.1.5.30.1.3.1.244|65|0 +1.3.6.1.2.1.5.30.1.3.1.245|65|0 +1.3.6.1.2.1.5.30.1.3.1.246|65|0 +1.3.6.1.2.1.5.30.1.3.1.247|65|0 +1.3.6.1.2.1.5.30.1.3.1.248|65|0 +1.3.6.1.2.1.5.30.1.3.1.249|65|0 +1.3.6.1.2.1.5.30.1.3.1.250|65|0 +1.3.6.1.2.1.5.30.1.3.1.251|65|0 +1.3.6.1.2.1.5.30.1.3.1.252|65|0 +1.3.6.1.2.1.5.30.1.3.1.253|65|0 +1.3.6.1.2.1.5.30.1.3.1.254|65|0 +1.3.6.1.2.1.5.30.1.3.1.255|65|0 +1.3.6.1.2.1.5.30.1.3.2.0|65|0 +1.3.6.1.2.1.5.30.1.3.2.1|65|0 +1.3.6.1.2.1.5.30.1.3.2.2|65|0 +1.3.6.1.2.1.5.30.1.3.2.3|65|0 +1.3.6.1.2.1.5.30.1.3.2.4|65|0 +1.3.6.1.2.1.5.30.1.3.2.5|65|0 +1.3.6.1.2.1.5.30.1.3.2.6|65|0 +1.3.6.1.2.1.5.30.1.3.2.7|65|0 +1.3.6.1.2.1.5.30.1.3.2.8|65|0 +1.3.6.1.2.1.5.30.1.3.2.9|65|0 +1.3.6.1.2.1.5.30.1.3.2.10|65|0 +1.3.6.1.2.1.5.30.1.3.2.11|65|0 +1.3.6.1.2.1.5.30.1.3.2.12|65|0 +1.3.6.1.2.1.5.30.1.3.2.13|65|0 +1.3.6.1.2.1.5.30.1.3.2.14|65|0 +1.3.6.1.2.1.5.30.1.3.2.15|65|0 +1.3.6.1.2.1.5.30.1.3.2.16|65|0 +1.3.6.1.2.1.5.30.1.3.2.17|65|0 +1.3.6.1.2.1.5.30.1.3.2.18|65|0 +1.3.6.1.2.1.5.30.1.3.2.19|65|0 +1.3.6.1.2.1.5.30.1.3.2.20|65|0 +1.3.6.1.2.1.5.30.1.3.2.21|65|0 +1.3.6.1.2.1.5.30.1.3.2.22|65|0 +1.3.6.1.2.1.5.30.1.3.2.23|65|0 +1.3.6.1.2.1.5.30.1.3.2.24|65|0 +1.3.6.1.2.1.5.30.1.3.2.25|65|0 +1.3.6.1.2.1.5.30.1.3.2.26|65|0 +1.3.6.1.2.1.5.30.1.3.2.27|65|0 +1.3.6.1.2.1.5.30.1.3.2.28|65|0 +1.3.6.1.2.1.5.30.1.3.2.29|65|0 +1.3.6.1.2.1.5.30.1.3.2.30|65|0 +1.3.6.1.2.1.5.30.1.3.2.31|65|0 +1.3.6.1.2.1.5.30.1.3.2.32|65|0 +1.3.6.1.2.1.5.30.1.3.2.33|65|0 +1.3.6.1.2.1.5.30.1.3.2.34|65|0 +1.3.6.1.2.1.5.30.1.3.2.35|65|0 +1.3.6.1.2.1.5.30.1.3.2.36|65|0 +1.3.6.1.2.1.5.30.1.3.2.37|65|0 +1.3.6.1.2.1.5.30.1.3.2.38|65|0 +1.3.6.1.2.1.5.30.1.3.2.39|65|0 +1.3.6.1.2.1.5.30.1.3.2.40|65|0 +1.3.6.1.2.1.5.30.1.3.2.41|65|0 +1.3.6.1.2.1.5.30.1.3.2.42|65|0 +1.3.6.1.2.1.5.30.1.3.2.43|65|0 +1.3.6.1.2.1.5.30.1.3.2.44|65|0 +1.3.6.1.2.1.5.30.1.3.2.45|65|0 +1.3.6.1.2.1.5.30.1.3.2.46|65|0 +1.3.6.1.2.1.5.30.1.3.2.47|65|0 +1.3.6.1.2.1.5.30.1.3.2.48|65|0 +1.3.6.1.2.1.5.30.1.3.2.49|65|0 +1.3.6.1.2.1.5.30.1.3.2.50|65|0 +1.3.6.1.2.1.5.30.1.3.2.51|65|0 +1.3.6.1.2.1.5.30.1.3.2.52|65|0 +1.3.6.1.2.1.5.30.1.3.2.53|65|0 +1.3.6.1.2.1.5.30.1.3.2.54|65|0 +1.3.6.1.2.1.5.30.1.3.2.55|65|0 +1.3.6.1.2.1.5.30.1.3.2.56|65|0 +1.3.6.1.2.1.5.30.1.3.2.57|65|0 +1.3.6.1.2.1.5.30.1.3.2.58|65|0 +1.3.6.1.2.1.5.30.1.3.2.59|65|0 +1.3.6.1.2.1.5.30.1.3.2.60|65|0 +1.3.6.1.2.1.5.30.1.3.2.61|65|0 +1.3.6.1.2.1.5.30.1.3.2.62|65|0 +1.3.6.1.2.1.5.30.1.3.2.63|65|0 +1.3.6.1.2.1.5.30.1.3.2.64|65|0 +1.3.6.1.2.1.5.30.1.3.2.65|65|0 +1.3.6.1.2.1.5.30.1.3.2.66|65|0 +1.3.6.1.2.1.5.30.1.3.2.67|65|0 +1.3.6.1.2.1.5.30.1.3.2.68|65|0 +1.3.6.1.2.1.5.30.1.3.2.69|65|0 +1.3.6.1.2.1.5.30.1.3.2.70|65|0 +1.3.6.1.2.1.5.30.1.3.2.71|65|0 +1.3.6.1.2.1.5.30.1.3.2.72|65|0 +1.3.6.1.2.1.5.30.1.3.2.73|65|0 +1.3.6.1.2.1.5.30.1.3.2.74|65|0 +1.3.6.1.2.1.5.30.1.3.2.75|65|0 +1.3.6.1.2.1.5.30.1.3.2.76|65|0 +1.3.6.1.2.1.5.30.1.3.2.77|65|0 +1.3.6.1.2.1.5.30.1.3.2.78|65|0 +1.3.6.1.2.1.5.30.1.3.2.79|65|0 +1.3.6.1.2.1.5.30.1.3.2.80|65|0 +1.3.6.1.2.1.5.30.1.3.2.81|65|0 +1.3.6.1.2.1.5.30.1.3.2.82|65|0 +1.3.6.1.2.1.5.30.1.3.2.83|65|0 +1.3.6.1.2.1.5.30.1.3.2.84|65|0 +1.3.6.1.2.1.5.30.1.3.2.85|65|0 +1.3.6.1.2.1.5.30.1.3.2.86|65|0 +1.3.6.1.2.1.5.30.1.3.2.87|65|0 +1.3.6.1.2.1.5.30.1.3.2.88|65|0 +1.3.6.1.2.1.5.30.1.3.2.89|65|0 +1.3.6.1.2.1.5.30.1.3.2.90|65|0 +1.3.6.1.2.1.5.30.1.3.2.91|65|0 +1.3.6.1.2.1.5.30.1.3.2.92|65|0 +1.3.6.1.2.1.5.30.1.3.2.93|65|0 +1.3.6.1.2.1.5.30.1.3.2.94|65|0 +1.3.6.1.2.1.5.30.1.3.2.95|65|0 +1.3.6.1.2.1.5.30.1.3.2.96|65|0 +1.3.6.1.2.1.5.30.1.3.2.97|65|0 +1.3.6.1.2.1.5.30.1.3.2.98|65|0 +1.3.6.1.2.1.5.30.1.3.2.99|65|0 +1.3.6.1.2.1.5.30.1.3.2.100|65|0 +1.3.6.1.2.1.5.30.1.3.2.101|65|0 +1.3.6.1.2.1.5.30.1.3.2.102|65|0 +1.3.6.1.2.1.5.30.1.3.2.103|65|0 +1.3.6.1.2.1.5.30.1.3.2.104|65|0 +1.3.6.1.2.1.5.30.1.3.2.105|65|0 +1.3.6.1.2.1.5.30.1.3.2.106|65|0 +1.3.6.1.2.1.5.30.1.3.2.107|65|0 +1.3.6.1.2.1.5.30.1.3.2.108|65|0 +1.3.6.1.2.1.5.30.1.3.2.109|65|0 +1.3.6.1.2.1.5.30.1.3.2.110|65|0 +1.3.6.1.2.1.5.30.1.3.2.111|65|0 +1.3.6.1.2.1.5.30.1.3.2.112|65|0 +1.3.6.1.2.1.5.30.1.3.2.113|65|0 +1.3.6.1.2.1.5.30.1.3.2.114|65|0 +1.3.6.1.2.1.5.30.1.3.2.115|65|0 +1.3.6.1.2.1.5.30.1.3.2.116|65|0 +1.3.6.1.2.1.5.30.1.3.2.117|65|0 +1.3.6.1.2.1.5.30.1.3.2.118|65|0 +1.3.6.1.2.1.5.30.1.3.2.119|65|0 +1.3.6.1.2.1.5.30.1.3.2.120|65|0 +1.3.6.1.2.1.5.30.1.3.2.121|65|0 +1.3.6.1.2.1.5.30.1.3.2.122|65|0 +1.3.6.1.2.1.5.30.1.3.2.123|65|0 +1.3.6.1.2.1.5.30.1.3.2.124|65|0 +1.3.6.1.2.1.5.30.1.3.2.125|65|0 +1.3.6.1.2.1.5.30.1.3.2.126|65|0 +1.3.6.1.2.1.5.30.1.3.2.127|65|0 +1.3.6.1.2.1.5.30.1.3.2.128|65|5 +1.3.6.1.2.1.5.30.1.3.2.129|65|10 +1.3.6.1.2.1.5.30.1.3.2.130|65|0 +1.3.6.1.2.1.5.30.1.3.2.131|65|0 +1.3.6.1.2.1.5.30.1.3.2.132|65|0 +1.3.6.1.2.1.5.30.1.3.2.133|65|0 +1.3.6.1.2.1.5.30.1.3.2.134|65|0 +1.3.6.1.2.1.5.30.1.3.2.135|65|6162 +1.3.6.1.2.1.5.30.1.3.2.136|65|270 +1.3.6.1.2.1.5.30.1.3.2.137|65|0 +1.3.6.1.2.1.5.30.1.3.2.138|65|0 +1.3.6.1.2.1.5.30.1.3.2.139|65|0 +1.3.6.1.2.1.5.30.1.3.2.140|65|0 +1.3.6.1.2.1.5.30.1.3.2.141|65|0 +1.3.6.1.2.1.5.30.1.3.2.142|65|0 +1.3.6.1.2.1.5.30.1.3.2.143|65|0 +1.3.6.1.2.1.5.30.1.3.2.144|65|0 +1.3.6.1.2.1.5.30.1.3.2.145|65|0 +1.3.6.1.2.1.5.30.1.3.2.146|65|0 +1.3.6.1.2.1.5.30.1.3.2.147|65|0 +1.3.6.1.2.1.5.30.1.3.2.148|65|0 +1.3.6.1.2.1.5.30.1.3.2.149|65|0 +1.3.6.1.2.1.5.30.1.3.2.150|65|0 +1.3.6.1.2.1.5.30.1.3.2.151|65|0 +1.3.6.1.2.1.5.30.1.3.2.152|65|0 +1.3.6.1.2.1.5.30.1.3.2.153|65|0 +1.3.6.1.2.1.5.30.1.3.2.154|65|0 +1.3.6.1.2.1.5.30.1.3.2.155|65|0 +1.3.6.1.2.1.5.30.1.3.2.156|65|0 +1.3.6.1.2.1.5.30.1.3.2.157|65|0 +1.3.6.1.2.1.5.30.1.3.2.158|65|0 +1.3.6.1.2.1.5.30.1.3.2.159|65|0 +1.3.6.1.2.1.5.30.1.3.2.160|65|0 +1.3.6.1.2.1.5.30.1.3.2.161|65|0 +1.3.6.1.2.1.5.30.1.3.2.162|65|0 +1.3.6.1.2.1.5.30.1.3.2.163|65|0 +1.3.6.1.2.1.5.30.1.3.2.164|65|0 +1.3.6.1.2.1.5.30.1.3.2.165|65|0 +1.3.6.1.2.1.5.30.1.3.2.166|65|0 +1.3.6.1.2.1.5.30.1.3.2.167|65|0 +1.3.6.1.2.1.5.30.1.3.2.168|65|0 +1.3.6.1.2.1.5.30.1.3.2.169|65|0 +1.3.6.1.2.1.5.30.1.3.2.170|65|0 +1.3.6.1.2.1.5.30.1.3.2.171|65|0 +1.3.6.1.2.1.5.30.1.3.2.172|65|0 +1.3.6.1.2.1.5.30.1.3.2.173|65|0 +1.3.6.1.2.1.5.30.1.3.2.174|65|0 +1.3.6.1.2.1.5.30.1.3.2.175|65|0 +1.3.6.1.2.1.5.30.1.3.2.176|65|0 +1.3.6.1.2.1.5.30.1.3.2.177|65|0 +1.3.6.1.2.1.5.30.1.3.2.178|65|0 +1.3.6.1.2.1.5.30.1.3.2.179|65|0 +1.3.6.1.2.1.5.30.1.3.2.180|65|0 +1.3.6.1.2.1.5.30.1.3.2.181|65|0 +1.3.6.1.2.1.5.30.1.3.2.182|65|0 +1.3.6.1.2.1.5.30.1.3.2.183|65|0 +1.3.6.1.2.1.5.30.1.3.2.184|65|0 +1.3.6.1.2.1.5.30.1.3.2.185|65|0 +1.3.6.1.2.1.5.30.1.3.2.186|65|0 +1.3.6.1.2.1.5.30.1.3.2.187|65|0 +1.3.6.1.2.1.5.30.1.3.2.188|65|0 +1.3.6.1.2.1.5.30.1.3.2.189|65|0 +1.3.6.1.2.1.5.30.1.3.2.190|65|0 +1.3.6.1.2.1.5.30.1.3.2.191|65|0 +1.3.6.1.2.1.5.30.1.3.2.192|65|0 +1.3.6.1.2.1.5.30.1.3.2.193|65|0 +1.3.6.1.2.1.5.30.1.3.2.194|65|0 +1.3.6.1.2.1.5.30.1.3.2.195|65|0 +1.3.6.1.2.1.5.30.1.3.2.196|65|0 +1.3.6.1.2.1.5.30.1.3.2.197|65|0 +1.3.6.1.2.1.5.30.1.3.2.198|65|0 +1.3.6.1.2.1.5.30.1.3.2.199|65|0 +1.3.6.1.2.1.5.30.1.3.2.200|65|0 +1.3.6.1.2.1.5.30.1.3.2.201|65|0 +1.3.6.1.2.1.5.30.1.3.2.202|65|0 +1.3.6.1.2.1.5.30.1.3.2.203|65|0 +1.3.6.1.2.1.5.30.1.3.2.204|65|0 +1.3.6.1.2.1.5.30.1.3.2.205|65|0 +1.3.6.1.2.1.5.30.1.3.2.206|65|0 +1.3.6.1.2.1.5.30.1.3.2.207|65|0 +1.3.6.1.2.1.5.30.1.3.2.208|65|0 +1.3.6.1.2.1.5.30.1.3.2.209|65|0 +1.3.6.1.2.1.5.30.1.3.2.210|65|0 +1.3.6.1.2.1.5.30.1.3.2.211|65|0 +1.3.6.1.2.1.5.30.1.3.2.212|65|0 +1.3.6.1.2.1.5.30.1.3.2.213|65|0 +1.3.6.1.2.1.5.30.1.3.2.214|65|0 +1.3.6.1.2.1.5.30.1.3.2.215|65|0 +1.3.6.1.2.1.5.30.1.3.2.216|65|0 +1.3.6.1.2.1.5.30.1.3.2.217|65|0 +1.3.6.1.2.1.5.30.1.3.2.218|65|0 +1.3.6.1.2.1.5.30.1.3.2.219|65|0 +1.3.6.1.2.1.5.30.1.3.2.220|65|0 +1.3.6.1.2.1.5.30.1.3.2.221|65|0 +1.3.6.1.2.1.5.30.1.3.2.222|65|0 +1.3.6.1.2.1.5.30.1.3.2.223|65|0 +1.3.6.1.2.1.5.30.1.3.2.224|65|0 +1.3.6.1.2.1.5.30.1.3.2.225|65|0 +1.3.6.1.2.1.5.30.1.3.2.226|65|0 +1.3.6.1.2.1.5.30.1.3.2.227|65|0 +1.3.6.1.2.1.5.30.1.3.2.228|65|0 +1.3.6.1.2.1.5.30.1.3.2.229|65|0 +1.3.6.1.2.1.5.30.1.3.2.230|65|0 +1.3.6.1.2.1.5.30.1.3.2.231|65|0 +1.3.6.1.2.1.5.30.1.3.2.232|65|0 +1.3.6.1.2.1.5.30.1.3.2.233|65|0 +1.3.6.1.2.1.5.30.1.3.2.234|65|0 +1.3.6.1.2.1.5.30.1.3.2.235|65|0 +1.3.6.1.2.1.5.30.1.3.2.236|65|0 +1.3.6.1.2.1.5.30.1.3.2.237|65|0 +1.3.6.1.2.1.5.30.1.3.2.238|65|0 +1.3.6.1.2.1.5.30.1.3.2.239|65|0 +1.3.6.1.2.1.5.30.1.3.2.240|65|0 +1.3.6.1.2.1.5.30.1.3.2.241|65|0 +1.3.6.1.2.1.5.30.1.3.2.242|65|0 +1.3.6.1.2.1.5.30.1.3.2.243|65|0 +1.3.6.1.2.1.5.30.1.3.2.244|65|0 +1.3.6.1.2.1.5.30.1.3.2.245|65|0 +1.3.6.1.2.1.5.30.1.3.2.246|65|0 +1.3.6.1.2.1.5.30.1.3.2.247|65|0 +1.3.6.1.2.1.5.30.1.3.2.248|65|0 +1.3.6.1.2.1.5.30.1.3.2.249|65|0 +1.3.6.1.2.1.5.30.1.3.2.250|65|0 +1.3.6.1.2.1.5.30.1.3.2.251|65|0 +1.3.6.1.2.1.5.30.1.3.2.252|65|0 +1.3.6.1.2.1.5.30.1.3.2.253|65|0 +1.3.6.1.2.1.5.30.1.3.2.254|65|0 +1.3.6.1.2.1.5.30.1.3.2.255|65|0 +1.3.6.1.2.1.5.30.1.4.1.0|65|5 +1.3.6.1.2.1.5.30.1.4.1.1|65|0 +1.3.6.1.2.1.5.30.1.4.1.2|65|0 +1.3.6.1.2.1.5.30.1.4.1.3|65|1472 +1.3.6.1.2.1.5.30.1.4.1.4|65|0 +1.3.6.1.2.1.5.30.1.4.1.5|65|0 +1.3.6.1.2.1.5.30.1.4.1.6|65|0 +1.3.6.1.2.1.5.30.1.4.1.7|65|0 +1.3.6.1.2.1.5.30.1.4.1.8|65|15 +1.3.6.1.2.1.5.30.1.4.1.9|65|0 +1.3.6.1.2.1.5.30.1.4.1.10|65|0 +1.3.6.1.2.1.5.30.1.4.1.11|65|0 +1.3.6.1.2.1.5.30.1.4.1.12|65|0 +1.3.6.1.2.1.5.30.1.4.1.13|65|0 +1.3.6.1.2.1.5.30.1.4.1.14|65|0 +1.3.6.1.2.1.5.30.1.4.1.15|65|0 +1.3.6.1.2.1.5.30.1.4.1.16|65|0 +1.3.6.1.2.1.5.30.1.4.1.17|65|0 +1.3.6.1.2.1.5.30.1.4.1.18|65|0 +1.3.6.1.2.1.5.30.1.4.1.19|65|0 +1.3.6.1.2.1.5.30.1.4.1.20|65|0 +1.3.6.1.2.1.5.30.1.4.1.21|65|0 +1.3.6.1.2.1.5.30.1.4.1.22|65|0 +1.3.6.1.2.1.5.30.1.4.1.23|65|0 +1.3.6.1.2.1.5.30.1.4.1.24|65|0 +1.3.6.1.2.1.5.30.1.4.1.25|65|0 +1.3.6.1.2.1.5.30.1.4.1.26|65|0 +1.3.6.1.2.1.5.30.1.4.1.27|65|0 +1.3.6.1.2.1.5.30.1.4.1.28|65|0 +1.3.6.1.2.1.5.30.1.4.1.29|65|0 +1.3.6.1.2.1.5.30.1.4.1.30|65|0 +1.3.6.1.2.1.5.30.1.4.1.31|65|0 +1.3.6.1.2.1.5.30.1.4.1.32|65|0 +1.3.6.1.2.1.5.30.1.4.1.33|65|0 +1.3.6.1.2.1.5.30.1.4.1.34|65|0 +1.3.6.1.2.1.5.30.1.4.1.35|65|0 +1.3.6.1.2.1.5.30.1.4.1.36|65|0 +1.3.6.1.2.1.5.30.1.4.1.37|65|0 +1.3.6.1.2.1.5.30.1.4.1.38|65|0 +1.3.6.1.2.1.5.30.1.4.1.39|65|0 +1.3.6.1.2.1.5.30.1.4.1.40|65|0 +1.3.6.1.2.1.5.30.1.4.1.41|65|0 +1.3.6.1.2.1.5.30.1.4.1.42|65|0 +1.3.6.1.2.1.5.30.1.4.1.43|65|0 +1.3.6.1.2.1.5.30.1.4.1.44|65|0 +1.3.6.1.2.1.5.30.1.4.1.45|65|0 +1.3.6.1.2.1.5.30.1.4.1.46|65|0 +1.3.6.1.2.1.5.30.1.4.1.47|65|0 +1.3.6.1.2.1.5.30.1.4.1.48|65|0 +1.3.6.1.2.1.5.30.1.4.1.49|65|0 +1.3.6.1.2.1.5.30.1.4.1.50|65|0 +1.3.6.1.2.1.5.30.1.4.1.51|65|0 +1.3.6.1.2.1.5.30.1.4.1.52|65|0 +1.3.6.1.2.1.5.30.1.4.1.53|65|0 +1.3.6.1.2.1.5.30.1.4.1.54|65|0 +1.3.6.1.2.1.5.30.1.4.1.55|65|0 +1.3.6.1.2.1.5.30.1.4.1.56|65|0 +1.3.6.1.2.1.5.30.1.4.1.57|65|0 +1.3.6.1.2.1.5.30.1.4.1.58|65|0 +1.3.6.1.2.1.5.30.1.4.1.59|65|0 +1.3.6.1.2.1.5.30.1.4.1.60|65|0 +1.3.6.1.2.1.5.30.1.4.1.61|65|0 +1.3.6.1.2.1.5.30.1.4.1.62|65|0 +1.3.6.1.2.1.5.30.1.4.1.63|65|0 +1.3.6.1.2.1.5.30.1.4.1.64|65|0 +1.3.6.1.2.1.5.30.1.4.1.65|65|0 +1.3.6.1.2.1.5.30.1.4.1.66|65|0 +1.3.6.1.2.1.5.30.1.4.1.67|65|0 +1.3.6.1.2.1.5.30.1.4.1.68|65|0 +1.3.6.1.2.1.5.30.1.4.1.69|65|0 +1.3.6.1.2.1.5.30.1.4.1.70|65|0 +1.3.6.1.2.1.5.30.1.4.1.71|65|0 +1.3.6.1.2.1.5.30.1.4.1.72|65|0 +1.3.6.1.2.1.5.30.1.4.1.73|65|0 +1.3.6.1.2.1.5.30.1.4.1.74|65|0 +1.3.6.1.2.1.5.30.1.4.1.75|65|0 +1.3.6.1.2.1.5.30.1.4.1.76|65|0 +1.3.6.1.2.1.5.30.1.4.1.77|65|0 +1.3.6.1.2.1.5.30.1.4.1.78|65|0 +1.3.6.1.2.1.5.30.1.4.1.79|65|0 +1.3.6.1.2.1.5.30.1.4.1.80|65|0 +1.3.6.1.2.1.5.30.1.4.1.81|65|0 +1.3.6.1.2.1.5.30.1.4.1.82|65|0 +1.3.6.1.2.1.5.30.1.4.1.83|65|0 +1.3.6.1.2.1.5.30.1.4.1.84|65|0 +1.3.6.1.2.1.5.30.1.4.1.85|65|0 +1.3.6.1.2.1.5.30.1.4.1.86|65|0 +1.3.6.1.2.1.5.30.1.4.1.87|65|0 +1.3.6.1.2.1.5.30.1.4.1.88|65|0 +1.3.6.1.2.1.5.30.1.4.1.89|65|0 +1.3.6.1.2.1.5.30.1.4.1.90|65|0 +1.3.6.1.2.1.5.30.1.4.1.91|65|0 +1.3.6.1.2.1.5.30.1.4.1.92|65|0 +1.3.6.1.2.1.5.30.1.4.1.93|65|0 +1.3.6.1.2.1.5.30.1.4.1.94|65|0 +1.3.6.1.2.1.5.30.1.4.1.95|65|0 +1.3.6.1.2.1.5.30.1.4.1.96|65|0 +1.3.6.1.2.1.5.30.1.4.1.97|65|0 +1.3.6.1.2.1.5.30.1.4.1.98|65|0 +1.3.6.1.2.1.5.30.1.4.1.99|65|0 +1.3.6.1.2.1.5.30.1.4.1.100|65|0 +1.3.6.1.2.1.5.30.1.4.1.101|65|0 +1.3.6.1.2.1.5.30.1.4.1.102|65|0 +1.3.6.1.2.1.5.30.1.4.1.103|65|0 +1.3.6.1.2.1.5.30.1.4.1.104|65|0 +1.3.6.1.2.1.5.30.1.4.1.105|65|0 +1.3.6.1.2.1.5.30.1.4.1.106|65|0 +1.3.6.1.2.1.5.30.1.4.1.107|65|0 +1.3.6.1.2.1.5.30.1.4.1.108|65|0 +1.3.6.1.2.1.5.30.1.4.1.109|65|0 +1.3.6.1.2.1.5.30.1.4.1.110|65|0 +1.3.6.1.2.1.5.30.1.4.1.111|65|0 +1.3.6.1.2.1.5.30.1.4.1.112|65|0 +1.3.6.1.2.1.5.30.1.4.1.113|65|0 +1.3.6.1.2.1.5.30.1.4.1.114|65|0 +1.3.6.1.2.1.5.30.1.4.1.115|65|0 +1.3.6.1.2.1.5.30.1.4.1.116|65|0 +1.3.6.1.2.1.5.30.1.4.1.117|65|0 +1.3.6.1.2.1.5.30.1.4.1.118|65|0 +1.3.6.1.2.1.5.30.1.4.1.119|65|0 +1.3.6.1.2.1.5.30.1.4.1.120|65|0 +1.3.6.1.2.1.5.30.1.4.1.121|65|0 +1.3.6.1.2.1.5.30.1.4.1.122|65|0 +1.3.6.1.2.1.5.30.1.4.1.123|65|0 +1.3.6.1.2.1.5.30.1.4.1.124|65|0 +1.3.6.1.2.1.5.30.1.4.1.125|65|0 +1.3.6.1.2.1.5.30.1.4.1.126|65|0 +1.3.6.1.2.1.5.30.1.4.1.127|65|0 +1.3.6.1.2.1.5.30.1.4.1.128|65|0 +1.3.6.1.2.1.5.30.1.4.1.129|65|0 +1.3.6.1.2.1.5.30.1.4.1.130|65|0 +1.3.6.1.2.1.5.30.1.4.1.131|65|0 +1.3.6.1.2.1.5.30.1.4.1.132|65|0 +1.3.6.1.2.1.5.30.1.4.1.133|65|0 +1.3.6.1.2.1.5.30.1.4.1.134|65|0 +1.3.6.1.2.1.5.30.1.4.1.135|65|0 +1.3.6.1.2.1.5.30.1.4.1.136|65|0 +1.3.6.1.2.1.5.30.1.4.1.137|65|0 +1.3.6.1.2.1.5.30.1.4.1.138|65|0 +1.3.6.1.2.1.5.30.1.4.1.139|65|0 +1.3.6.1.2.1.5.30.1.4.1.140|65|0 +1.3.6.1.2.1.5.30.1.4.1.141|65|0 +1.3.6.1.2.1.5.30.1.4.1.142|65|0 +1.3.6.1.2.1.5.30.1.4.1.143|65|0 +1.3.6.1.2.1.5.30.1.4.1.144|65|0 +1.3.6.1.2.1.5.30.1.4.1.145|65|0 +1.3.6.1.2.1.5.30.1.4.1.146|65|0 +1.3.6.1.2.1.5.30.1.4.1.147|65|0 +1.3.6.1.2.1.5.30.1.4.1.148|65|0 +1.3.6.1.2.1.5.30.1.4.1.149|65|0 +1.3.6.1.2.1.5.30.1.4.1.150|65|0 +1.3.6.1.2.1.5.30.1.4.1.151|65|0 +1.3.6.1.2.1.5.30.1.4.1.152|65|0 +1.3.6.1.2.1.5.30.1.4.1.153|65|0 +1.3.6.1.2.1.5.30.1.4.1.154|65|0 +1.3.6.1.2.1.5.30.1.4.1.155|65|0 +1.3.6.1.2.1.5.30.1.4.1.156|65|0 +1.3.6.1.2.1.5.30.1.4.1.157|65|0 +1.3.6.1.2.1.5.30.1.4.1.158|65|0 +1.3.6.1.2.1.5.30.1.4.1.159|65|0 +1.3.6.1.2.1.5.30.1.4.1.160|65|0 +1.3.6.1.2.1.5.30.1.4.1.161|65|0 +1.3.6.1.2.1.5.30.1.4.1.162|65|0 +1.3.6.1.2.1.5.30.1.4.1.163|65|0 +1.3.6.1.2.1.5.30.1.4.1.164|65|0 +1.3.6.1.2.1.5.30.1.4.1.165|65|0 +1.3.6.1.2.1.5.30.1.4.1.166|65|0 +1.3.6.1.2.1.5.30.1.4.1.167|65|0 +1.3.6.1.2.1.5.30.1.4.1.168|65|0 +1.3.6.1.2.1.5.30.1.4.1.169|65|0 +1.3.6.1.2.1.5.30.1.4.1.170|65|0 +1.3.6.1.2.1.5.30.1.4.1.171|65|0 +1.3.6.1.2.1.5.30.1.4.1.172|65|0 +1.3.6.1.2.1.5.30.1.4.1.173|65|0 +1.3.6.1.2.1.5.30.1.4.1.174|65|0 +1.3.6.1.2.1.5.30.1.4.1.175|65|0 +1.3.6.1.2.1.5.30.1.4.1.176|65|0 +1.3.6.1.2.1.5.30.1.4.1.177|65|0 +1.3.6.1.2.1.5.30.1.4.1.178|65|0 +1.3.6.1.2.1.5.30.1.4.1.179|65|0 +1.3.6.1.2.1.5.30.1.4.1.180|65|0 +1.3.6.1.2.1.5.30.1.4.1.181|65|0 +1.3.6.1.2.1.5.30.1.4.1.182|65|0 +1.3.6.1.2.1.5.30.1.4.1.183|65|0 +1.3.6.1.2.1.5.30.1.4.1.184|65|0 +1.3.6.1.2.1.5.30.1.4.1.185|65|0 +1.3.6.1.2.1.5.30.1.4.1.186|65|0 +1.3.6.1.2.1.5.30.1.4.1.187|65|0 +1.3.6.1.2.1.5.30.1.4.1.188|65|0 +1.3.6.1.2.1.5.30.1.4.1.189|65|0 +1.3.6.1.2.1.5.30.1.4.1.190|65|0 +1.3.6.1.2.1.5.30.1.4.1.191|65|0 +1.3.6.1.2.1.5.30.1.4.1.192|65|0 +1.3.6.1.2.1.5.30.1.4.1.193|65|0 +1.3.6.1.2.1.5.30.1.4.1.194|65|0 +1.3.6.1.2.1.5.30.1.4.1.195|65|0 +1.3.6.1.2.1.5.30.1.4.1.196|65|0 +1.3.6.1.2.1.5.30.1.4.1.197|65|0 +1.3.6.1.2.1.5.30.1.4.1.198|65|0 +1.3.6.1.2.1.5.30.1.4.1.199|65|0 +1.3.6.1.2.1.5.30.1.4.1.200|65|0 +1.3.6.1.2.1.5.30.1.4.1.201|65|0 +1.3.6.1.2.1.5.30.1.4.1.202|65|0 +1.3.6.1.2.1.5.30.1.4.1.203|65|0 +1.3.6.1.2.1.5.30.1.4.1.204|65|0 +1.3.6.1.2.1.5.30.1.4.1.205|65|0 +1.3.6.1.2.1.5.30.1.4.1.206|65|0 +1.3.6.1.2.1.5.30.1.4.1.207|65|0 +1.3.6.1.2.1.5.30.1.4.1.208|65|0 +1.3.6.1.2.1.5.30.1.4.1.209|65|0 +1.3.6.1.2.1.5.30.1.4.1.210|65|0 +1.3.6.1.2.1.5.30.1.4.1.211|65|0 +1.3.6.1.2.1.5.30.1.4.1.212|65|0 +1.3.6.1.2.1.5.30.1.4.1.213|65|0 +1.3.6.1.2.1.5.30.1.4.1.214|65|0 +1.3.6.1.2.1.5.30.1.4.1.215|65|0 +1.3.6.1.2.1.5.30.1.4.1.216|65|0 +1.3.6.1.2.1.5.30.1.4.1.217|65|0 +1.3.6.1.2.1.5.30.1.4.1.218|65|0 +1.3.6.1.2.1.5.30.1.4.1.219|65|0 +1.3.6.1.2.1.5.30.1.4.1.220|65|0 +1.3.6.1.2.1.5.30.1.4.1.221|65|0 +1.3.6.1.2.1.5.30.1.4.1.222|65|0 +1.3.6.1.2.1.5.30.1.4.1.223|65|0 +1.3.6.1.2.1.5.30.1.4.1.224|65|0 +1.3.6.1.2.1.5.30.1.4.1.225|65|0 +1.3.6.1.2.1.5.30.1.4.1.226|65|0 +1.3.6.1.2.1.5.30.1.4.1.227|65|0 +1.3.6.1.2.1.5.30.1.4.1.228|65|0 +1.3.6.1.2.1.5.30.1.4.1.229|65|0 +1.3.6.1.2.1.5.30.1.4.1.230|65|0 +1.3.6.1.2.1.5.30.1.4.1.231|65|0 +1.3.6.1.2.1.5.30.1.4.1.232|65|0 +1.3.6.1.2.1.5.30.1.4.1.233|65|0 +1.3.6.1.2.1.5.30.1.4.1.234|65|0 +1.3.6.1.2.1.5.30.1.4.1.235|65|0 +1.3.6.1.2.1.5.30.1.4.1.236|65|0 +1.3.6.1.2.1.5.30.1.4.1.237|65|0 +1.3.6.1.2.1.5.30.1.4.1.238|65|0 +1.3.6.1.2.1.5.30.1.4.1.239|65|0 +1.3.6.1.2.1.5.30.1.4.1.240|65|0 +1.3.6.1.2.1.5.30.1.4.1.241|65|0 +1.3.6.1.2.1.5.30.1.4.1.242|65|0 +1.3.6.1.2.1.5.30.1.4.1.243|65|0 +1.3.6.1.2.1.5.30.1.4.1.244|65|0 +1.3.6.1.2.1.5.30.1.4.1.245|65|0 +1.3.6.1.2.1.5.30.1.4.1.246|65|0 +1.3.6.1.2.1.5.30.1.4.1.247|65|0 +1.3.6.1.2.1.5.30.1.4.1.248|65|0 +1.3.6.1.2.1.5.30.1.4.1.249|65|0 +1.3.6.1.2.1.5.30.1.4.1.250|65|0 +1.3.6.1.2.1.5.30.1.4.1.251|65|0 +1.3.6.1.2.1.5.30.1.4.1.252|65|0 +1.3.6.1.2.1.5.30.1.4.1.253|65|0 +1.3.6.1.2.1.5.30.1.4.1.254|65|0 +1.3.6.1.2.1.5.30.1.4.1.255|65|0 +1.3.6.1.2.1.5.30.1.4.2.0|65|0 +1.3.6.1.2.1.5.30.1.4.2.1|65|0 +1.3.6.1.2.1.5.30.1.4.2.2|65|0 +1.3.6.1.2.1.5.30.1.4.2.3|65|0 +1.3.6.1.2.1.5.30.1.4.2.4|65|0 +1.3.6.1.2.1.5.30.1.4.2.5|65|0 +1.3.6.1.2.1.5.30.1.4.2.6|65|0 +1.3.6.1.2.1.5.30.1.4.2.7|65|0 +1.3.6.1.2.1.5.30.1.4.2.8|65|0 +1.3.6.1.2.1.5.30.1.4.2.9|65|0 +1.3.6.1.2.1.5.30.1.4.2.10|65|0 +1.3.6.1.2.1.5.30.1.4.2.11|65|0 +1.3.6.1.2.1.5.30.1.4.2.12|65|0 +1.3.6.1.2.1.5.30.1.4.2.13|65|0 +1.3.6.1.2.1.5.30.1.4.2.14|65|0 +1.3.6.1.2.1.5.30.1.4.2.15|65|0 +1.3.6.1.2.1.5.30.1.4.2.16|65|0 +1.3.6.1.2.1.5.30.1.4.2.17|65|0 +1.3.6.1.2.1.5.30.1.4.2.18|65|0 +1.3.6.1.2.1.5.30.1.4.2.19|65|0 +1.3.6.1.2.1.5.30.1.4.2.20|65|0 +1.3.6.1.2.1.5.30.1.4.2.21|65|0 +1.3.6.1.2.1.5.30.1.4.2.22|65|0 +1.3.6.1.2.1.5.30.1.4.2.23|65|0 +1.3.6.1.2.1.5.30.1.4.2.24|65|0 +1.3.6.1.2.1.5.30.1.4.2.25|65|0 +1.3.6.1.2.1.5.30.1.4.2.26|65|0 +1.3.6.1.2.1.5.30.1.4.2.27|65|0 +1.3.6.1.2.1.5.30.1.4.2.28|65|0 +1.3.6.1.2.1.5.30.1.4.2.29|65|0 +1.3.6.1.2.1.5.30.1.4.2.30|65|0 +1.3.6.1.2.1.5.30.1.4.2.31|65|0 +1.3.6.1.2.1.5.30.1.4.2.32|65|0 +1.3.6.1.2.1.5.30.1.4.2.33|65|0 +1.3.6.1.2.1.5.30.1.4.2.34|65|0 +1.3.6.1.2.1.5.30.1.4.2.35|65|0 +1.3.6.1.2.1.5.30.1.4.2.36|65|0 +1.3.6.1.2.1.5.30.1.4.2.37|65|0 +1.3.6.1.2.1.5.30.1.4.2.38|65|0 +1.3.6.1.2.1.5.30.1.4.2.39|65|0 +1.3.6.1.2.1.5.30.1.4.2.40|65|0 +1.3.6.1.2.1.5.30.1.4.2.41|65|0 +1.3.6.1.2.1.5.30.1.4.2.42|65|0 +1.3.6.1.2.1.5.30.1.4.2.43|65|0 +1.3.6.1.2.1.5.30.1.4.2.44|65|0 +1.3.6.1.2.1.5.30.1.4.2.45|65|0 +1.3.6.1.2.1.5.30.1.4.2.46|65|0 +1.3.6.1.2.1.5.30.1.4.2.47|65|0 +1.3.6.1.2.1.5.30.1.4.2.48|65|0 +1.3.6.1.2.1.5.30.1.4.2.49|65|0 +1.3.6.1.2.1.5.30.1.4.2.50|65|0 +1.3.6.1.2.1.5.30.1.4.2.51|65|0 +1.3.6.1.2.1.5.30.1.4.2.52|65|0 +1.3.6.1.2.1.5.30.1.4.2.53|65|0 +1.3.6.1.2.1.5.30.1.4.2.54|65|0 +1.3.6.1.2.1.5.30.1.4.2.55|65|0 +1.3.6.1.2.1.5.30.1.4.2.56|65|0 +1.3.6.1.2.1.5.30.1.4.2.57|65|0 +1.3.6.1.2.1.5.30.1.4.2.58|65|0 +1.3.6.1.2.1.5.30.1.4.2.59|65|0 +1.3.6.1.2.1.5.30.1.4.2.60|65|0 +1.3.6.1.2.1.5.30.1.4.2.61|65|0 +1.3.6.1.2.1.5.30.1.4.2.62|65|0 +1.3.6.1.2.1.5.30.1.4.2.63|65|0 +1.3.6.1.2.1.5.30.1.4.2.64|65|0 +1.3.6.1.2.1.5.30.1.4.2.65|65|0 +1.3.6.1.2.1.5.30.1.4.2.66|65|0 +1.3.6.1.2.1.5.30.1.4.2.67|65|0 +1.3.6.1.2.1.5.30.1.4.2.68|65|0 +1.3.6.1.2.1.5.30.1.4.2.69|65|0 +1.3.6.1.2.1.5.30.1.4.2.70|65|0 +1.3.6.1.2.1.5.30.1.4.2.71|65|0 +1.3.6.1.2.1.5.30.1.4.2.72|65|0 +1.3.6.1.2.1.5.30.1.4.2.73|65|0 +1.3.6.1.2.1.5.30.1.4.2.74|65|0 +1.3.6.1.2.1.5.30.1.4.2.75|65|0 +1.3.6.1.2.1.5.30.1.4.2.76|65|0 +1.3.6.1.2.1.5.30.1.4.2.77|65|0 +1.3.6.1.2.1.5.30.1.4.2.78|65|0 +1.3.6.1.2.1.5.30.1.4.2.79|65|0 +1.3.6.1.2.1.5.30.1.4.2.80|65|0 +1.3.6.1.2.1.5.30.1.4.2.81|65|0 +1.3.6.1.2.1.5.30.1.4.2.82|65|0 +1.3.6.1.2.1.5.30.1.4.2.83|65|0 +1.3.6.1.2.1.5.30.1.4.2.84|65|0 +1.3.6.1.2.1.5.30.1.4.2.85|65|0 +1.3.6.1.2.1.5.30.1.4.2.86|65|0 +1.3.6.1.2.1.5.30.1.4.2.87|65|0 +1.3.6.1.2.1.5.30.1.4.2.88|65|0 +1.3.6.1.2.1.5.30.1.4.2.89|65|0 +1.3.6.1.2.1.5.30.1.4.2.90|65|0 +1.3.6.1.2.1.5.30.1.4.2.91|65|0 +1.3.6.1.2.1.5.30.1.4.2.92|65|0 +1.3.6.1.2.1.5.30.1.4.2.93|65|0 +1.3.6.1.2.1.5.30.1.4.2.94|65|0 +1.3.6.1.2.1.5.30.1.4.2.95|65|0 +1.3.6.1.2.1.5.30.1.4.2.96|65|0 +1.3.6.1.2.1.5.30.1.4.2.97|65|0 +1.3.6.1.2.1.5.30.1.4.2.98|65|0 +1.3.6.1.2.1.5.30.1.4.2.99|65|0 +1.3.6.1.2.1.5.30.1.4.2.100|65|0 +1.3.6.1.2.1.5.30.1.4.2.101|65|0 +1.3.6.1.2.1.5.30.1.4.2.102|65|0 +1.3.6.1.2.1.5.30.1.4.2.103|65|0 +1.3.6.1.2.1.5.30.1.4.2.104|65|0 +1.3.6.1.2.1.5.30.1.4.2.105|65|0 +1.3.6.1.2.1.5.30.1.4.2.106|65|0 +1.3.6.1.2.1.5.30.1.4.2.107|65|0 +1.3.6.1.2.1.5.30.1.4.2.108|65|0 +1.3.6.1.2.1.5.30.1.4.2.109|65|0 +1.3.6.1.2.1.5.30.1.4.2.110|65|0 +1.3.6.1.2.1.5.30.1.4.2.111|65|0 +1.3.6.1.2.1.5.30.1.4.2.112|65|0 +1.3.6.1.2.1.5.30.1.4.2.113|65|0 +1.3.6.1.2.1.5.30.1.4.2.114|65|0 +1.3.6.1.2.1.5.30.1.4.2.115|65|0 +1.3.6.1.2.1.5.30.1.4.2.116|65|0 +1.3.6.1.2.1.5.30.1.4.2.117|65|0 +1.3.6.1.2.1.5.30.1.4.2.118|65|0 +1.3.6.1.2.1.5.30.1.4.2.119|65|0 +1.3.6.1.2.1.5.30.1.4.2.120|65|0 +1.3.6.1.2.1.5.30.1.4.2.121|65|0 +1.3.6.1.2.1.5.30.1.4.2.122|65|0 +1.3.6.1.2.1.5.30.1.4.2.123|65|0 +1.3.6.1.2.1.5.30.1.4.2.124|65|0 +1.3.6.1.2.1.5.30.1.4.2.125|65|0 +1.3.6.1.2.1.5.30.1.4.2.126|65|0 +1.3.6.1.2.1.5.30.1.4.2.127|65|0 +1.3.6.1.2.1.5.30.1.4.2.128|65|10 +1.3.6.1.2.1.5.30.1.4.2.129|65|5 +1.3.6.1.2.1.5.30.1.4.2.130|65|0 +1.3.6.1.2.1.5.30.1.4.2.131|65|0 +1.3.6.1.2.1.5.30.1.4.2.132|65|0 +1.3.6.1.2.1.5.30.1.4.2.133|65|0 +1.3.6.1.2.1.5.30.1.4.2.134|65|0 +1.3.6.1.2.1.5.30.1.4.2.135|65|0 +1.3.6.1.2.1.5.30.1.4.2.136|65|0 +1.3.6.1.2.1.5.30.1.4.2.137|65|0 +1.3.6.1.2.1.5.30.1.4.2.138|65|0 +1.3.6.1.2.1.5.30.1.4.2.139|65|0 +1.3.6.1.2.1.5.30.1.4.2.140|65|0 +1.3.6.1.2.1.5.30.1.4.2.141|65|0 +1.3.6.1.2.1.5.30.1.4.2.142|65|0 +1.3.6.1.2.1.5.30.1.4.2.143|65|0 +1.3.6.1.2.1.5.30.1.4.2.144|65|0 +1.3.6.1.2.1.5.30.1.4.2.145|65|0 +1.3.6.1.2.1.5.30.1.4.2.146|65|0 +1.3.6.1.2.1.5.30.1.4.2.147|65|0 +1.3.6.1.2.1.5.30.1.4.2.148|65|0 +1.3.6.1.2.1.5.30.1.4.2.149|65|0 +1.3.6.1.2.1.5.30.1.4.2.150|65|0 +1.3.6.1.2.1.5.30.1.4.2.151|65|0 +1.3.6.1.2.1.5.30.1.4.2.152|65|0 +1.3.6.1.2.1.5.30.1.4.2.153|65|0 +1.3.6.1.2.1.5.30.1.4.2.154|65|0 +1.3.6.1.2.1.5.30.1.4.2.155|65|0 +1.3.6.1.2.1.5.30.1.4.2.156|65|0 +1.3.6.1.2.1.5.30.1.4.2.157|65|0 +1.3.6.1.2.1.5.30.1.4.2.158|65|0 +1.3.6.1.2.1.5.30.1.4.2.159|65|0 +1.3.6.1.2.1.5.30.1.4.2.160|65|0 +1.3.6.1.2.1.5.30.1.4.2.161|65|0 +1.3.6.1.2.1.5.30.1.4.2.162|65|0 +1.3.6.1.2.1.5.30.1.4.2.163|65|0 +1.3.6.1.2.1.5.30.1.4.2.164|65|0 +1.3.6.1.2.1.5.30.1.4.2.165|65|0 +1.3.6.1.2.1.5.30.1.4.2.166|65|0 +1.3.6.1.2.1.5.30.1.4.2.167|65|0 +1.3.6.1.2.1.5.30.1.4.2.168|65|0 +1.3.6.1.2.1.5.30.1.4.2.169|65|0 +1.3.6.1.2.1.5.30.1.4.2.170|65|0 +1.3.6.1.2.1.5.30.1.4.2.171|65|0 +1.3.6.1.2.1.5.30.1.4.2.172|65|0 +1.3.6.1.2.1.5.30.1.4.2.173|65|0 +1.3.6.1.2.1.5.30.1.4.2.174|65|0 +1.3.6.1.2.1.5.30.1.4.2.175|65|0 +1.3.6.1.2.1.5.30.1.4.2.176|65|0 +1.3.6.1.2.1.5.30.1.4.2.177|65|0 +1.3.6.1.2.1.5.30.1.4.2.178|65|0 +1.3.6.1.2.1.5.30.1.4.2.179|65|0 +1.3.6.1.2.1.5.30.1.4.2.180|65|0 +1.3.6.1.2.1.5.30.1.4.2.181|65|0 +1.3.6.1.2.1.5.30.1.4.2.182|65|0 +1.3.6.1.2.1.5.30.1.4.2.183|65|0 +1.3.6.1.2.1.5.30.1.4.2.184|65|0 +1.3.6.1.2.1.5.30.1.4.2.185|65|0 +1.3.6.1.2.1.5.30.1.4.2.186|65|0 +1.3.6.1.2.1.5.30.1.4.2.187|65|0 +1.3.6.1.2.1.5.30.1.4.2.188|65|0 +1.3.6.1.2.1.5.30.1.4.2.189|65|0 +1.3.6.1.2.1.5.30.1.4.2.190|65|0 +1.3.6.1.2.1.5.30.1.4.2.191|65|0 +1.3.6.1.2.1.5.30.1.4.2.192|65|0 +1.3.6.1.2.1.5.30.1.4.2.193|65|0 +1.3.6.1.2.1.5.30.1.4.2.194|65|0 +1.3.6.1.2.1.5.30.1.4.2.195|65|0 +1.3.6.1.2.1.5.30.1.4.2.196|65|0 +1.3.6.1.2.1.5.30.1.4.2.197|65|0 +1.3.6.1.2.1.5.30.1.4.2.198|65|0 +1.3.6.1.2.1.5.30.1.4.2.199|65|0 +1.3.6.1.2.1.5.30.1.4.2.200|65|0 +1.3.6.1.2.1.5.30.1.4.2.201|65|0 +1.3.6.1.2.1.5.30.1.4.2.202|65|0 +1.3.6.1.2.1.5.30.1.4.2.203|65|0 +1.3.6.1.2.1.5.30.1.4.2.204|65|0 +1.3.6.1.2.1.5.30.1.4.2.205|65|0 +1.3.6.1.2.1.5.30.1.4.2.206|65|0 +1.3.6.1.2.1.5.30.1.4.2.207|65|0 +1.3.6.1.2.1.5.30.1.4.2.208|65|0 +1.3.6.1.2.1.5.30.1.4.2.209|65|0 +1.3.6.1.2.1.5.30.1.4.2.210|65|0 +1.3.6.1.2.1.5.30.1.4.2.211|65|0 +1.3.6.1.2.1.5.30.1.4.2.212|65|0 +1.3.6.1.2.1.5.30.1.4.2.213|65|0 +1.3.6.1.2.1.5.30.1.4.2.214|65|0 +1.3.6.1.2.1.5.30.1.4.2.215|65|0 +1.3.6.1.2.1.5.30.1.4.2.216|65|0 +1.3.6.1.2.1.5.30.1.4.2.217|65|0 +1.3.6.1.2.1.5.30.1.4.2.218|65|0 +1.3.6.1.2.1.5.30.1.4.2.219|65|0 +1.3.6.1.2.1.5.30.1.4.2.220|65|0 +1.3.6.1.2.1.5.30.1.4.2.221|65|0 +1.3.6.1.2.1.5.30.1.4.2.222|65|0 +1.3.6.1.2.1.5.30.1.4.2.223|65|0 +1.3.6.1.2.1.5.30.1.4.2.224|65|0 +1.3.6.1.2.1.5.30.1.4.2.225|65|0 +1.3.6.1.2.1.5.30.1.4.2.226|65|0 +1.3.6.1.2.1.5.30.1.4.2.227|65|0 +1.3.6.1.2.1.5.30.1.4.2.228|65|0 +1.3.6.1.2.1.5.30.1.4.2.229|65|0 +1.3.6.1.2.1.5.30.1.4.2.230|65|0 +1.3.6.1.2.1.5.30.1.4.2.231|65|0 +1.3.6.1.2.1.5.30.1.4.2.232|65|0 +1.3.6.1.2.1.5.30.1.4.2.233|65|0 +1.3.6.1.2.1.5.30.1.4.2.234|65|0 +1.3.6.1.2.1.5.30.1.4.2.235|65|0 +1.3.6.1.2.1.5.30.1.4.2.236|65|0 +1.3.6.1.2.1.5.30.1.4.2.237|65|0 +1.3.6.1.2.1.5.30.1.4.2.238|65|0 +1.3.6.1.2.1.5.30.1.4.2.239|65|0 +1.3.6.1.2.1.5.30.1.4.2.240|65|0 +1.3.6.1.2.1.5.30.1.4.2.241|65|0 +1.3.6.1.2.1.5.30.1.4.2.242|65|0 +1.3.6.1.2.1.5.30.1.4.2.243|65|0 +1.3.6.1.2.1.5.30.1.4.2.244|65|0 +1.3.6.1.2.1.5.30.1.4.2.245|65|0 +1.3.6.1.2.1.5.30.1.4.2.246|65|0 +1.3.6.1.2.1.5.30.1.4.2.247|65|0 +1.3.6.1.2.1.5.30.1.4.2.248|65|0 +1.3.6.1.2.1.5.30.1.4.2.249|65|0 +1.3.6.1.2.1.5.30.1.4.2.250|65|0 +1.3.6.1.2.1.5.30.1.4.2.251|65|0 +1.3.6.1.2.1.5.30.1.4.2.252|65|0 +1.3.6.1.2.1.5.30.1.4.2.253|65|0 +1.3.6.1.2.1.5.30.1.4.2.254|65|0 +1.3.6.1.2.1.5.30.1.4.2.255|65|0 +1.3.6.1.2.1.6.5.0|65|1426 +1.3.6.1.2.1.6.6.0|65|57 +1.3.6.1.2.1.6.7.0|65|49 +1.3.6.1.2.1.6.8.0|65|1383 +1.3.6.1.2.1.6.9.0|66|2 +1.3.6.1.2.1.6.10.0|65|159383 +1.3.6.1.2.1.6.11.0|65|48571 +1.3.6.1.2.1.6.12.0|65|1 +1.3.6.1.2.1.6.14.0|65|0 +1.3.6.1.2.1.6.15.0|65|1397 +1.3.6.1.2.1.6.18.0|70|48514 +1.3.6.1.2.1.6.19.1.7.1.4.188.120.0.3.179.1.4.188.120.0.2.60882|2|5 +1.3.6.1.2.1.7.1.0|65|458 +1.3.6.1.2.1.7.2.0|65|0 +1.3.6.1.2.1.7.3.0|65|0 +1.3.6.1.2.1.7.4.0|65|11560 +1.3.6.1.2.1.11.1.0|65|252293 +1.3.6.1.2.1.11.2.0|65|251726 +1.3.6.1.2.1.11.3.0|65|31 +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|79646 +1.3.6.1.2.1.11.14.0|65|0 +1.3.6.1.2.1.11.15.0|65|13293 +1.3.6.1.2.1.11.16.0|65|23711 +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|251750 +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.15.2.0|66|49115 +1.3.6.1.2.1.15.3.1.2.87.197.252.5|2|1 +1.3.6.1.2.1.15.3.1.2.87.197.252.141|2|1 +1.3.6.1.2.1.15.3.1.2.88.86.99.225|2|1 +1.3.6.1.2.1.15.3.1.2.91.213.211.1|2|1 +1.3.6.1.2.1.15.3.1.2.91.213.211.2|2|1 +1.3.6.1.2.1.15.3.1.2.91.213.211.62|2|1 +1.3.6.1.2.1.15.3.1.2.91.213.211.63|2|1 +1.3.6.1.2.1.15.3.1.2.91.213.211.100|2|1 +1.3.6.1.2.1.15.3.1.2.91.213.211.101|2|1 +1.3.6.1.2.1.15.3.1.2.91.213.211.116|2|1 +1.3.6.1.2.1.15.3.1.2.91.213.211.117|2|1 +1.3.6.1.2.1.15.3.1.2.91.213.211.192|2|1 +1.3.6.1.2.1.15.3.1.2.91.213.211.214|2|1 +1.3.6.1.2.1.15.3.1.2.188.120.0.2|2|6 +1.3.6.1.2.1.15.3.1.2.188.120.0.147|2|3 +1.3.6.1.2.1.15.3.1.2.192.108.148.1|2|1 +1.3.6.1.2.1.15.3.1.2.192.108.148.2|2|1 +1.3.6.1.2.1.15.3.1.2.192.108.148.5|2|1 +1.3.6.1.2.1.15.3.1.2.192.108.148.10|2|1 +1.3.6.1.2.1.15.3.1.2.192.108.148.15|2|1 +1.3.6.1.2.1.15.3.1.2.192.108.148.20|2|1 +1.3.6.1.2.1.15.3.1.2.192.108.148.25|2|1 +1.3.6.1.2.1.15.3.1.2.192.108.148.30|2|1 +1.3.6.1.2.1.15.3.1.2.192.108.148.45|2|1 +1.3.6.1.2.1.15.3.1.2.192.108.148.50|2|1 +1.3.6.1.2.1.15.3.1.2.192.108.148.52|2|1 +1.3.6.1.2.1.15.3.1.2.192.108.148.55|2|1 +1.3.6.1.2.1.15.3.1.2.192.108.148.65|2|1 +1.3.6.1.2.1.15.3.1.2.192.108.148.72|2|1 +1.3.6.1.2.1.15.3.1.2.192.108.148.75|2|1 +1.3.6.1.2.1.15.3.1.2.192.108.148.80|2|1 +1.3.6.1.2.1.15.3.1.2.192.108.148.82|2|1 +1.3.6.1.2.1.15.3.1.2.192.108.148.85|2|1 +1.3.6.1.2.1.15.3.1.2.192.108.148.92|2|1 +1.3.6.1.2.1.15.3.1.2.192.108.148.100|2|1 +1.3.6.1.2.1.15.3.1.2.192.108.148.101|2|1 +1.3.6.1.2.1.15.3.1.2.192.108.148.120|2|1 +1.3.6.1.2.1.15.3.1.2.192.108.148.125|2|1 +1.3.6.1.2.1.15.3.1.2.192.108.148.155|2|1 +1.3.6.1.2.1.15.3.1.2.192.108.148.160|2|1 +1.3.6.1.2.1.15.3.1.2.192.108.148.165|2|1 +1.3.6.1.2.1.15.3.1.2.192.108.148.180|2|1 +1.3.6.1.2.1.15.3.1.2.192.108.148.185|2|1 +1.3.6.1.2.1.15.3.1.2.192.108.148.186|2|1 +1.3.6.1.2.1.15.3.1.2.192.108.148.190|2|1 +1.3.6.1.2.1.15.3.1.2.192.108.148.195|2|1 +1.3.6.1.2.1.15.3.1.2.192.108.148.210|2|1 +1.3.6.1.2.1.15.3.1.2.192.108.148.215|2|1 +1.3.6.1.2.1.15.3.1.2.192.108.148.235|2|1 +1.3.6.1.2.1.15.3.1.2.192.108.148.245|2|1 +1.3.6.1.2.1.15.3.1.3.87.197.252.5|2|2 +1.3.6.1.2.1.15.3.1.3.87.197.252.141|2|2 +1.3.6.1.2.1.15.3.1.3.88.86.99.225|2|2 +1.3.6.1.2.1.15.3.1.3.91.213.211.1|2|2 +1.3.6.1.2.1.15.3.1.3.91.213.211.2|2|2 +1.3.6.1.2.1.15.3.1.3.91.213.211.62|2|2 +1.3.6.1.2.1.15.3.1.3.91.213.211.63|2|2 +1.3.6.1.2.1.15.3.1.3.91.213.211.100|2|2 +1.3.6.1.2.1.15.3.1.3.91.213.211.101|2|2 +1.3.6.1.2.1.15.3.1.3.91.213.211.116|2|2 +1.3.6.1.2.1.15.3.1.3.91.213.211.117|2|2 +1.3.6.1.2.1.15.3.1.3.91.213.211.192|2|2 +1.3.6.1.2.1.15.3.1.3.91.213.211.214|2|2 +1.3.6.1.2.1.15.3.1.3.188.120.0.2|2|2 +1.3.6.1.2.1.15.3.1.3.188.120.0.147|2|2 +1.3.6.1.2.1.15.3.1.3.192.108.148.1|2|2 +1.3.6.1.2.1.15.3.1.3.192.108.148.2|2|2 +1.3.6.1.2.1.15.3.1.3.192.108.148.5|2|2 +1.3.6.1.2.1.15.3.1.3.192.108.148.10|2|2 +1.3.6.1.2.1.15.3.1.3.192.108.148.15|2|2 +1.3.6.1.2.1.15.3.1.3.192.108.148.20|2|2 +1.3.6.1.2.1.15.3.1.3.192.108.148.25|2|2 +1.3.6.1.2.1.15.3.1.3.192.108.148.30|2|2 +1.3.6.1.2.1.15.3.1.3.192.108.148.45|2|2 +1.3.6.1.2.1.15.3.1.3.192.108.148.50|2|2 +1.3.6.1.2.1.15.3.1.3.192.108.148.52|2|2 +1.3.6.1.2.1.15.3.1.3.192.108.148.55|2|2 +1.3.6.1.2.1.15.3.1.3.192.108.148.65|2|2 +1.3.6.1.2.1.15.3.1.3.192.108.148.72|2|2 +1.3.6.1.2.1.15.3.1.3.192.108.148.75|2|2 +1.3.6.1.2.1.15.3.1.3.192.108.148.80|2|2 +1.3.6.1.2.1.15.3.1.3.192.108.148.82|2|2 +1.3.6.1.2.1.15.3.1.3.192.108.148.85|2|2 +1.3.6.1.2.1.15.3.1.3.192.108.148.92|2|2 +1.3.6.1.2.1.15.3.1.3.192.108.148.100|2|2 +1.3.6.1.2.1.15.3.1.3.192.108.148.101|2|2 +1.3.6.1.2.1.15.3.1.3.192.108.148.120|2|2 +1.3.6.1.2.1.15.3.1.3.192.108.148.125|2|2 +1.3.6.1.2.1.15.3.1.3.192.108.148.155|2|2 +1.3.6.1.2.1.15.3.1.3.192.108.148.160|2|2 +1.3.6.1.2.1.15.3.1.3.192.108.148.165|2|2 +1.3.6.1.2.1.15.3.1.3.192.108.148.180|2|2 +1.3.6.1.2.1.15.3.1.3.192.108.148.185|2|2 +1.3.6.1.2.1.15.3.1.3.192.108.148.186|2|2 +1.3.6.1.2.1.15.3.1.3.192.108.148.190|2|2 +1.3.6.1.2.1.15.3.1.3.192.108.148.195|2|2 +1.3.6.1.2.1.15.3.1.3.192.108.148.210|2|2 +1.3.6.1.2.1.15.3.1.3.192.108.148.215|2|2 +1.3.6.1.2.1.15.3.1.3.192.108.148.235|2|2 +1.3.6.1.2.1.15.3.1.3.192.108.148.245|2|2 +1.3.6.1.2.1.15.3.1.5.87.197.252.5|64|0.0.0.0 +1.3.6.1.2.1.15.3.1.5.87.197.252.141|64|0.0.0.0 +1.3.6.1.2.1.15.3.1.5.88.86.99.225|64|0.0.0.0 +1.3.6.1.2.1.15.3.1.5.91.213.211.1|64|0.0.0.0 +1.3.6.1.2.1.15.3.1.5.91.213.211.2|64|0.0.0.0 +1.3.6.1.2.1.15.3.1.5.91.213.211.62|64|0.0.0.0 +1.3.6.1.2.1.15.3.1.5.91.213.211.63|64|0.0.0.0 +1.3.6.1.2.1.15.3.1.5.91.213.211.100|64|0.0.0.0 +1.3.6.1.2.1.15.3.1.5.91.213.211.101|64|0.0.0.0 +1.3.6.1.2.1.15.3.1.5.91.213.211.116|64|0.0.0.0 +1.3.6.1.2.1.15.3.1.5.91.213.211.117|64|0.0.0.0 +1.3.6.1.2.1.15.3.1.5.91.213.211.192|64|0.0.0.0 +1.3.6.1.2.1.15.3.1.5.91.213.211.214|64|0.0.0.0 +1.3.6.1.2.1.15.3.1.5.188.120.0.2|64|188.120.0.3 +1.3.6.1.2.1.15.3.1.5.188.120.0.147|64|0.0.0.0 +1.3.6.1.2.1.15.3.1.5.192.108.148.1|64|0.0.0.0 +1.3.6.1.2.1.15.3.1.5.192.108.148.2|64|0.0.0.0 +1.3.6.1.2.1.15.3.1.5.192.108.148.5|64|0.0.0.0 +1.3.6.1.2.1.15.3.1.5.192.108.148.10|64|0.0.0.0 +1.3.6.1.2.1.15.3.1.5.192.108.148.15|64|0.0.0.0 +1.3.6.1.2.1.15.3.1.5.192.108.148.20|64|0.0.0.0 +1.3.6.1.2.1.15.3.1.5.192.108.148.25|64|0.0.0.0 +1.3.6.1.2.1.15.3.1.5.192.108.148.30|64|0.0.0.0 +1.3.6.1.2.1.15.3.1.5.192.108.148.45|64|0.0.0.0 +1.3.6.1.2.1.15.3.1.5.192.108.148.50|64|0.0.0.0 +1.3.6.1.2.1.15.3.1.5.192.108.148.52|64|0.0.0.0 +1.3.6.1.2.1.15.3.1.5.192.108.148.55|64|0.0.0.0 +1.3.6.1.2.1.15.3.1.5.192.108.148.65|64|0.0.0.0 +1.3.6.1.2.1.15.3.1.5.192.108.148.72|64|0.0.0.0 +1.3.6.1.2.1.15.3.1.5.192.108.148.75|64|0.0.0.0 +1.3.6.1.2.1.15.3.1.5.192.108.148.80|64|0.0.0.0 +1.3.6.1.2.1.15.3.1.5.192.108.148.82|64|0.0.0.0 +1.3.6.1.2.1.15.3.1.5.192.108.148.85|64|0.0.0.0 +1.3.6.1.2.1.15.3.1.5.192.108.148.92|64|0.0.0.0 +1.3.6.1.2.1.15.3.1.5.192.108.148.100|64|0.0.0.0 +1.3.6.1.2.1.15.3.1.5.192.108.148.101|64|0.0.0.0 +1.3.6.1.2.1.15.3.1.5.192.108.148.120|64|0.0.0.0 +1.3.6.1.2.1.15.3.1.5.192.108.148.125|64|0.0.0.0 +1.3.6.1.2.1.15.3.1.5.192.108.148.155|64|0.0.0.0 +1.3.6.1.2.1.15.3.1.5.192.108.148.160|64|0.0.0.0 +1.3.6.1.2.1.15.3.1.5.192.108.148.165|64|0.0.0.0 +1.3.6.1.2.1.15.3.1.5.192.108.148.180|64|0.0.0.0 +1.3.6.1.2.1.15.3.1.5.192.108.148.185|64|0.0.0.0 +1.3.6.1.2.1.15.3.1.5.192.108.148.186|64|0.0.0.0 +1.3.6.1.2.1.15.3.1.5.192.108.148.190|64|0.0.0.0 +1.3.6.1.2.1.15.3.1.5.192.108.148.195|64|0.0.0.0 +1.3.6.1.2.1.15.3.1.5.192.108.148.210|64|0.0.0.0 +1.3.6.1.2.1.15.3.1.5.192.108.148.215|64|0.0.0.0 +1.3.6.1.2.1.15.3.1.5.192.108.148.235|64|0.0.0.0 +1.3.6.1.2.1.15.3.1.5.192.108.148.245|64|0.0.0.0 +1.3.6.1.2.1.15.3.1.10.87.197.252.5|65|0 +1.3.6.1.2.1.15.3.1.10.87.197.252.141|65|0 +1.3.6.1.2.1.15.3.1.10.88.86.99.225|65|0 +1.3.6.1.2.1.15.3.1.10.91.213.211.1|65|0 +1.3.6.1.2.1.15.3.1.10.91.213.211.2|65|0 +1.3.6.1.2.1.15.3.1.10.91.213.211.62|65|0 +1.3.6.1.2.1.15.3.1.10.91.213.211.63|65|0 +1.3.6.1.2.1.15.3.1.10.91.213.211.100|65|0 +1.3.6.1.2.1.15.3.1.10.91.213.211.101|65|0 +1.3.6.1.2.1.15.3.1.10.91.213.211.116|65|0 +1.3.6.1.2.1.15.3.1.10.91.213.211.117|65|0 +1.3.6.1.2.1.15.3.1.10.91.213.211.192|65|0 +1.3.6.1.2.1.15.3.1.10.91.213.211.214|65|0 +1.3.6.1.2.1.15.3.1.10.188.120.0.2|65|195 +1.3.6.1.2.1.15.3.1.10.188.120.0.147|65|0 +1.3.6.1.2.1.15.3.1.10.192.108.148.1|65|0 +1.3.6.1.2.1.15.3.1.10.192.108.148.2|65|0 +1.3.6.1.2.1.15.3.1.10.192.108.148.5|65|0 +1.3.6.1.2.1.15.3.1.10.192.108.148.10|65|0 +1.3.6.1.2.1.15.3.1.10.192.108.148.15|65|0 +1.3.6.1.2.1.15.3.1.10.192.108.148.20|65|0 +1.3.6.1.2.1.15.3.1.10.192.108.148.25|65|0 +1.3.6.1.2.1.15.3.1.10.192.108.148.30|65|0 +1.3.6.1.2.1.15.3.1.10.192.108.148.45|65|0 +1.3.6.1.2.1.15.3.1.10.192.108.148.50|65|0 +1.3.6.1.2.1.15.3.1.10.192.108.148.52|65|0 +1.3.6.1.2.1.15.3.1.10.192.108.148.55|65|0 +1.3.6.1.2.1.15.3.1.10.192.108.148.65|65|0 +1.3.6.1.2.1.15.3.1.10.192.108.148.72|65|0 +1.3.6.1.2.1.15.3.1.10.192.108.148.75|65|0 +1.3.6.1.2.1.15.3.1.10.192.108.148.80|65|0 +1.3.6.1.2.1.15.3.1.10.192.108.148.82|65|0 +1.3.6.1.2.1.15.3.1.10.192.108.148.85|65|0 +1.3.6.1.2.1.15.3.1.10.192.108.148.92|65|0 +1.3.6.1.2.1.15.3.1.10.192.108.148.100|65|0 +1.3.6.1.2.1.15.3.1.10.192.108.148.101|65|0 +1.3.6.1.2.1.15.3.1.10.192.108.148.120|65|0 +1.3.6.1.2.1.15.3.1.10.192.108.148.125|65|0 +1.3.6.1.2.1.15.3.1.10.192.108.148.155|65|0 +1.3.6.1.2.1.15.3.1.10.192.108.148.160|65|0 +1.3.6.1.2.1.15.3.1.10.192.108.148.165|65|0 +1.3.6.1.2.1.15.3.1.10.192.108.148.180|65|0 +1.3.6.1.2.1.15.3.1.10.192.108.148.185|65|0 +1.3.6.1.2.1.15.3.1.10.192.108.148.186|65|0 +1.3.6.1.2.1.15.3.1.10.192.108.148.190|65|0 +1.3.6.1.2.1.15.3.1.10.192.108.148.195|65|0 +1.3.6.1.2.1.15.3.1.10.192.108.148.210|65|0 +1.3.6.1.2.1.15.3.1.10.192.108.148.215|65|0 +1.3.6.1.2.1.15.3.1.10.192.108.148.235|65|0 +1.3.6.1.2.1.15.3.1.10.192.108.148.245|65|0 +1.3.6.1.2.1.15.3.1.11.87.197.252.5|65|0 +1.3.6.1.2.1.15.3.1.11.87.197.252.141|65|0 +1.3.6.1.2.1.15.3.1.11.88.86.99.225|65|0 +1.3.6.1.2.1.15.3.1.11.91.213.211.1|65|0 +1.3.6.1.2.1.15.3.1.11.91.213.211.2|65|0 +1.3.6.1.2.1.15.3.1.11.91.213.211.62|65|0 +1.3.6.1.2.1.15.3.1.11.91.213.211.63|65|0 +1.3.6.1.2.1.15.3.1.11.91.213.211.100|65|0 +1.3.6.1.2.1.15.3.1.11.91.213.211.101|65|0 +1.3.6.1.2.1.15.3.1.11.91.213.211.116|65|0 +1.3.6.1.2.1.15.3.1.11.91.213.211.117|65|0 +1.3.6.1.2.1.15.3.1.11.91.213.211.192|65|0 +1.3.6.1.2.1.15.3.1.11.91.213.211.214|65|0 +1.3.6.1.2.1.15.3.1.11.188.120.0.2|65|2 +1.3.6.1.2.1.15.3.1.11.188.120.0.147|65|0 +1.3.6.1.2.1.15.3.1.11.192.108.148.1|65|0 +1.3.6.1.2.1.15.3.1.11.192.108.148.2|65|0 +1.3.6.1.2.1.15.3.1.11.192.108.148.5|65|0 +1.3.6.1.2.1.15.3.1.11.192.108.148.10|65|0 +1.3.6.1.2.1.15.3.1.11.192.108.148.15|65|0 +1.3.6.1.2.1.15.3.1.11.192.108.148.20|65|0 +1.3.6.1.2.1.15.3.1.11.192.108.148.25|65|0 +1.3.6.1.2.1.15.3.1.11.192.108.148.30|65|0 +1.3.6.1.2.1.15.3.1.11.192.108.148.45|65|0 +1.3.6.1.2.1.15.3.1.11.192.108.148.50|65|0 +1.3.6.1.2.1.15.3.1.11.192.108.148.52|65|0 +1.3.6.1.2.1.15.3.1.11.192.108.148.55|65|0 +1.3.6.1.2.1.15.3.1.11.192.108.148.65|65|0 +1.3.6.1.2.1.15.3.1.11.192.108.148.72|65|0 +1.3.6.1.2.1.15.3.1.11.192.108.148.75|65|0 +1.3.6.1.2.1.15.3.1.11.192.108.148.80|65|0 +1.3.6.1.2.1.15.3.1.11.192.108.148.82|65|0 +1.3.6.1.2.1.15.3.1.11.192.108.148.85|65|0 +1.3.6.1.2.1.15.3.1.11.192.108.148.92|65|0 +1.3.6.1.2.1.15.3.1.11.192.108.148.100|65|0 +1.3.6.1.2.1.15.3.1.11.192.108.148.101|65|0 +1.3.6.1.2.1.15.3.1.11.192.108.148.120|65|0 +1.3.6.1.2.1.15.3.1.11.192.108.148.125|65|0 +1.3.6.1.2.1.15.3.1.11.192.108.148.155|65|0 +1.3.6.1.2.1.15.3.1.11.192.108.148.160|65|0 +1.3.6.1.2.1.15.3.1.11.192.108.148.165|65|0 +1.3.6.1.2.1.15.3.1.11.192.108.148.180|65|0 +1.3.6.1.2.1.15.3.1.11.192.108.148.185|65|0 +1.3.6.1.2.1.15.3.1.11.192.108.148.186|65|0 +1.3.6.1.2.1.15.3.1.11.192.108.148.190|65|0 +1.3.6.1.2.1.15.3.1.11.192.108.148.195|65|0 +1.3.6.1.2.1.15.3.1.11.192.108.148.210|65|0 +1.3.6.1.2.1.15.3.1.11.192.108.148.215|65|0 +1.3.6.1.2.1.15.3.1.11.192.108.148.235|65|0 +1.3.6.1.2.1.15.3.1.11.192.108.148.245|65|0 +1.3.6.1.2.1.15.3.1.12.87.197.252.5|65|0 +1.3.6.1.2.1.15.3.1.12.87.197.252.141|65|0 +1.3.6.1.2.1.15.3.1.12.88.86.99.225|65|0 +1.3.6.1.2.1.15.3.1.12.91.213.211.1|65|0 +1.3.6.1.2.1.15.3.1.12.91.213.211.2|65|0 +1.3.6.1.2.1.15.3.1.12.91.213.211.62|65|0 +1.3.6.1.2.1.15.3.1.12.91.213.211.63|65|0 +1.3.6.1.2.1.15.3.1.12.91.213.211.100|65|0 +1.3.6.1.2.1.15.3.1.12.91.213.211.101|65|0 +1.3.6.1.2.1.15.3.1.12.91.213.211.116|65|0 +1.3.6.1.2.1.15.3.1.12.91.213.211.117|65|0 +1.3.6.1.2.1.15.3.1.12.91.213.211.192|65|0 +1.3.6.1.2.1.15.3.1.12.91.213.211.214|65|0 +1.3.6.1.2.1.15.3.1.12.188.120.0.2|65|5858 +1.3.6.1.2.1.15.3.1.12.188.120.0.147|65|0 +1.3.6.1.2.1.15.3.1.12.192.108.148.1|65|0 +1.3.6.1.2.1.15.3.1.12.192.108.148.2|65|0 +1.3.6.1.2.1.15.3.1.12.192.108.148.5|65|0 +1.3.6.1.2.1.15.3.1.12.192.108.148.10|65|0 +1.3.6.1.2.1.15.3.1.12.192.108.148.15|65|0 +1.3.6.1.2.1.15.3.1.12.192.108.148.20|65|0 +1.3.6.1.2.1.15.3.1.12.192.108.148.25|65|0 +1.3.6.1.2.1.15.3.1.12.192.108.148.30|65|0 +1.3.6.1.2.1.15.3.1.12.192.108.148.45|65|0 +1.3.6.1.2.1.15.3.1.12.192.108.148.50|65|0 +1.3.6.1.2.1.15.3.1.12.192.108.148.52|65|0 +1.3.6.1.2.1.15.3.1.12.192.108.148.55|65|0 +1.3.6.1.2.1.15.3.1.12.192.108.148.65|65|0 +1.3.6.1.2.1.15.3.1.12.192.108.148.72|65|0 +1.3.6.1.2.1.15.3.1.12.192.108.148.75|65|0 +1.3.6.1.2.1.15.3.1.12.192.108.148.80|65|0 +1.3.6.1.2.1.15.3.1.12.192.108.148.82|65|0 +1.3.6.1.2.1.15.3.1.12.192.108.148.85|65|0 +1.3.6.1.2.1.15.3.1.12.192.108.148.92|65|0 +1.3.6.1.2.1.15.3.1.12.192.108.148.100|65|0 +1.3.6.1.2.1.15.3.1.12.192.108.148.101|65|0 +1.3.6.1.2.1.15.3.1.12.192.108.148.120|65|0 +1.3.6.1.2.1.15.3.1.12.192.108.148.125|65|0 +1.3.6.1.2.1.15.3.1.12.192.108.148.155|65|0 +1.3.6.1.2.1.15.3.1.12.192.108.148.160|65|0 +1.3.6.1.2.1.15.3.1.12.192.108.148.165|65|0 +1.3.6.1.2.1.15.3.1.12.192.108.148.180|65|0 +1.3.6.1.2.1.15.3.1.12.192.108.148.185|65|0 +1.3.6.1.2.1.15.3.1.12.192.108.148.186|65|0 +1.3.6.1.2.1.15.3.1.12.192.108.148.190|65|0 +1.3.6.1.2.1.15.3.1.12.192.108.148.195|65|0 +1.3.6.1.2.1.15.3.1.12.192.108.148.210|65|0 +1.3.6.1.2.1.15.3.1.12.192.108.148.215|65|0 +1.3.6.1.2.1.15.3.1.12.192.108.148.235|65|0 +1.3.6.1.2.1.15.3.1.12.192.108.148.245|65|0 +1.3.6.1.2.1.15.3.1.13.87.197.252.5|65|0 +1.3.6.1.2.1.15.3.1.13.87.197.252.141|65|0 +1.3.6.1.2.1.15.3.1.13.88.86.99.225|65|0 +1.3.6.1.2.1.15.3.1.13.91.213.211.1|65|0 +1.3.6.1.2.1.15.3.1.13.91.213.211.2|65|0 +1.3.6.1.2.1.15.3.1.13.91.213.211.62|65|0 +1.3.6.1.2.1.15.3.1.13.91.213.211.63|65|0 +1.3.6.1.2.1.15.3.1.13.91.213.211.100|65|0 +1.3.6.1.2.1.15.3.1.13.91.213.211.101|65|0 +1.3.6.1.2.1.15.3.1.13.91.213.211.116|65|0 +1.3.6.1.2.1.15.3.1.13.91.213.211.117|65|0 +1.3.6.1.2.1.15.3.1.13.91.213.211.192|65|0 +1.3.6.1.2.1.15.3.1.13.91.213.211.214|65|0 +1.3.6.1.2.1.15.3.1.13.188.120.0.2|65|6504 +1.3.6.1.2.1.15.3.1.13.188.120.0.147|65|0 +1.3.6.1.2.1.15.3.1.13.192.108.148.1|65|0 +1.3.6.1.2.1.15.3.1.13.192.108.148.2|65|0 +1.3.6.1.2.1.15.3.1.13.192.108.148.5|65|0 +1.3.6.1.2.1.15.3.1.13.192.108.148.10|65|0 +1.3.6.1.2.1.15.3.1.13.192.108.148.15|65|0 +1.3.6.1.2.1.15.3.1.13.192.108.148.20|65|0 +1.3.6.1.2.1.15.3.1.13.192.108.148.25|65|0 +1.3.6.1.2.1.15.3.1.13.192.108.148.30|65|0 +1.3.6.1.2.1.15.3.1.13.192.108.148.45|65|0 +1.3.6.1.2.1.15.3.1.13.192.108.148.50|65|0 +1.3.6.1.2.1.15.3.1.13.192.108.148.52|65|0 +1.3.6.1.2.1.15.3.1.13.192.108.148.55|65|0 +1.3.6.1.2.1.15.3.1.13.192.108.148.65|65|0 +1.3.6.1.2.1.15.3.1.13.192.108.148.72|65|0 +1.3.6.1.2.1.15.3.1.13.192.108.148.75|65|0 +1.3.6.1.2.1.15.3.1.13.192.108.148.80|65|0 +1.3.6.1.2.1.15.3.1.13.192.108.148.82|65|0 +1.3.6.1.2.1.15.3.1.13.192.108.148.85|65|0 +1.3.6.1.2.1.15.3.1.13.192.108.148.92|65|0 +1.3.6.1.2.1.15.3.1.13.192.108.148.100|65|0 +1.3.6.1.2.1.15.3.1.13.192.108.148.101|65|0 +1.3.6.1.2.1.15.3.1.13.192.108.148.120|65|0 +1.3.6.1.2.1.15.3.1.13.192.108.148.125|65|0 +1.3.6.1.2.1.15.3.1.13.192.108.148.155|65|0 +1.3.6.1.2.1.15.3.1.13.192.108.148.160|65|0 +1.3.6.1.2.1.15.3.1.13.192.108.148.165|65|0 +1.3.6.1.2.1.15.3.1.13.192.108.148.180|65|0 +1.3.6.1.2.1.15.3.1.13.192.108.148.185|65|0 +1.3.6.1.2.1.15.3.1.13.192.108.148.186|65|0 +1.3.6.1.2.1.15.3.1.13.192.108.148.190|65|0 +1.3.6.1.2.1.15.3.1.13.192.108.148.195|65|0 +1.3.6.1.2.1.15.3.1.13.192.108.148.210|65|0 +1.3.6.1.2.1.15.3.1.13.192.108.148.215|65|0 +1.3.6.1.2.1.15.3.1.13.192.108.148.235|65|0 +1.3.6.1.2.1.15.3.1.13.192.108.148.245|65|0 +1.3.6.1.2.1.15.3.1.14.87.197.252.5|4x|0000 +1.3.6.1.2.1.15.3.1.14.87.197.252.141|4x|0000 +1.3.6.1.2.1.15.3.1.14.88.86.99.225|4x|0000 +1.3.6.1.2.1.15.3.1.14.91.213.211.1|4x|0000 +1.3.6.1.2.1.15.3.1.14.91.213.211.2|4x|0000 +1.3.6.1.2.1.15.3.1.14.91.213.211.62|4x|0000 +1.3.6.1.2.1.15.3.1.14.91.213.211.63|4x|0000 +1.3.6.1.2.1.15.3.1.14.91.213.211.100|4x|0000 +1.3.6.1.2.1.15.3.1.14.91.213.211.101|4x|0000 +1.3.6.1.2.1.15.3.1.14.91.213.211.116|4x|0000 +1.3.6.1.2.1.15.3.1.14.91.213.211.117|4x|0000 +1.3.6.1.2.1.15.3.1.14.91.213.211.192|4x|0000 +1.3.6.1.2.1.15.3.1.14.91.213.211.214|4x|0000 +1.3.6.1.2.1.15.3.1.14.188.120.0.2|4x|0000 +1.3.6.1.2.1.15.3.1.14.188.120.0.147|4x|0000 +1.3.6.1.2.1.15.3.1.14.192.108.148.1|4x|0000 +1.3.6.1.2.1.15.3.1.14.192.108.148.2|4x|0000 +1.3.6.1.2.1.15.3.1.14.192.108.148.5|4x|0000 +1.3.6.1.2.1.15.3.1.14.192.108.148.10|4x|0000 +1.3.6.1.2.1.15.3.1.14.192.108.148.15|4x|0000 +1.3.6.1.2.1.15.3.1.14.192.108.148.20|4x|0000 +1.3.6.1.2.1.15.3.1.14.192.108.148.25|4x|0000 +1.3.6.1.2.1.15.3.1.14.192.108.148.30|4x|0000 +1.3.6.1.2.1.15.3.1.14.192.108.148.45|4x|0000 +1.3.6.1.2.1.15.3.1.14.192.108.148.50|4x|0000 +1.3.6.1.2.1.15.3.1.14.192.108.148.52|4x|0000 +1.3.6.1.2.1.15.3.1.14.192.108.148.55|4x|0000 +1.3.6.1.2.1.15.3.1.14.192.108.148.65|4x|0000 +1.3.6.1.2.1.15.3.1.14.192.108.148.72|4x|0000 +1.3.6.1.2.1.15.3.1.14.192.108.148.75|4x|0000 +1.3.6.1.2.1.15.3.1.14.192.108.148.80|4x|0000 +1.3.6.1.2.1.15.3.1.14.192.108.148.82|4x|0000 +1.3.6.1.2.1.15.3.1.14.192.108.148.85|4x|0000 +1.3.6.1.2.1.15.3.1.14.192.108.148.92|4x|0000 +1.3.6.1.2.1.15.3.1.14.192.108.148.100|4x|0000 +1.3.6.1.2.1.15.3.1.14.192.108.148.101|4x|0000 +1.3.6.1.2.1.15.3.1.14.192.108.148.120|4x|0000 +1.3.6.1.2.1.15.3.1.14.192.108.148.125|4x|0000 +1.3.6.1.2.1.15.3.1.14.192.108.148.155|4x|0000 +1.3.6.1.2.1.15.3.1.14.192.108.148.160|4x|0000 +1.3.6.1.2.1.15.3.1.14.192.108.148.165|4x|0000 +1.3.6.1.2.1.15.3.1.14.192.108.148.180|4x|0000 +1.3.6.1.2.1.15.3.1.14.192.108.148.185|4x|0000 +1.3.6.1.2.1.15.3.1.14.192.108.148.186|4x|0000 +1.3.6.1.2.1.15.3.1.14.192.108.148.190|4x|0000 +1.3.6.1.2.1.15.3.1.14.192.108.148.195|4x|0000 +1.3.6.1.2.1.15.3.1.14.192.108.148.210|4x|0000 +1.3.6.1.2.1.15.3.1.14.192.108.148.215|4x|0000 +1.3.6.1.2.1.15.3.1.14.192.108.148.235|4x|0000 +1.3.6.1.2.1.15.3.1.14.192.108.148.245|4x|0000 +1.3.6.1.2.1.15.3.1.16.87.197.252.5|66|248473 +1.3.6.1.2.1.15.3.1.16.87.197.252.141|66|250876 +1.3.6.1.2.1.15.3.1.16.88.86.99.225|66|154166 +1.3.6.1.2.1.15.3.1.16.91.213.211.1|66|157338 +1.3.6.1.2.1.15.3.1.16.91.213.211.2|66|157338 +1.3.6.1.2.1.15.3.1.16.91.213.211.62|66|157338 +1.3.6.1.2.1.15.3.1.16.91.213.211.63|66|157338 +1.3.6.1.2.1.15.3.1.16.91.213.211.100|66|157338 +1.3.6.1.2.1.15.3.1.16.91.213.211.101|66|157338 +1.3.6.1.2.1.15.3.1.16.91.213.211.116|66|157338 +1.3.6.1.2.1.15.3.1.16.91.213.211.117|66|157338 +1.3.6.1.2.1.15.3.1.16.91.213.211.192|66|157338 +1.3.6.1.2.1.15.3.1.16.91.213.211.214|66|157338 +1.3.6.1.2.1.15.3.1.16.188.120.0.2|66|339744 +1.3.6.1.2.1.15.3.1.16.188.120.0.147|66|323997 +1.3.6.1.2.1.15.3.1.16.192.108.148.1|66|166245 +1.3.6.1.2.1.15.3.1.16.192.108.148.2|66|165641 +1.3.6.1.2.1.15.3.1.16.192.108.148.5|66|159099 +1.3.6.1.2.1.15.3.1.16.192.108.148.10|66|158977 +1.3.6.1.2.1.15.3.1.16.192.108.148.15|66|158977 +1.3.6.1.2.1.15.3.1.16.192.108.148.20|66|158977 +1.3.6.1.2.1.15.3.1.16.192.108.148.25|66|158977 +1.3.6.1.2.1.15.3.1.16.192.108.148.30|66|158977 +1.3.6.1.2.1.15.3.1.16.192.108.148.45|66|158977 +1.3.6.1.2.1.15.3.1.16.192.108.148.50|66|158977 +1.3.6.1.2.1.15.3.1.16.192.108.148.52|66|158977 +1.3.6.1.2.1.15.3.1.16.192.108.148.55|66|158977 +1.3.6.1.2.1.15.3.1.16.192.108.148.65|66|158977 +1.3.6.1.2.1.15.3.1.16.192.108.148.72|66|158977 +1.3.6.1.2.1.15.3.1.16.192.108.148.75|66|158977 +1.3.6.1.2.1.15.3.1.16.192.108.148.80|66|158977 +1.3.6.1.2.1.15.3.1.16.192.108.148.82|66|158977 +1.3.6.1.2.1.15.3.1.16.192.108.148.85|66|158977 +1.3.6.1.2.1.15.3.1.16.192.108.148.92|66|158977 +1.3.6.1.2.1.15.3.1.16.192.108.148.100|66|158977 +1.3.6.1.2.1.15.3.1.16.192.108.148.101|66|158977 +1.3.6.1.2.1.15.3.1.16.192.108.148.120|66|158977 +1.3.6.1.2.1.15.3.1.16.192.108.148.125|66|158977 +1.3.6.1.2.1.15.3.1.16.192.108.148.155|66|158977 +1.3.6.1.2.1.15.3.1.16.192.108.148.160|66|158977 +1.3.6.1.2.1.15.3.1.16.192.108.148.165|66|158977 +1.3.6.1.2.1.15.3.1.16.192.108.148.180|66|158977 +1.3.6.1.2.1.15.3.1.16.192.108.148.185|66|158977 +1.3.6.1.2.1.15.3.1.16.192.108.148.186|66|158977 +1.3.6.1.2.1.15.3.1.16.192.108.148.190|66|158977 +1.3.6.1.2.1.15.3.1.16.192.108.148.195|66|158977 +1.3.6.1.2.1.15.3.1.16.192.108.148.210|66|158977 +1.3.6.1.2.1.15.3.1.16.192.108.148.215|66|158977 +1.3.6.1.2.1.15.3.1.16.192.108.148.235|66|158977 +1.3.6.1.2.1.15.3.1.16.192.108.148.245|66|158977 +1.3.6.1.2.1.15.3.1.24.87.197.252.5|66|0 +1.3.6.1.2.1.15.3.1.24.87.197.252.141|66|0 +1.3.6.1.2.1.15.3.1.24.88.86.99.225|66|0 +1.3.6.1.2.1.15.3.1.24.91.213.211.1|66|0 +1.3.6.1.2.1.15.3.1.24.91.213.211.2|66|0 +1.3.6.1.2.1.15.3.1.24.91.213.211.62|66|0 +1.3.6.1.2.1.15.3.1.24.91.213.211.63|66|0 +1.3.6.1.2.1.15.3.1.24.91.213.211.100|66|0 +1.3.6.1.2.1.15.3.1.24.91.213.211.101|66|0 +1.3.6.1.2.1.15.3.1.24.91.213.211.116|66|0 +1.3.6.1.2.1.15.3.1.24.91.213.211.117|66|0 +1.3.6.1.2.1.15.3.1.24.91.213.211.192|66|0 +1.3.6.1.2.1.15.3.1.24.91.213.211.214|66|0 +1.3.6.1.2.1.15.3.1.24.188.120.0.2|66|1299 +1.3.6.1.2.1.15.3.1.24.188.120.0.147|66|0 +1.3.6.1.2.1.15.3.1.24.192.108.148.1|66|0 +1.3.6.1.2.1.15.3.1.24.192.108.148.2|66|0 +1.3.6.1.2.1.15.3.1.24.192.108.148.5|66|0 +1.3.6.1.2.1.15.3.1.24.192.108.148.10|66|0 +1.3.6.1.2.1.15.3.1.24.192.108.148.15|66|0 +1.3.6.1.2.1.15.3.1.24.192.108.148.20|66|0 +1.3.6.1.2.1.15.3.1.24.192.108.148.25|66|0 +1.3.6.1.2.1.15.3.1.24.192.108.148.30|66|0 +1.3.6.1.2.1.15.3.1.24.192.108.148.45|66|0 +1.3.6.1.2.1.15.3.1.24.192.108.148.50|66|0 +1.3.6.1.2.1.15.3.1.24.192.108.148.52|66|0 +1.3.6.1.2.1.15.3.1.24.192.108.148.55|66|0 +1.3.6.1.2.1.15.3.1.24.192.108.148.65|66|0 +1.3.6.1.2.1.15.3.1.24.192.108.148.72|66|0 +1.3.6.1.2.1.15.3.1.24.192.108.148.75|66|0 +1.3.6.1.2.1.15.3.1.24.192.108.148.80|66|0 +1.3.6.1.2.1.15.3.1.24.192.108.148.82|66|0 +1.3.6.1.2.1.15.3.1.24.192.108.148.85|66|0 +1.3.6.1.2.1.15.3.1.24.192.108.148.92|66|0 +1.3.6.1.2.1.15.3.1.24.192.108.148.100|66|0 +1.3.6.1.2.1.15.3.1.24.192.108.148.101|66|0 +1.3.6.1.2.1.15.3.1.24.192.108.148.120|66|0 +1.3.6.1.2.1.15.3.1.24.192.108.148.125|66|0 +1.3.6.1.2.1.15.3.1.24.192.108.148.155|66|0 +1.3.6.1.2.1.15.3.1.24.192.108.148.160|66|0 +1.3.6.1.2.1.15.3.1.24.192.108.148.165|66|0 +1.3.6.1.2.1.15.3.1.24.192.108.148.180|66|0 +1.3.6.1.2.1.15.3.1.24.192.108.148.185|66|0 +1.3.6.1.2.1.15.3.1.24.192.108.148.186|66|0 +1.3.6.1.2.1.15.3.1.24.192.108.148.190|66|0 +1.3.6.1.2.1.15.3.1.24.192.108.148.195|66|0 +1.3.6.1.2.1.15.3.1.24.192.108.148.210|66|0 +1.3.6.1.2.1.15.3.1.24.192.108.148.215|66|0 +1.3.6.1.2.1.15.3.1.24.192.108.148.235|66|0 +1.3.6.1.2.1.15.3.1.24.192.108.148.245|66|0 +1.3.6.1.2.1.17.1.1.0|4x|AC8D3488F164 +1.3.6.1.2.1.17.2.1.0|2|1 +1.3.6.1.2.1.17.2.2.0|2|32768 +1.3.6.1.2.1.17.2.3.0|67|0 +1.3.6.1.2.1.17.2.5.0|4x|8000AC8D3488F164 +1.3.6.1.2.1.17.2.6.0|2|0 +1.3.6.1.2.1.17.2.7.0|2|0 +1.3.6.1.2.1.17.2.8.0|2|2000 +1.3.6.1.2.1.17.2.9.0|2|200 +1.3.6.1.2.1.17.2.10.0|2|0 +1.3.6.1.2.1.17.2.11.0|2|1500 +1.3.6.1.2.1.17.2.12.0|2|2000 +1.3.6.1.2.1.17.2.13.0|2|200 +1.3.6.1.2.1.17.2.14.0|2|1500 +1.3.6.1.2.1.17.7.1.1.1.0|2|1 +1.3.6.1.2.1.31.1.1.1.1.1|4|Virtual-Template0 +1.3.6.1.2.1.31.1.1.1.1.2|4|NULL0 +1.3.6.1.2.1.31.1.1.1.1.3|4|InLoopBack0 +1.3.6.1.2.1.31.1.1.1.1.4|4|GigabitEthernet0/0/0 +1.3.6.1.2.1.31.1.1.1.1.10|4|GigabitEthernet0/3/4 +1.3.6.1.2.1.31.1.1.1.1.11|4|GigabitEthernet0/3/5 +1.3.6.1.2.1.31.1.1.1.1.12|4|GigabitEthernet0/3/6 +1.3.6.1.2.1.31.1.1.1.1.13|4|GigabitEthernet0/3/7 +1.3.6.1.2.1.31.1.1.1.1.14|4|GigabitEthernet0/3/8 +1.3.6.1.2.1.31.1.1.1.1.15|4|GigabitEthernet0/3/9 +1.3.6.1.2.1.31.1.1.1.1.16|4|GigabitEthernet0/3/10 +1.3.6.1.2.1.31.1.1.1.1.17|4|GigabitEthernet0/3/11 +1.3.6.1.2.1.31.1.1.1.1.18|4|GigabitEthernet0/3/12 +1.3.6.1.2.1.31.1.1.1.1.19|4|GigabitEthernet0/3/13 +1.3.6.1.2.1.31.1.1.1.1.20|4|GigabitEthernet0/3/14 +1.3.6.1.2.1.31.1.1.1.1.21|4|GigabitEthernet0/3/15 +1.3.6.1.2.1.31.1.1.1.1.22|4|GigabitEthernet0/3/16 +1.3.6.1.2.1.31.1.1.1.1.23|4|GigabitEthernet0/3/17 +1.3.6.1.2.1.31.1.1.1.1.24|4|GigabitEthernet0/3/18 +1.3.6.1.2.1.31.1.1.1.1.25|4|GigabitEthernet0/3/19 +1.3.6.1.2.1.31.1.1.1.1.26|4|GigabitEthernet0/3/20 +1.3.6.1.2.1.31.1.1.1.1.27|4|GigabitEthernet0/3/21 +1.3.6.1.2.1.31.1.1.1.1.28|4|GigabitEthernet0/3/22 +1.3.6.1.2.1.31.1.1.1.1.29|4|GigabitEthernet0/3/23 +1.3.6.1.2.1.31.1.1.1.1.43|4|40GE0/3/0 +1.3.6.1.2.1.31.1.1.1.1.44|4|40GE0/3/1 +1.3.6.1.2.1.31.1.1.1.1.45|4|40GE0/3/2 +1.3.6.1.2.1.31.1.1.1.1.46|4|40GE0/3/3 +1.3.6.1.2.1.31.1.1.1.1.47|4|Eth-Trunk1 +1.3.6.1.2.1.31.1.1.1.1.48|4|Eth-Trunk1.2 +1.3.6.1.2.1.31.1.1.1.1.49|4|Eth-Trunk2 +1.3.6.1.2.1.31.1.1.1.1.50|4|LoopBack1 +1.3.6.1.2.1.31.1.1.1.1.51|4|GigabitEthernet0/3/11.1673 +1.3.6.1.2.1.31.1.1.1.1.52|4|GigabitEthernet0/3/12.1356 +1.3.6.1.2.1.31.1.1.1.1.53|4|GigabitEthernet0/3/9.716 +1.3.6.1.2.1.31.1.1.1.2.1|65|0 +1.3.6.1.2.1.31.1.1.1.2.2|65|0 +1.3.6.1.2.1.31.1.1.1.2.3|65|0 +1.3.6.1.2.1.31.1.1.1.2.4|65|0 +1.3.6.1.2.1.31.1.1.1.2.10|65|21496 +1.3.6.1.2.1.31.1.1.1.2.11|65|21490 +1.3.6.1.2.1.31.1.1.1.2.12|65|0 +1.3.6.1.2.1.31.1.1.1.2.13|65|0 +1.3.6.1.2.1.31.1.1.1.2.14|65|0 +1.3.6.1.2.1.31.1.1.1.2.15|65|0 +1.3.6.1.2.1.31.1.1.1.2.16|65|0 +1.3.6.1.2.1.31.1.1.1.2.17|65|0 +1.3.6.1.2.1.31.1.1.1.2.18|65|0 +1.3.6.1.2.1.31.1.1.1.2.19|65|0 +1.3.6.1.2.1.31.1.1.1.2.20|65|0 +1.3.6.1.2.1.31.1.1.1.2.21|65|0 +1.3.6.1.2.1.31.1.1.1.2.22|65|0 +1.3.6.1.2.1.31.1.1.1.2.23|65|0 +1.3.6.1.2.1.31.1.1.1.2.24|65|0 +1.3.6.1.2.1.31.1.1.1.2.25|65|0 +1.3.6.1.2.1.31.1.1.1.2.26|65|0 +1.3.6.1.2.1.31.1.1.1.2.27|65|0 +1.3.6.1.2.1.31.1.1.1.2.28|65|0 +1.3.6.1.2.1.31.1.1.1.2.29|65|0 +1.3.6.1.2.1.31.1.1.1.2.43|65|22727 +1.3.6.1.2.1.31.1.1.1.2.44|65|22726 +1.3.6.1.2.1.31.1.1.1.2.45|65|0 +1.3.6.1.2.1.31.1.1.1.2.46|65|0 +1.3.6.1.2.1.31.1.1.1.2.47|65|45453 +1.3.6.1.2.1.31.1.1.1.2.48|65|0 +1.3.6.1.2.1.31.1.1.1.2.49|65|42986 +1.3.6.1.2.1.31.1.1.1.2.50|65|0 +1.3.6.1.2.1.31.1.1.1.2.51|65|0 +1.3.6.1.2.1.31.1.1.1.2.52|65|0 +1.3.6.1.2.1.31.1.1.1.2.53|65|0 +1.3.6.1.2.1.31.1.1.1.3.1|65|0 +1.3.6.1.2.1.31.1.1.1.3.2|65|0 +1.3.6.1.2.1.31.1.1.1.3.3|65|0 +1.3.6.1.2.1.31.1.1.1.3.4|65|0 +1.3.6.1.2.1.31.1.1.1.3.10|65|0 +1.3.6.1.2.1.31.1.1.1.3.11|65|0 +1.3.6.1.2.1.31.1.1.1.3.12|65|0 +1.3.6.1.2.1.31.1.1.1.3.13|65|0 +1.3.6.1.2.1.31.1.1.1.3.14|65|0 +1.3.6.1.2.1.31.1.1.1.3.15|65|0 +1.3.6.1.2.1.31.1.1.1.3.16|65|0 +1.3.6.1.2.1.31.1.1.1.3.17|65|0 +1.3.6.1.2.1.31.1.1.1.3.18|65|0 +1.3.6.1.2.1.31.1.1.1.3.19|65|0 +1.3.6.1.2.1.31.1.1.1.3.20|65|0 +1.3.6.1.2.1.31.1.1.1.3.21|65|0 +1.3.6.1.2.1.31.1.1.1.3.22|65|0 +1.3.6.1.2.1.31.1.1.1.3.23|65|0 +1.3.6.1.2.1.31.1.1.1.3.24|65|0 +1.3.6.1.2.1.31.1.1.1.3.25|65|0 +1.3.6.1.2.1.31.1.1.1.3.26|65|0 +1.3.6.1.2.1.31.1.1.1.3.27|65|0 +1.3.6.1.2.1.31.1.1.1.3.28|65|0 +1.3.6.1.2.1.31.1.1.1.3.29|65|0 +1.3.6.1.2.1.31.1.1.1.3.43|65|5 +1.3.6.1.2.1.31.1.1.1.3.44|65|1 +1.3.6.1.2.1.31.1.1.1.3.45|65|0 +1.3.6.1.2.1.31.1.1.1.3.46|65|0 +1.3.6.1.2.1.31.1.1.1.3.47|65|6 +1.3.6.1.2.1.31.1.1.1.3.48|65|0 +1.3.6.1.2.1.31.1.1.1.3.49|65|0 +1.3.6.1.2.1.31.1.1.1.3.50|65|0 +1.3.6.1.2.1.31.1.1.1.3.51|65|0 +1.3.6.1.2.1.31.1.1.1.3.52|65|0 +1.3.6.1.2.1.31.1.1.1.3.53|65|0 +1.3.6.1.2.1.31.1.1.1.4.1|65|0 +1.3.6.1.2.1.31.1.1.1.4.2|65|0 +1.3.6.1.2.1.31.1.1.1.4.3|65|0 +1.3.6.1.2.1.31.1.1.1.4.4|65|0 +1.3.6.1.2.1.31.1.1.1.4.10|65|21504 +1.3.6.1.2.1.31.1.1.1.4.11|65|21499 +1.3.6.1.2.1.31.1.1.1.4.12|65|0 +1.3.6.1.2.1.31.1.1.1.4.13|65|0 +1.3.6.1.2.1.31.1.1.1.4.14|65|0 +1.3.6.1.2.1.31.1.1.1.4.15|65|0 +1.3.6.1.2.1.31.1.1.1.4.16|65|0 +1.3.6.1.2.1.31.1.1.1.4.17|65|0 +1.3.6.1.2.1.31.1.1.1.4.18|65|0 +1.3.6.1.2.1.31.1.1.1.4.19|65|0 +1.3.6.1.2.1.31.1.1.1.4.20|65|0 +1.3.6.1.2.1.31.1.1.1.4.21|65|0 +1.3.6.1.2.1.31.1.1.1.4.22|65|0 +1.3.6.1.2.1.31.1.1.1.4.23|65|0 +1.3.6.1.2.1.31.1.1.1.4.24|65|0 +1.3.6.1.2.1.31.1.1.1.4.25|65|0 +1.3.6.1.2.1.31.1.1.1.4.26|65|0 +1.3.6.1.2.1.31.1.1.1.4.27|65|0 +1.3.6.1.2.1.31.1.1.1.4.28|65|0 +1.3.6.1.2.1.31.1.1.1.4.29|65|0 +1.3.6.1.2.1.31.1.1.1.4.43|65|22737 +1.3.6.1.2.1.31.1.1.1.4.44|65|22741 +1.3.6.1.2.1.31.1.1.1.4.45|65|0 +1.3.6.1.2.1.31.1.1.1.4.46|65|0 +1.3.6.1.2.1.31.1.1.1.4.47|65|45478 +1.3.6.1.2.1.31.1.1.1.4.48|65|0 +1.3.6.1.2.1.31.1.1.1.4.49|65|43003 +1.3.6.1.2.1.31.1.1.1.4.50|65|0 +1.3.6.1.2.1.31.1.1.1.4.51|65|0 +1.3.6.1.2.1.31.1.1.1.4.52|65|0 +1.3.6.1.2.1.31.1.1.1.4.53|65|0 +1.3.6.1.2.1.31.1.1.1.5.1|65|0 +1.3.6.1.2.1.31.1.1.1.5.2|65|0 +1.3.6.1.2.1.31.1.1.1.5.3|65|0 +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.10|65|0 +1.3.6.1.2.1.31.1.1.1.5.11|65|0 +1.3.6.1.2.1.31.1.1.1.5.12|65|284 +1.3.6.1.2.1.31.1.1.1.5.13|65|284 +1.3.6.1.2.1.31.1.1.1.5.14|65|284 +1.3.6.1.2.1.31.1.1.1.5.15|65|284 +1.3.6.1.2.1.31.1.1.1.5.16|65|284 +1.3.6.1.2.1.31.1.1.1.5.17|65|284 +1.3.6.1.2.1.31.1.1.1.5.18|65|284 +1.3.6.1.2.1.31.1.1.1.5.19|65|284 +1.3.6.1.2.1.31.1.1.1.5.20|65|284 +1.3.6.1.2.1.31.1.1.1.5.21|65|284 +1.3.6.1.2.1.31.1.1.1.5.22|65|284 +1.3.6.1.2.1.31.1.1.1.5.23|65|284 +1.3.6.1.2.1.31.1.1.1.5.24|65|284 +1.3.6.1.2.1.31.1.1.1.5.25|65|284 +1.3.6.1.2.1.31.1.1.1.5.26|65|284 +1.3.6.1.2.1.31.1.1.1.5.27|65|284 +1.3.6.1.2.1.31.1.1.1.5.28|65|284 +1.3.6.1.2.1.31.1.1.1.5.29|65|284 +1.3.6.1.2.1.31.1.1.1.5.43|65|2 +1.3.6.1.2.1.31.1.1.1.5.44|65|2 +1.3.6.1.2.1.31.1.1.1.5.45|65|284 +1.3.6.1.2.1.31.1.1.1.5.46|65|284 +1.3.6.1.2.1.31.1.1.1.5.47|65|4 +1.3.6.1.2.1.31.1.1.1.5.48|65|0 +1.3.6.1.2.1.31.1.1.1.5.49|65|0 +1.3.6.1.2.1.31.1.1.1.5.50|65|0 +1.3.6.1.2.1.31.1.1.1.5.51|65|0 +1.3.6.1.2.1.31.1.1.1.5.52|65|0 +1.3.6.1.2.1.31.1.1.1.5.53|65|0 +1.3.6.1.2.1.31.1.1.1.6.1|70|0 +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|0 +1.3.6.1.2.1.31.1.1.1.6.4|70|0 +1.3.6.1.2.1.31.1.1.1.6.10|70|7037144 +1.3.6.1.2.1.31.1.1.1.6.11|70|5503749 +1.3.6.1.2.1.31.1.1.1.6.12|70|0 +1.3.6.1.2.1.31.1.1.1.6.13|70|0 +1.3.6.1.2.1.31.1.1.1.6.14|70|0 +1.3.6.1.2.1.31.1.1.1.6.15|70|0 +1.3.6.1.2.1.31.1.1.1.6.16|70|0 +1.3.6.1.2.1.31.1.1.1.6.17|70|0 +1.3.6.1.2.1.31.1.1.1.6.18|70|0 +1.3.6.1.2.1.31.1.1.1.6.19|70|0 +1.3.6.1.2.1.31.1.1.1.6.20|70|0 +1.3.6.1.2.1.31.1.1.1.6.21|70|0 +1.3.6.1.2.1.31.1.1.1.6.22|70|0 +1.3.6.1.2.1.31.1.1.1.6.23|70|0 +1.3.6.1.2.1.31.1.1.1.6.24|70|0 +1.3.6.1.2.1.31.1.1.1.6.25|70|0 +1.3.6.1.2.1.31.1.1.1.6.26|70|0 +1.3.6.1.2.1.31.1.1.1.6.27|70|0 +1.3.6.1.2.1.31.1.1.1.6.28|70|0 +1.3.6.1.2.1.31.1.1.1.6.29|70|0 +1.3.6.1.2.1.31.1.1.1.6.43|70|12028428 +1.3.6.1.2.1.31.1.1.1.6.44|70|41136536 +1.3.6.1.2.1.31.1.1.1.6.45|70|0 +1.3.6.1.2.1.31.1.1.1.6.46|70|0 +1.3.6.1.2.1.31.1.1.1.6.47|70|53164964 +1.3.6.1.2.1.31.1.1.1.6.48|70|0 +1.3.6.1.2.1.31.1.1.1.6.49|70|12540893 +1.3.6.1.2.1.31.1.1.1.6.50|70|0 +1.3.6.1.2.1.31.1.1.1.6.51|70|0 +1.3.6.1.2.1.31.1.1.1.6.52|70|0 +1.3.6.1.2.1.31.1.1.1.6.53|70|0 +1.3.6.1.2.1.31.1.1.1.7.1|70|0 +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|0 +1.3.6.1.2.1.31.1.1.1.7.4|70|0 +1.3.6.1.2.1.31.1.1.1.7.10|70|17694 +1.3.6.1.2.1.31.1.1.1.7.11|70|273 +1.3.6.1.2.1.31.1.1.1.7.12|70|0 +1.3.6.1.2.1.31.1.1.1.7.13|70|0 +1.3.6.1.2.1.31.1.1.1.7.14|70|0 +1.3.6.1.2.1.31.1.1.1.7.15|70|0 +1.3.6.1.2.1.31.1.1.1.7.16|70|0 +1.3.6.1.2.1.31.1.1.1.7.17|70|0 +1.3.6.1.2.1.31.1.1.1.7.18|70|0 +1.3.6.1.2.1.31.1.1.1.7.19|70|0 +1.3.6.1.2.1.31.1.1.1.7.20|70|0 +1.3.6.1.2.1.31.1.1.1.7.21|70|0 +1.3.6.1.2.1.31.1.1.1.7.22|70|0 +1.3.6.1.2.1.31.1.1.1.7.23|70|0 +1.3.6.1.2.1.31.1.1.1.7.24|70|0 +1.3.6.1.2.1.31.1.1.1.7.25|70|0 +1.3.6.1.2.1.31.1.1.1.7.26|70|0 +1.3.6.1.2.1.31.1.1.1.7.27|70|0 +1.3.6.1.2.1.31.1.1.1.7.28|70|0 +1.3.6.1.2.1.31.1.1.1.7.29|70|0 +1.3.6.1.2.1.31.1.1.1.7.43|70|88911 +1.3.6.1.2.1.31.1.1.1.7.44|70|307870 +1.3.6.1.2.1.31.1.1.1.7.45|70|0 +1.3.6.1.2.1.31.1.1.1.7.46|70|0 +1.3.6.1.2.1.31.1.1.1.7.47|70|396781 +1.3.6.1.2.1.31.1.1.1.7.48|70|0 +1.3.6.1.2.1.31.1.1.1.7.49|70|17967 +1.3.6.1.2.1.31.1.1.1.7.50|70|0 +1.3.6.1.2.1.31.1.1.1.7.51|70|0 +1.3.6.1.2.1.31.1.1.1.7.52|70|0 +1.3.6.1.2.1.31.1.1.1.7.53|70|0 +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 +1.3.6.1.2.1.31.1.1.1.8.4|70|0 +1.3.6.1.2.1.31.1.1.1.8.10|70|21496 +1.3.6.1.2.1.31.1.1.1.8.11|70|21490 +1.3.6.1.2.1.31.1.1.1.8.12|70|0 +1.3.6.1.2.1.31.1.1.1.8.13|70|0 +1.3.6.1.2.1.31.1.1.1.8.14|70|0 +1.3.6.1.2.1.31.1.1.1.8.15|70|0 +1.3.6.1.2.1.31.1.1.1.8.16|70|0 +1.3.6.1.2.1.31.1.1.1.8.17|70|0 +1.3.6.1.2.1.31.1.1.1.8.18|70|0 +1.3.6.1.2.1.31.1.1.1.8.19|70|0 +1.3.6.1.2.1.31.1.1.1.8.20|70|0 +1.3.6.1.2.1.31.1.1.1.8.21|70|0 +1.3.6.1.2.1.31.1.1.1.8.22|70|0 +1.3.6.1.2.1.31.1.1.1.8.23|70|0 +1.3.6.1.2.1.31.1.1.1.8.24|70|0 +1.3.6.1.2.1.31.1.1.1.8.25|70|0 +1.3.6.1.2.1.31.1.1.1.8.26|70|0 +1.3.6.1.2.1.31.1.1.1.8.27|70|0 +1.3.6.1.2.1.31.1.1.1.8.28|70|0 +1.3.6.1.2.1.31.1.1.1.8.29|70|0 +1.3.6.1.2.1.31.1.1.1.8.43|70|22727 +1.3.6.1.2.1.31.1.1.1.8.44|70|22726 +1.3.6.1.2.1.31.1.1.1.8.45|70|0 +1.3.6.1.2.1.31.1.1.1.8.46|70|0 +1.3.6.1.2.1.31.1.1.1.8.47|70|45453 +1.3.6.1.2.1.31.1.1.1.8.48|70|0 +1.3.6.1.2.1.31.1.1.1.8.49|70|42986 +1.3.6.1.2.1.31.1.1.1.8.50|70|0 +1.3.6.1.2.1.31.1.1.1.8.51|70|0 +1.3.6.1.2.1.31.1.1.1.8.52|70|0 +1.3.6.1.2.1.31.1.1.1.8.53|70|0 +1.3.6.1.2.1.31.1.1.1.9.1|70|0 +1.3.6.1.2.1.31.1.1.1.9.2|70|0 +1.3.6.1.2.1.31.1.1.1.9.3|70|0 +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.10|70|0 +1.3.6.1.2.1.31.1.1.1.9.11|70|0 +1.3.6.1.2.1.31.1.1.1.9.12|70|0 +1.3.6.1.2.1.31.1.1.1.9.13|70|0 +1.3.6.1.2.1.31.1.1.1.9.14|70|0 +1.3.6.1.2.1.31.1.1.1.9.15|70|0 +1.3.6.1.2.1.31.1.1.1.9.16|70|0 +1.3.6.1.2.1.31.1.1.1.9.17|70|0 +1.3.6.1.2.1.31.1.1.1.9.18|70|0 +1.3.6.1.2.1.31.1.1.1.9.19|70|0 +1.3.6.1.2.1.31.1.1.1.9.20|70|0 +1.3.6.1.2.1.31.1.1.1.9.21|70|0 +1.3.6.1.2.1.31.1.1.1.9.22|70|0 +1.3.6.1.2.1.31.1.1.1.9.23|70|0 +1.3.6.1.2.1.31.1.1.1.9.24|70|0 +1.3.6.1.2.1.31.1.1.1.9.25|70|0 +1.3.6.1.2.1.31.1.1.1.9.26|70|0 +1.3.6.1.2.1.31.1.1.1.9.27|70|0 +1.3.6.1.2.1.31.1.1.1.9.28|70|0 +1.3.6.1.2.1.31.1.1.1.9.29|70|0 +1.3.6.1.2.1.31.1.1.1.9.43|70|5 +1.3.6.1.2.1.31.1.1.1.9.44|70|1 +1.3.6.1.2.1.31.1.1.1.9.45|70|0 +1.3.6.1.2.1.31.1.1.1.9.46|70|0 +1.3.6.1.2.1.31.1.1.1.9.47|70|6 +1.3.6.1.2.1.31.1.1.1.9.48|70|0 +1.3.6.1.2.1.31.1.1.1.9.49|70|0 +1.3.6.1.2.1.31.1.1.1.9.50|70|0 +1.3.6.1.2.1.31.1.1.1.9.51|70|0 +1.3.6.1.2.1.31.1.1.1.9.52|70|0 +1.3.6.1.2.1.31.1.1.1.9.53|70|0 +1.3.6.1.2.1.31.1.1.1.10.1|70|0 +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|0 +1.3.6.1.2.1.31.1.1.1.10.4|70|0 +1.3.6.1.2.1.31.1.1.1.10.10|70|5226176 +1.3.6.1.2.1.31.1.1.1.10.11|70|6859005 +1.3.6.1.2.1.31.1.1.1.10.12|70|109056 +1.3.6.1.2.1.31.1.1.1.10.13|70|109056 +1.3.6.1.2.1.31.1.1.1.10.14|70|109056 +1.3.6.1.2.1.31.1.1.1.10.15|70|109056 +1.3.6.1.2.1.31.1.1.1.10.16|70|109056 +1.3.6.1.2.1.31.1.1.1.10.17|70|109056 +1.3.6.1.2.1.31.1.1.1.10.18|70|109056 +1.3.6.1.2.1.31.1.1.1.10.19|70|109056 +1.3.6.1.2.1.31.1.1.1.10.20|70|109056 +1.3.6.1.2.1.31.1.1.1.10.21|70|109056 +1.3.6.1.2.1.31.1.1.1.10.22|70|109056 +1.3.6.1.2.1.31.1.1.1.10.23|70|109056 +1.3.6.1.2.1.31.1.1.1.10.24|70|109056 +1.3.6.1.2.1.31.1.1.1.10.25|70|109056 +1.3.6.1.2.1.31.1.1.1.10.26|70|109056 +1.3.6.1.2.1.31.1.1.1.10.27|70|109056 +1.3.6.1.2.1.31.1.1.1.10.28|70|109056 +1.3.6.1.2.1.31.1.1.1.10.29|70|109056 +1.3.6.1.2.1.31.1.1.1.10.43|70|47050931 +1.3.6.1.2.1.31.1.1.1.10.44|70|49216987 +1.3.6.1.2.1.31.1.1.1.10.45|70|109056 +1.3.6.1.2.1.31.1.1.1.10.46|70|109056 +1.3.6.1.2.1.31.1.1.1.10.47|70|96267918 +1.3.6.1.2.1.31.1.1.1.10.48|70|0 +1.3.6.1.2.1.31.1.1.1.10.49|70|12085181 +1.3.6.1.2.1.31.1.1.1.10.50|70|0 +1.3.6.1.2.1.31.1.1.1.10.51|70|0 +1.3.6.1.2.1.31.1.1.1.10.52|70|0 +1.3.6.1.2.1.31.1.1.1.10.53|70|0 +1.3.6.1.2.1.31.1.1.1.11.1|70|0 +1.3.6.1.2.1.31.1.1.1.11.2|70|11 +1.3.6.1.2.1.31.1.1.1.11.3|70|0 +1.3.6.1.2.1.31.1.1.1.11.4|70|0 +1.3.6.1.2.1.31.1.1.1.11.10|70|20 +1.3.6.1.2.1.31.1.1.1.11.11|70|18477 +1.3.6.1.2.1.31.1.1.1.11.12|70|0 +1.3.6.1.2.1.31.1.1.1.11.13|70|0 +1.3.6.1.2.1.31.1.1.1.11.14|70|0 +1.3.6.1.2.1.31.1.1.1.11.15|70|0 +1.3.6.1.2.1.31.1.1.1.11.16|70|0 +1.3.6.1.2.1.31.1.1.1.11.17|70|0 +1.3.6.1.2.1.31.1.1.1.11.18|70|0 +1.3.6.1.2.1.31.1.1.1.11.19|70|0 +1.3.6.1.2.1.31.1.1.1.11.20|70|0 +1.3.6.1.2.1.31.1.1.1.11.21|70|0 +1.3.6.1.2.1.31.1.1.1.11.22|70|0 +1.3.6.1.2.1.31.1.1.1.11.23|70|0 +1.3.6.1.2.1.31.1.1.1.11.24|70|0 +1.3.6.1.2.1.31.1.1.1.11.25|70|0 +1.3.6.1.2.1.31.1.1.1.11.26|70|0 +1.3.6.1.2.1.31.1.1.1.11.27|70|0 +1.3.6.1.2.1.31.1.1.1.11.28|70|0 +1.3.6.1.2.1.31.1.1.1.11.29|70|0 +1.3.6.1.2.1.31.1.1.1.11.43|70|130030 +1.3.6.1.2.1.31.1.1.1.11.44|70|158147 +1.3.6.1.2.1.31.1.1.1.11.45|70|0 +1.3.6.1.2.1.31.1.1.1.11.46|70|0 +1.3.6.1.2.1.31.1.1.1.11.47|70|288177 +1.3.6.1.2.1.31.1.1.1.11.48|70|0 +1.3.6.1.2.1.31.1.1.1.11.49|70|18497 +1.3.6.1.2.1.31.1.1.1.11.50|70|0 +1.3.6.1.2.1.31.1.1.1.11.51|70|0 +1.3.6.1.2.1.31.1.1.1.11.52|70|0 +1.3.6.1.2.1.31.1.1.1.11.53|70|0 +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 +1.3.6.1.2.1.31.1.1.1.12.4|70|0 +1.3.6.1.2.1.31.1.1.1.12.10|70|21504 +1.3.6.1.2.1.31.1.1.1.12.11|70|21499 +1.3.6.1.2.1.31.1.1.1.12.12|70|0 +1.3.6.1.2.1.31.1.1.1.12.13|70|0 +1.3.6.1.2.1.31.1.1.1.12.14|70|0 +1.3.6.1.2.1.31.1.1.1.12.15|70|0 +1.3.6.1.2.1.31.1.1.1.12.16|70|0 +1.3.6.1.2.1.31.1.1.1.12.17|70|0 +1.3.6.1.2.1.31.1.1.1.12.18|70|0 +1.3.6.1.2.1.31.1.1.1.12.19|70|0 +1.3.6.1.2.1.31.1.1.1.12.20|70|0 +1.3.6.1.2.1.31.1.1.1.12.21|70|0 +1.3.6.1.2.1.31.1.1.1.12.22|70|0 +1.3.6.1.2.1.31.1.1.1.12.23|70|0 +1.3.6.1.2.1.31.1.1.1.12.24|70|0 +1.3.6.1.2.1.31.1.1.1.12.25|70|0 +1.3.6.1.2.1.31.1.1.1.12.26|70|0 +1.3.6.1.2.1.31.1.1.1.12.27|70|0 +1.3.6.1.2.1.31.1.1.1.12.28|70|0 +1.3.6.1.2.1.31.1.1.1.12.29|70|0 +1.3.6.1.2.1.31.1.1.1.12.43|70|22737 +1.3.6.1.2.1.31.1.1.1.12.44|70|22741 +1.3.6.1.2.1.31.1.1.1.12.45|70|0 +1.3.6.1.2.1.31.1.1.1.12.46|70|0 +1.3.6.1.2.1.31.1.1.1.12.47|70|45478 +1.3.6.1.2.1.31.1.1.1.12.48|70|0 +1.3.6.1.2.1.31.1.1.1.12.49|70|43003 +1.3.6.1.2.1.31.1.1.1.12.50|70|0 +1.3.6.1.2.1.31.1.1.1.12.51|70|0 +1.3.6.1.2.1.31.1.1.1.12.52|70|0 +1.3.6.1.2.1.31.1.1.1.12.53|70|0 +1.3.6.1.2.1.31.1.1.1.13.1|70|0 +1.3.6.1.2.1.31.1.1.1.13.2|70|0 +1.3.6.1.2.1.31.1.1.1.13.3|70|0 +1.3.6.1.2.1.31.1.1.1.13.4|70|0 +1.3.6.1.2.1.31.1.1.1.13.10|70|0 +1.3.6.1.2.1.31.1.1.1.13.11|70|0 +1.3.6.1.2.1.31.1.1.1.13.12|70|284 +1.3.6.1.2.1.31.1.1.1.13.13|70|284 +1.3.6.1.2.1.31.1.1.1.13.14|70|284 +1.3.6.1.2.1.31.1.1.1.13.15|70|284 +1.3.6.1.2.1.31.1.1.1.13.16|70|284 +1.3.6.1.2.1.31.1.1.1.13.17|70|284 +1.3.6.1.2.1.31.1.1.1.13.18|70|284 +1.3.6.1.2.1.31.1.1.1.13.19|70|284 +1.3.6.1.2.1.31.1.1.1.13.20|70|284 +1.3.6.1.2.1.31.1.1.1.13.21|70|284 +1.3.6.1.2.1.31.1.1.1.13.22|70|284 +1.3.6.1.2.1.31.1.1.1.13.23|70|284 +1.3.6.1.2.1.31.1.1.1.13.24|70|284 +1.3.6.1.2.1.31.1.1.1.13.25|70|284 +1.3.6.1.2.1.31.1.1.1.13.26|70|284 +1.3.6.1.2.1.31.1.1.1.13.27|70|284 +1.3.6.1.2.1.31.1.1.1.13.28|70|284 +1.3.6.1.2.1.31.1.1.1.13.29|70|284 +1.3.6.1.2.1.31.1.1.1.13.43|70|2 +1.3.6.1.2.1.31.1.1.1.13.44|70|2 +1.3.6.1.2.1.31.1.1.1.13.45|70|284 +1.3.6.1.2.1.31.1.1.1.13.46|70|284 +1.3.6.1.2.1.31.1.1.1.13.47|70|4 +1.3.6.1.2.1.31.1.1.1.13.48|70|0 +1.3.6.1.2.1.31.1.1.1.13.49|70|0 +1.3.6.1.2.1.31.1.1.1.13.50|70|0 +1.3.6.1.2.1.31.1.1.1.13.51|70|0 +1.3.6.1.2.1.31.1.1.1.13.52|70|0 +1.3.6.1.2.1.31.1.1.1.13.53|70|0 +1.3.6.1.2.1.31.1.1.1.14.1|2|1 +1.3.6.1.2.1.31.1.1.1.14.2|2|1 +1.3.6.1.2.1.31.1.1.1.14.3|2|1 +1.3.6.1.2.1.31.1.1.1.14.4|2|1 +1.3.6.1.2.1.31.1.1.1.14.10|2|1 +1.3.6.1.2.1.31.1.1.1.14.11|2|1 +1.3.6.1.2.1.31.1.1.1.14.12|2|1 +1.3.6.1.2.1.31.1.1.1.14.13|2|1 +1.3.6.1.2.1.31.1.1.1.14.14|2|1 +1.3.6.1.2.1.31.1.1.1.14.15|2|1 +1.3.6.1.2.1.31.1.1.1.14.16|2|1 +1.3.6.1.2.1.31.1.1.1.14.17|2|1 +1.3.6.1.2.1.31.1.1.1.14.18|2|1 +1.3.6.1.2.1.31.1.1.1.14.19|2|1 +1.3.6.1.2.1.31.1.1.1.14.20|2|1 +1.3.6.1.2.1.31.1.1.1.14.21|2|1 +1.3.6.1.2.1.31.1.1.1.14.22|2|1 +1.3.6.1.2.1.31.1.1.1.14.23|2|1 +1.3.6.1.2.1.31.1.1.1.14.24|2|1 +1.3.6.1.2.1.31.1.1.1.14.25|2|1 +1.3.6.1.2.1.31.1.1.1.14.26|2|1 +1.3.6.1.2.1.31.1.1.1.14.27|2|1 +1.3.6.1.2.1.31.1.1.1.14.28|2|1 +1.3.6.1.2.1.31.1.1.1.14.29|2|1 +1.3.6.1.2.1.31.1.1.1.14.43|2|1 +1.3.6.1.2.1.31.1.1.1.14.44|2|1 +1.3.6.1.2.1.31.1.1.1.14.45|2|1 +1.3.6.1.2.1.31.1.1.1.14.46|2|1 +1.3.6.1.2.1.31.1.1.1.14.47|2|1 +1.3.6.1.2.1.31.1.1.1.14.48|2|1 +1.3.6.1.2.1.31.1.1.1.14.49|2|1 +1.3.6.1.2.1.31.1.1.1.14.50|2|1 +1.3.6.1.2.1.31.1.1.1.14.51|2|1 +1.3.6.1.2.1.31.1.1.1.14.52|2|1 +1.3.6.1.2.1.31.1.1.1.14.53|2|1 +1.3.6.1.2.1.31.1.1.1.15.1|66|0 +1.3.6.1.2.1.31.1.1.1.15.2|66|0 +1.3.6.1.2.1.31.1.1.1.15.3|66|0 +1.3.6.1.2.1.31.1.1.1.15.4|66|0 +1.3.6.1.2.1.31.1.1.1.15.10|66|10000 +1.3.6.1.2.1.31.1.1.1.15.11|66|10000 +1.3.6.1.2.1.31.1.1.1.15.12|66|10000 +1.3.6.1.2.1.31.1.1.1.15.13|66|10000 +1.3.6.1.2.1.31.1.1.1.15.14|66|10000 +1.3.6.1.2.1.31.1.1.1.15.15|66|10000 +1.3.6.1.2.1.31.1.1.1.15.16|66|10000 +1.3.6.1.2.1.31.1.1.1.15.17|66|10000 +1.3.6.1.2.1.31.1.1.1.15.18|66|10000 +1.3.6.1.2.1.31.1.1.1.15.19|66|10000 +1.3.6.1.2.1.31.1.1.1.15.20|66|1000 +1.3.6.1.2.1.31.1.1.1.15.21|66|1000 +1.3.6.1.2.1.31.1.1.1.15.22|66|1000 +1.3.6.1.2.1.31.1.1.1.15.23|66|1000 +1.3.6.1.2.1.31.1.1.1.15.24|66|1000 +1.3.6.1.2.1.31.1.1.1.15.25|66|1000 +1.3.6.1.2.1.31.1.1.1.15.26|66|1000 +1.3.6.1.2.1.31.1.1.1.15.27|66|1000 +1.3.6.1.2.1.31.1.1.1.15.28|66|1000 +1.3.6.1.2.1.31.1.1.1.15.29|66|1000 +1.3.6.1.2.1.31.1.1.1.15.43|66|40000 +1.3.6.1.2.1.31.1.1.1.15.44|66|40000 +1.3.6.1.2.1.31.1.1.1.15.45|66|40000 +1.3.6.1.2.1.31.1.1.1.15.46|66|40000 +1.3.6.1.2.1.31.1.1.1.15.47|66|80000 +1.3.6.1.2.1.31.1.1.1.15.48|66|80000 +1.3.6.1.2.1.31.1.1.1.15.49|66|20000 +1.3.6.1.2.1.31.1.1.1.15.50|66|0 +1.3.6.1.2.1.31.1.1.1.15.51|66|10000 +1.3.6.1.2.1.31.1.1.1.15.52|66|10000 +1.3.6.1.2.1.31.1.1.1.15.53|66|10000 +1.3.6.1.2.1.31.1.1.1.16.1|2|2 +1.3.6.1.2.1.31.1.1.1.16.2|2|2 +1.3.6.1.2.1.31.1.1.1.16.3|2|2 +1.3.6.1.2.1.31.1.1.1.16.4|2|2 +1.3.6.1.2.1.31.1.1.1.16.10|2|2 +1.3.6.1.2.1.31.1.1.1.16.11|2|2 +1.3.6.1.2.1.31.1.1.1.16.12|2|2 +1.3.6.1.2.1.31.1.1.1.16.13|2|2 +1.3.6.1.2.1.31.1.1.1.16.14|2|2 +1.3.6.1.2.1.31.1.1.1.16.15|2|2 +1.3.6.1.2.1.31.1.1.1.16.16|2|2 +1.3.6.1.2.1.31.1.1.1.16.17|2|2 +1.3.6.1.2.1.31.1.1.1.16.18|2|2 +1.3.6.1.2.1.31.1.1.1.16.19|2|2 +1.3.6.1.2.1.31.1.1.1.16.20|2|2 +1.3.6.1.2.1.31.1.1.1.16.21|2|2 +1.3.6.1.2.1.31.1.1.1.16.22|2|2 +1.3.6.1.2.1.31.1.1.1.16.23|2|2 +1.3.6.1.2.1.31.1.1.1.16.24|2|2 +1.3.6.1.2.1.31.1.1.1.16.25|2|2 +1.3.6.1.2.1.31.1.1.1.16.26|2|2 +1.3.6.1.2.1.31.1.1.1.16.27|2|2 +1.3.6.1.2.1.31.1.1.1.16.28|2|2 +1.3.6.1.2.1.31.1.1.1.16.29|2|2 +1.3.6.1.2.1.31.1.1.1.16.43|2|2 +1.3.6.1.2.1.31.1.1.1.16.44|2|2 +1.3.6.1.2.1.31.1.1.1.16.45|2|2 +1.3.6.1.2.1.31.1.1.1.16.46|2|2 +1.3.6.1.2.1.31.1.1.1.16.47|2|2 +1.3.6.1.2.1.31.1.1.1.16.48|2|2 +1.3.6.1.2.1.31.1.1.1.16.49|2|2 +1.3.6.1.2.1.31.1.1.1.16.50|2|2 +1.3.6.1.2.1.31.1.1.1.16.51|2|2 +1.3.6.1.2.1.31.1.1.1.16.52|2|2 +1.3.6.1.2.1.31.1.1.1.16.53|2|2 +1.3.6.1.2.1.31.1.1.1.17.1|2|2 +1.3.6.1.2.1.31.1.1.1.17.2|2|2 +1.3.6.1.2.1.31.1.1.1.17.3|2|2 +1.3.6.1.2.1.31.1.1.1.17.4|2|1 +1.3.6.1.2.1.31.1.1.1.17.10|2|1 +1.3.6.1.2.1.31.1.1.1.17.11|2|1 +1.3.6.1.2.1.31.1.1.1.17.12|2|1 +1.3.6.1.2.1.31.1.1.1.17.13|2|1 +1.3.6.1.2.1.31.1.1.1.17.14|2|1 +1.3.6.1.2.1.31.1.1.1.17.15|2|1 +1.3.6.1.2.1.31.1.1.1.17.16|2|1 +1.3.6.1.2.1.31.1.1.1.17.17|2|1 +1.3.6.1.2.1.31.1.1.1.17.18|2|1 +1.3.6.1.2.1.31.1.1.1.17.19|2|1 +1.3.6.1.2.1.31.1.1.1.17.20|2|1 +1.3.6.1.2.1.31.1.1.1.17.21|2|1 +1.3.6.1.2.1.31.1.1.1.17.22|2|1 +1.3.6.1.2.1.31.1.1.1.17.23|2|1 +1.3.6.1.2.1.31.1.1.1.17.24|2|1 +1.3.6.1.2.1.31.1.1.1.17.25|2|1 +1.3.6.1.2.1.31.1.1.1.17.26|2|1 +1.3.6.1.2.1.31.1.1.1.17.27|2|1 +1.3.6.1.2.1.31.1.1.1.17.28|2|1 +1.3.6.1.2.1.31.1.1.1.17.29|2|1 +1.3.6.1.2.1.31.1.1.1.17.43|2|1 +1.3.6.1.2.1.31.1.1.1.17.44|2|1 +1.3.6.1.2.1.31.1.1.1.17.45|2|1 +1.3.6.1.2.1.31.1.1.1.17.46|2|1 +1.3.6.1.2.1.31.1.1.1.17.47|2|2 +1.3.6.1.2.1.31.1.1.1.17.48|2|2 +1.3.6.1.2.1.31.1.1.1.17.49|2|2 +1.3.6.1.2.1.31.1.1.1.17.50|2|2 +1.3.6.1.2.1.31.1.1.1.17.51|2|2 +1.3.6.1.2.1.31.1.1.1.17.52|2|2 +1.3.6.1.2.1.31.1.1.1.17.53|2|2 +1.3.6.1.2.1.31.1.1.1.18.1|4| +1.3.6.1.2.1.31.1.1.1.18.2|4| +1.3.6.1.2.1.31.1.1.1.18.3|4| +1.3.6.1.2.1.31.1.1.1.18.4|4| +1.3.6.1.2.1.31.1.1.1.18.10|4|BRAT-PE1-Six_XG0/0/36 +1.3.6.1.2.1.31.1.1.1.18.11|4|BRAT-PE1-Six_XG1/0/36 +1.3.6.1.2.1.31.1.1.1.18.12|4|peering: SIX [10G] +1.3.6.1.2.1.31.1.1.1.18.13|4|transit: CDN77 & SUPERNETWORK [5G] (DWDM ch27) +1.3.6.1.2.1.31.1.1.1.18.14|4|transit: COGENT [5G] (DWDM ch28) +1.3.6.1.2.1.31.1.1.1.18.15|4|peering: PEERING.CZ [5G] (DWDM ch26) +1.3.6.1.2.1.31.1.1.1.18.16|4|peering: DETRONICS [10G] +1.3.6.1.2.1.31.1.1.1.18.17|4|NNI_TELEKOM +1.3.6.1.2.1.31.1.1.1.18.18|4|NNI_TELEKOM_Backup +1.3.6.1.2.1.31.1.1.1.18.19|4| +1.3.6.1.2.1.31.1.1.1.18.20|4| +1.3.6.1.2.1.31.1.1.1.18.21|4| +1.3.6.1.2.1.31.1.1.1.18.22|4| +1.3.6.1.2.1.31.1.1.1.18.23|4| +1.3.6.1.2.1.31.1.1.1.18.24|4| +1.3.6.1.2.1.31.1.1.1.18.25|4| +1.3.6.1.2.1.31.1.1.1.18.26|4| +1.3.6.1.2.1.31.1.1.1.18.27|4| +1.3.6.1.2.1.31.1.1.1.18.28|4| +1.3.6.1.2.1.31.1.1.1.18.29|4| +1.3.6.1.2.1.31.1.1.1.18.43|4|BRAT-PE1-Six_40GE0/1/1 +1.3.6.1.2.1.31.1.1.1.18.44|4|BRAT-PE1-Six_40GE1/1/1 +1.3.6.1.2.1.31.1.1.1.18.45|4| +1.3.6.1.2.1.31.1.1.1.18.46|4| +1.3.6.1.2.1.31.1.1.1.18.47|4|BRAT-PE1-Six [80G] (IPv4_VRF:emax_core) +1.3.6.1.2.1.31.1.1.1.18.48|4|BRAT-PE1-Six (IPv4_VRF:mmnet) +1.3.6.1.2.1.31.1.1.1.18.49|4|BRAT-PE1-Six [20G] (IPv6_VRF:emax_core) +1.3.6.1.2.1.31.1.1.1.18.50|4|Management_loopback +1.3.6.1.2.1.31.1.1.1.18.51|4|transit: TELEKOM_ISPC9 [3.5G] +1.3.6.1.2.1.31.1.1.1.18.52|4|transit: TELEKOM_ISPC8009 [3.5G] +1.3.6.1.2.1.31.1.1.1.18.53|4|transit: SUPERNETWORK [3G] +1.3.6.1.2.1.31.1.1.1.19.1|67|0 +1.3.6.1.2.1.31.1.1.1.19.2|67|0 +1.3.6.1.2.1.31.1.1.1.19.3|67|0 +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.10|67|52813301 +1.3.6.1.2.1.31.1.1.1.19.11|67|52828520 +1.3.6.1.2.1.31.1.1.1.19.12|67|0 +1.3.6.1.2.1.31.1.1.1.19.13|67|0 +1.3.6.1.2.1.31.1.1.1.19.14|67|0 +1.3.6.1.2.1.31.1.1.1.19.15|67|0 +1.3.6.1.2.1.31.1.1.1.19.16|67|0 +1.3.6.1.2.1.31.1.1.1.19.17|67|0 +1.3.6.1.2.1.31.1.1.1.19.18|67|0 +1.3.6.1.2.1.31.1.1.1.19.19|67|0 +1.3.6.1.2.1.31.1.1.1.19.20|67|0 +1.3.6.1.2.1.31.1.1.1.19.21|67|0 +1.3.6.1.2.1.31.1.1.1.19.22|67|0 +1.3.6.1.2.1.31.1.1.1.19.23|67|0 +1.3.6.1.2.1.31.1.1.1.19.24|67|0 +1.3.6.1.2.1.31.1.1.1.19.25|67|0 +1.3.6.1.2.1.31.1.1.1.19.26|67|0 +1.3.6.1.2.1.31.1.1.1.19.27|67|0 +1.3.6.1.2.1.31.1.1.1.19.28|67|0 +1.3.6.1.2.1.31.1.1.1.19.29|67|0 +1.3.6.1.2.1.31.1.1.1.19.43|67|52851784 +1.3.6.1.2.1.31.1.1.1.19.44|67|52851786 +1.3.6.1.2.1.31.1.1.1.19.45|67|0 +1.3.6.1.2.1.31.1.1.1.19.46|67|0 +1.3.6.1.2.1.31.1.1.1.19.47|67|0 +1.3.6.1.2.1.31.1.1.1.19.48|67|0 +1.3.6.1.2.1.31.1.1.1.19.49|67|0 +1.3.6.1.2.1.31.1.1.1.19.50|67|0 +1.3.6.1.2.1.31.1.1.1.19.51|67|0 +1.3.6.1.2.1.31.1.1.1.19.52|67|0 +1.3.6.1.2.1.31.1.1.1.19.53|67|0 +1.3.6.1.2.1.31.1.2.1.3.0.1|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.2|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.3|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.4|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.12|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.13|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.14|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.16|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.19|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.20|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.21|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.22|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.23|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.24|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.25|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.26|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.27|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.28|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.29|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.45|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.46|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.48|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.49|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.50|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.51|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.52|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.53|2|1 +1.3.6.1.2.1.31.1.2.1.3.1.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.2.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.3.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.4.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.10.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.11.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.12.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.13.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.14.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.15.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.16.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.17.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.18.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.19.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.20.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.21.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.22.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.23.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.24.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.25.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.26.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.27.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.28.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.29.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.43.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.44.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.45.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.46.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.47.43|2|1 +1.3.6.1.2.1.31.1.2.1.3.47.44|2|1 +1.3.6.1.2.1.31.1.2.1.3.48.47|2|1 +1.3.6.1.2.1.31.1.2.1.3.49.10|2|1 +1.3.6.1.2.1.31.1.2.1.3.49.11|2|1 +1.3.6.1.2.1.31.1.2.1.3.50.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.51.17|2|1 +1.3.6.1.2.1.31.1.2.1.3.52.18|2|1 +1.3.6.1.2.1.31.1.2.1.3.53.15|2|1 +1.3.6.1.2.1.47.1.1.1.1.2.16777216|4|NE40E-M2K-B frame +1.3.6.1.2.1.47.1.1.1.1.2.16973824|4|IPU slot 3 +1.3.6.1.2.1.47.1.1.1.1.2.16973825|4|Integration Processing Unit +1.3.6.1.2.1.47.1.1.1.1.2.16973826|4|4-Port 100GBase-QSFP28 + 10-Port 10GBase-X-SFP+ + 10-Port 1000Base-X-SFP +1.3.6.1.2.1.47.1.1.1.1.2.16974080|4|CFCARD slot 3/0 +1.3.6.1.2.1.47.1.1.1.1.2.16978176|4|CFCARD 3/0 +1.3.6.1.2.1.47.1.1.1.1.2.16978177|4|40Gb/s-850nm-MPO-100m(OM3 50um) +1.3.6.1.2.1.47.1.1.1.1.2.16978178|4|40Gb/s-850nm-MPO-100m(OM3 50um) +1.3.6.1.2.1.47.1.1.1.1.2.16978179|4|40GE0/3/2 +1.3.6.1.2.1.47.1.1.1.1.2.16978180|4|40GE0/3/3 +1.3.6.1.2.1.47.1.1.1.1.2.16978181|4|10300Mb/s-1310nm-LC-10km(0.009mm) +1.3.6.1.2.1.47.1.1.1.1.2.16978182|4|10300Mb/s-1310nm-LC-10km(0.009mm) +1.3.6.1.2.1.47.1.1.1.1.2.16978183|4|10300Mb/s-1310nm-LC-10km(0.009mm) +1.3.6.1.2.1.47.1.1.1.1.2.16978184|4|10300Mb/s-1555nm-LC-40km(0.009mm) +1.3.6.1.2.1.47.1.1.1.1.2.16978185|4|10300Mb/s-1554nm-LC-40km(0.009mm) +1.3.6.1.2.1.47.1.1.1.1.2.16978186|4|10300Mb/s-1556nm-LC-40km(0.009mm) +1.3.6.1.2.1.47.1.1.1.1.2.16978187|4|10300Mb/s-1310nm-LC-10km(0.009mm) +1.3.6.1.2.1.47.1.1.1.1.2.16978188|4|10300Mb/s-1310nm-LC-10km(0.009mm) +1.3.6.1.2.1.47.1.1.1.1.2.16978189|4|10300Mb/s-1310nm-LC-10km(0.009mm) +1.3.6.1.2.1.47.1.1.1.1.2.16978190|4|10300Mb/s-1310nm-LC-10km(0.009mm) +1.3.6.1.2.1.47.1.1.1.1.2.16978191|4|GigabitEthernet0/3/14 +1.3.6.1.2.1.47.1.1.1.1.2.16978192|4|GigabitEthernet0/3/15 +1.3.6.1.2.1.47.1.1.1.1.2.16978193|4|GigabitEthernet0/3/16 +1.3.6.1.2.1.47.1.1.1.1.2.16978194|4|GigabitEthernet0/3/17 +1.3.6.1.2.1.47.1.1.1.1.2.16978195|4|GigabitEthernet0/3/18 +1.3.6.1.2.1.47.1.1.1.1.2.16978196|4|GigabitEthernet0/3/19 +1.3.6.1.2.1.47.1.1.1.1.2.16978197|4|GigabitEthernet0/3/20 +1.3.6.1.2.1.47.1.1.1.1.2.16978198|4|GigabitEthernet0/3/21 +1.3.6.1.2.1.47.1.1.1.1.2.16978199|4|GigabitEthernet0/3/22 +1.3.6.1.2.1.47.1.1.1.1.2.16978200|4|GigabitEthernet0/3/23 +1.3.6.1.2.1.47.1.1.1.1.2.16978689|4|GigabitEthernet3/2/0 +1.3.6.1.2.1.47.1.1.1.1.2.16978690|4|GigabitEthernet3/2/1 +1.3.6.1.2.1.47.1.1.1.1.2.16982273|4|GigabitEthernet0/0/0 +1.3.6.1.2.1.47.1.1.1.1.2.17039360|4|POWER slot 4 +1.3.6.1.2.1.47.1.1.1.1.2.17039361|4|Function Module,PAC700S53-CL,PAC700S53-CL,AC Power Supply Uint 700W +1.3.6.1.2.1.47.1.1.1.1.2.17104896|4|POWER slot 5 +1.3.6.1.2.1.47.1.1.1.1.2.17104897|4|Function Module,PAC700S53-CL,PAC700S53-CL,AC Power Supply Uint 700W +1.3.6.1.2.1.47.1.1.1.1.2.17170432|4|FAN slot 6 +1.3.6.1.2.1.47.1.1.1.1.2.17170433|4|Function Module,NE40E,CR5M0M2HBX70,Fan Box +1.3.6.1.2.1.47.1.1.1.1.2.17235968|4|CLK slot 7 +1.3.6.1.2.1.47.1.1.1.1.2.17235969|4|CLK 7 +1.3.6.1.2.1.47.1.1.1.1.3.16777216|6|1.3.6.1.4.1.2011.20021210.11.580941 +1.3.6.1.2.1.47.1.1.1.1.3.16973824|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.16973825|6|1.3.6.1.4.1.2011.20021210.15.675812 +1.3.6.1.2.1.47.1.1.1.1.3.16973826|6|1.3.6.1.4.1.2011.20021210.13.561830 +1.3.6.1.2.1.47.1.1.1.1.3.16974080|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.16978176|6|1.3.6.1.4.1.2011.20021210.13.561151 +1.3.6.1.2.1.47.1.1.1.1.3.16978177|6|1.3.6.1.4.1.2011.20021210.14.6 +1.3.6.1.2.1.47.1.1.1.1.3.16978178|6|1.3.6.1.4.1.2011.20021210.14.6 +1.3.6.1.2.1.47.1.1.1.1.3.16978179|6|1.3.6.1.4.1.2011.20021210.14.6 +1.3.6.1.2.1.47.1.1.1.1.3.16978180|6|1.3.6.1.4.1.2011.20021210.14.6 +1.3.6.1.2.1.47.1.1.1.1.3.16978181|6|1.3.6.1.4.1.2011.20021210.14.6 +1.3.6.1.2.1.47.1.1.1.1.3.16978182|6|1.3.6.1.4.1.2011.20021210.14.6 +1.3.6.1.2.1.47.1.1.1.1.3.16978183|6|1.3.6.1.4.1.2011.20021210.14.6 +1.3.6.1.2.1.47.1.1.1.1.3.16978184|6|1.3.6.1.4.1.2011.20021210.14.6 +1.3.6.1.2.1.47.1.1.1.1.3.16978185|6|1.3.6.1.4.1.2011.20021210.14.6 +1.3.6.1.2.1.47.1.1.1.1.3.16978186|6|1.3.6.1.4.1.2011.20021210.14.6 +1.3.6.1.2.1.47.1.1.1.1.3.16978187|6|1.3.6.1.4.1.2011.20021210.14.6 +1.3.6.1.2.1.47.1.1.1.1.3.16978188|6|1.3.6.1.4.1.2011.20021210.14.6 +1.3.6.1.2.1.47.1.1.1.1.3.16978189|6|1.3.6.1.4.1.2011.20021210.14.6 +1.3.6.1.2.1.47.1.1.1.1.3.16978190|6|1.3.6.1.4.1.2011.20021210.14.6 +1.3.6.1.2.1.47.1.1.1.1.3.16978191|6|1.3.6.1.4.1.2011.20021210.14.6 +1.3.6.1.2.1.47.1.1.1.1.3.16978192|6|1.3.6.1.4.1.2011.20021210.14.6 +1.3.6.1.2.1.47.1.1.1.1.3.16978193|6|1.3.6.1.4.1.2011.20021210.14.6 +1.3.6.1.2.1.47.1.1.1.1.3.16978194|6|1.3.6.1.4.1.2011.20021210.14.6 +1.3.6.1.2.1.47.1.1.1.1.3.16978195|6|1.3.6.1.4.1.2011.20021210.14.6 +1.3.6.1.2.1.47.1.1.1.1.3.16978196|6|1.3.6.1.4.1.2011.20021210.14.6 +1.3.6.1.2.1.47.1.1.1.1.3.16978197|6|1.3.6.1.4.1.2011.20021210.14.6 +1.3.6.1.2.1.47.1.1.1.1.3.16978198|6|1.3.6.1.4.1.2011.20021210.14.6 +1.3.6.1.2.1.47.1.1.1.1.3.16978199|6|1.3.6.1.4.1.2011.20021210.14.6 +1.3.6.1.2.1.47.1.1.1.1.3.16978200|6|1.3.6.1.4.1.2011.20021210.14.6 +1.3.6.1.2.1.47.1.1.1.1.3.16978689|6|1.3.6.1.4.1.2011.20021210.14.574 +1.3.6.1.2.1.47.1.1.1.1.3.16978690|6|1.3.6.1.4.1.2011.20021210.14.574 +1.3.6.1.2.1.47.1.1.1.1.3.16982273|6|1.3.6.1.4.1.2011.20021210.14.6 +1.3.6.1.2.1.47.1.1.1.1.3.17039360|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.17039361|6|1.3.6.1.4.1.2011.20021210.15.564801 +1.3.6.1.2.1.47.1.1.1.1.3.17104896|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.17104897|6|1.3.6.1.4.1.2011.20021210.15.564801 +1.3.6.1.2.1.47.1.1.1.1.3.17170432|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.17170433|6|1.3.6.1.4.1.2011.20021210.15.564799 +1.3.6.1.2.1.47.1.1.1.1.3.17235968|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.17235969|6|1.3.6.1.4.1.2011.20021210.12.561156 +1.3.6.1.2.1.47.1.1.1.1.4.16777216|2|0 +1.3.6.1.2.1.47.1.1.1.1.4.16973824|2|16777216 +1.3.6.1.2.1.47.1.1.1.1.4.16973825|2|16973824 +1.3.6.1.2.1.47.1.1.1.1.4.16973826|2|16973825 +1.3.6.1.2.1.47.1.1.1.1.4.16974080|2|16973825 +1.3.6.1.2.1.47.1.1.1.1.4.16978176|2|16974080 +1.3.6.1.2.1.47.1.1.1.1.4.16978177|2|16973826 +1.3.6.1.2.1.47.1.1.1.1.4.16978178|2|16973826 +1.3.6.1.2.1.47.1.1.1.1.4.16978179|2|16973826 +1.3.6.1.2.1.47.1.1.1.1.4.16978180|2|16973826 +1.3.6.1.2.1.47.1.1.1.1.4.16978181|2|16973826 +1.3.6.1.2.1.47.1.1.1.1.4.16978182|2|16973826 +1.3.6.1.2.1.47.1.1.1.1.4.16978183|2|16973826 +1.3.6.1.2.1.47.1.1.1.1.4.16978184|2|16973826 +1.3.6.1.2.1.47.1.1.1.1.4.16978185|2|16973826 +1.3.6.1.2.1.47.1.1.1.1.4.16978186|2|16973826 +1.3.6.1.2.1.47.1.1.1.1.4.16978187|2|16973826 +1.3.6.1.2.1.47.1.1.1.1.4.16978188|2|16973826 +1.3.6.1.2.1.47.1.1.1.1.4.16978189|2|16973826 +1.3.6.1.2.1.47.1.1.1.1.4.16978190|2|16973826 +1.3.6.1.2.1.47.1.1.1.1.4.16978191|2|16973826 +1.3.6.1.2.1.47.1.1.1.1.4.16978192|2|16973826 +1.3.6.1.2.1.47.1.1.1.1.4.16978193|2|16973826 +1.3.6.1.2.1.47.1.1.1.1.4.16978194|2|16973826 +1.3.6.1.2.1.47.1.1.1.1.4.16978195|2|16973826 +1.3.6.1.2.1.47.1.1.1.1.4.16978196|2|16973826 +1.3.6.1.2.1.47.1.1.1.1.4.16978197|2|16973826 +1.3.6.1.2.1.47.1.1.1.1.4.16978198|2|16973826 +1.3.6.1.2.1.47.1.1.1.1.4.16978199|2|16973826 +1.3.6.1.2.1.47.1.1.1.1.4.16978200|2|16973826 +1.3.6.1.2.1.47.1.1.1.1.4.16978689|2|16973825 +1.3.6.1.2.1.47.1.1.1.1.4.16978690|2|16973825 +1.3.6.1.2.1.47.1.1.1.1.4.16982273|2|16973825 +1.3.6.1.2.1.47.1.1.1.1.4.17039360|2|16777216 +1.3.6.1.2.1.47.1.1.1.1.4.17039361|2|17039360 +1.3.6.1.2.1.47.1.1.1.1.4.17104896|2|16777216 +1.3.6.1.2.1.47.1.1.1.1.4.17104897|2|17104896 +1.3.6.1.2.1.47.1.1.1.1.4.17170432|2|16777216 +1.3.6.1.2.1.47.1.1.1.1.4.17170433|2|17170432 +1.3.6.1.2.1.47.1.1.1.1.4.17235968|2|16777216 +1.3.6.1.2.1.47.1.1.1.1.4.17235969|2|17235968 +1.3.6.1.2.1.47.1.1.1.1.5.16777216|2|3 +1.3.6.1.2.1.47.1.1.1.1.5.16973824|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.16973825|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.16973826|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.16974080|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.16978176|2|9 +1.3.6.1.2.1.47.1.1.1.1.5.16978177|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.16978178|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.16978179|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.16978180|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.16978181|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.16978182|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.16978183|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.16978184|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.16978185|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.16978186|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.16978187|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.16978188|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.16978189|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.16978190|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.16978191|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.16978192|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.16978193|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.16978194|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.16978195|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.16978196|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.16978197|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.16978198|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.16978199|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.16978200|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.16978689|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.16978690|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.16982273|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.17039360|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.17039361|2|6 +1.3.6.1.2.1.47.1.1.1.1.5.17104896|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.17104897|2|6 +1.3.6.1.2.1.47.1.1.1.1.5.17170432|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.17170433|2|7 +1.3.6.1.2.1.47.1.1.1.1.5.17235968|2|5 +1.3.6.1.2.1.47.1.1.1.1.5.17235969|2|9 +1.3.6.1.2.1.47.1.1.1.1.6.16777216|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.16973824|2|3 +1.3.6.1.2.1.47.1.1.1.1.6.16973825|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.16973826|2|3 +1.3.6.1.2.1.47.1.1.1.1.6.16974080|2|61 +1.3.6.1.2.1.47.1.1.1.1.6.16978176|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.16978177|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.16978178|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.16978179|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.16978180|2|3 +1.3.6.1.2.1.47.1.1.1.1.6.16978181|2|4 +1.3.6.1.2.1.47.1.1.1.1.6.16978182|2|5 +1.3.6.1.2.1.47.1.1.1.1.6.16978183|2|6 +1.3.6.1.2.1.47.1.1.1.1.6.16978184|2|7 +1.3.6.1.2.1.47.1.1.1.1.6.16978185|2|8 +1.3.6.1.2.1.47.1.1.1.1.6.16978186|2|9 +1.3.6.1.2.1.47.1.1.1.1.6.16978187|2|10 +1.3.6.1.2.1.47.1.1.1.1.6.16978188|2|11 +1.3.6.1.2.1.47.1.1.1.1.6.16978189|2|12 +1.3.6.1.2.1.47.1.1.1.1.6.16978190|2|13 +1.3.6.1.2.1.47.1.1.1.1.6.16978191|2|14 +1.3.6.1.2.1.47.1.1.1.1.6.16978192|2|15 +1.3.6.1.2.1.47.1.1.1.1.6.16978193|2|16 +1.3.6.1.2.1.47.1.1.1.1.6.16978194|2|17 +1.3.6.1.2.1.47.1.1.1.1.6.16978195|2|18 +1.3.6.1.2.1.47.1.1.1.1.6.16978196|2|19 +1.3.6.1.2.1.47.1.1.1.1.6.16978197|2|20 +1.3.6.1.2.1.47.1.1.1.1.6.16978198|2|21 +1.3.6.1.2.1.47.1.1.1.1.6.16978199|2|22 +1.3.6.1.2.1.47.1.1.1.1.6.16978200|2|23 +1.3.6.1.2.1.47.1.1.1.1.6.16978689|2|6 +1.3.6.1.2.1.47.1.1.1.1.6.16978690|2|7 +1.3.6.1.2.1.47.1.1.1.1.6.16982273|2|0 +1.3.6.1.2.1.47.1.1.1.1.6.17039360|2|4 +1.3.6.1.2.1.47.1.1.1.1.6.17039361|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.17104896|2|5 +1.3.6.1.2.1.47.1.1.1.1.6.17104897|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.17170432|2|6 +1.3.6.1.2.1.47.1.1.1.1.6.17170433|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.17235968|2|7 +1.3.6.1.2.1.47.1.1.1.1.6.17235969|2|1 +1.3.6.1.2.1.47.1.1.1.1.7.16777216|4|NE40E-M2K-B frame +1.3.6.1.2.1.47.1.1.1.1.7.16973824|4|IPU slot 3 +1.3.6.1.2.1.47.1.1.1.1.7.16973825|4|IPU 3 +1.3.6.1.2.1.47.1.1.1.1.7.16973826|4|CX68E4NLAXF0 0/3 +1.3.6.1.2.1.47.1.1.1.1.7.16974080|4|CFCARD slot 3/0 +1.3.6.1.2.1.47.1.1.1.1.7.16978176|4|CFCARD 3/0 +1.3.6.1.2.1.47.1.1.1.1.7.16978177|4|40GE0/3/0 +1.3.6.1.2.1.47.1.1.1.1.7.16978178|4|40GE0/3/1 +1.3.6.1.2.1.47.1.1.1.1.7.16978179|4|40GE0/3/2 +1.3.6.1.2.1.47.1.1.1.1.7.16978180|4|40GE0/3/3 +1.3.6.1.2.1.47.1.1.1.1.7.16978181|4|GigabitEthernet0/3/4 +1.3.6.1.2.1.47.1.1.1.1.7.16978182|4|GigabitEthernet0/3/5 +1.3.6.1.2.1.47.1.1.1.1.7.16978183|4|GigabitEthernet0/3/6 +1.3.6.1.2.1.47.1.1.1.1.7.16978184|4|GigabitEthernet0/3/7 +1.3.6.1.2.1.47.1.1.1.1.7.16978185|4|GigabitEthernet0/3/8 +1.3.6.1.2.1.47.1.1.1.1.7.16978186|4|GigabitEthernet0/3/9 +1.3.6.1.2.1.47.1.1.1.1.7.16978187|4|GigabitEthernet0/3/10 +1.3.6.1.2.1.47.1.1.1.1.7.16978188|4|GigabitEthernet0/3/11 +1.3.6.1.2.1.47.1.1.1.1.7.16978189|4|GigabitEthernet0/3/12 +1.3.6.1.2.1.47.1.1.1.1.7.16978190|4|GigabitEthernet0/3/13 +1.3.6.1.2.1.47.1.1.1.1.7.16978191|4|GigabitEthernet0/3/14 +1.3.6.1.2.1.47.1.1.1.1.7.16978192|4|GigabitEthernet0/3/15 +1.3.6.1.2.1.47.1.1.1.1.7.16978193|4|GigabitEthernet0/3/16 +1.3.6.1.2.1.47.1.1.1.1.7.16978194|4|GigabitEthernet0/3/17 +1.3.6.1.2.1.47.1.1.1.1.7.16978195|4|GigabitEthernet0/3/18 +1.3.6.1.2.1.47.1.1.1.1.7.16978196|4|GigabitEthernet0/3/19 +1.3.6.1.2.1.47.1.1.1.1.7.16978197|4|GigabitEthernet0/3/20 +1.3.6.1.2.1.47.1.1.1.1.7.16978198|4|GigabitEthernet0/3/21 +1.3.6.1.2.1.47.1.1.1.1.7.16978199|4|GigabitEthernet0/3/22 +1.3.6.1.2.1.47.1.1.1.1.7.16978200|4|GigabitEthernet0/3/23 +1.3.6.1.2.1.47.1.1.1.1.7.16978689|4|GigabitEthernet3/2/0 +1.3.6.1.2.1.47.1.1.1.1.7.16978690|4|GigabitEthernet3/2/1 +1.3.6.1.2.1.47.1.1.1.1.7.16982273|4|GigabitEthernet0/0/0 +1.3.6.1.2.1.47.1.1.1.1.7.17039360|4|POWER slot 4 +1.3.6.1.2.1.47.1.1.1.1.7.17039361|4|POWER 4 +1.3.6.1.2.1.47.1.1.1.1.7.17104896|4|POWER slot 5 +1.3.6.1.2.1.47.1.1.1.1.7.17104897|4|POWER 5 +1.3.6.1.2.1.47.1.1.1.1.7.17170432|4|FAN slot 6 +1.3.6.1.2.1.47.1.1.1.1.7.17170433|4|FAN 6 +1.3.6.1.2.1.47.1.1.1.1.7.17235968|4|CLK slot 7 +1.3.6.1.2.1.47.1.1.1.1.7.17235969|4|CLK 7 +1.3.6.1.2.1.47.1.1.1.1.8.16777216|4| +1.3.6.1.2.1.47.1.1.1.1.8.16973824|4| +1.3.6.1.2.1.47.1.1.1.1.8.16973825|4|IPU REV B +1.3.6.1.2.1.47.1.1.1.1.8.16973826|4| +1.3.6.1.2.1.47.1.1.1.1.8.16974080|4| +1.3.6.1.2.1.47.1.1.1.1.8.16978176|4| +1.3.6.1.2.1.47.1.1.1.1.8.16978177|4| +1.3.6.1.2.1.47.1.1.1.1.8.16978178|4| +1.3.6.1.2.1.47.1.1.1.1.8.16978179|4| +1.3.6.1.2.1.47.1.1.1.1.8.16978180|4| +1.3.6.1.2.1.47.1.1.1.1.8.16978181|4| +1.3.6.1.2.1.47.1.1.1.1.8.16978182|4| +1.3.6.1.2.1.47.1.1.1.1.8.16978183|4| +1.3.6.1.2.1.47.1.1.1.1.8.16978184|4| +1.3.6.1.2.1.47.1.1.1.1.8.16978185|4| +1.3.6.1.2.1.47.1.1.1.1.8.16978186|4| +1.3.6.1.2.1.47.1.1.1.1.8.16978187|4| +1.3.6.1.2.1.47.1.1.1.1.8.16978188|4| +1.3.6.1.2.1.47.1.1.1.1.8.16978189|4| +1.3.6.1.2.1.47.1.1.1.1.8.16978190|4| +1.3.6.1.2.1.47.1.1.1.1.8.16978191|4| +1.3.6.1.2.1.47.1.1.1.1.8.16978192|4| +1.3.6.1.2.1.47.1.1.1.1.8.16978193|4| +1.3.6.1.2.1.47.1.1.1.1.8.16978194|4| +1.3.6.1.2.1.47.1.1.1.1.8.16978195|4| +1.3.6.1.2.1.47.1.1.1.1.8.16978196|4| +1.3.6.1.2.1.47.1.1.1.1.8.16978197|4| +1.3.6.1.2.1.47.1.1.1.1.8.16978198|4| +1.3.6.1.2.1.47.1.1.1.1.8.16978199|4| +1.3.6.1.2.1.47.1.1.1.1.8.16978200|4| +1.3.6.1.2.1.47.1.1.1.1.8.16978689|4| +1.3.6.1.2.1.47.1.1.1.1.8.16978690|4| +1.3.6.1.2.1.47.1.1.1.1.8.16982273|4| +1.3.6.1.2.1.47.1.1.1.1.8.17039360|4| +1.3.6.1.2.1.47.1.1.1.1.8.17039361|4|PSU700A REV E +1.3.6.1.2.1.47.1.1.1.1.8.17104896|4| +1.3.6.1.2.1.47.1.1.1.1.8.17104897|4|PSU700A REV E +1.3.6.1.2.1.47.1.1.1.1.8.17170432|4| +1.3.6.1.2.1.47.1.1.1.1.8.17170433|4| +1.3.6.1.2.1.47.1.1.1.1.8.17235968|4| +1.3.6.1.2.1.47.1.1.1.1.8.17235969|4| +1.3.6.1.2.1.47.1.1.1.1.9.16777216|4| +1.3.6.1.2.1.47.1.1.1.1.9.16973824|4| +1.3.6.1.2.1.47.1.1.1.1.9.16973825|4|CPU: EPLD ver 004, FPGA ver 009, FPGA2 ver 008 NPU: FPGA ver 018, FPGA2 ver 007 +1.3.6.1.2.1.47.1.1.1.1.9.16973826|4| +1.3.6.1.2.1.47.1.1.1.1.9.16974080|4| +1.3.6.1.2.1.47.1.1.1.1.9.16978176|4| +1.3.6.1.2.1.47.1.1.1.1.9.16978177|4| +1.3.6.1.2.1.47.1.1.1.1.9.16978178|4| +1.3.6.1.2.1.47.1.1.1.1.9.16978179|4| +1.3.6.1.2.1.47.1.1.1.1.9.16978180|4| +1.3.6.1.2.1.47.1.1.1.1.9.16978181|4| +1.3.6.1.2.1.47.1.1.1.1.9.16978182|4| +1.3.6.1.2.1.47.1.1.1.1.9.16978183|4| +1.3.6.1.2.1.47.1.1.1.1.9.16978184|4| +1.3.6.1.2.1.47.1.1.1.1.9.16978185|4| +1.3.6.1.2.1.47.1.1.1.1.9.16978186|4| +1.3.6.1.2.1.47.1.1.1.1.9.16978187|4| +1.3.6.1.2.1.47.1.1.1.1.9.16978188|4| +1.3.6.1.2.1.47.1.1.1.1.9.16978189|4| +1.3.6.1.2.1.47.1.1.1.1.9.16978190|4| +1.3.6.1.2.1.47.1.1.1.1.9.16978191|4| +1.3.6.1.2.1.47.1.1.1.1.9.16978192|4| +1.3.6.1.2.1.47.1.1.1.1.9.16978193|4| +1.3.6.1.2.1.47.1.1.1.1.9.16978194|4| +1.3.6.1.2.1.47.1.1.1.1.9.16978195|4| +1.3.6.1.2.1.47.1.1.1.1.9.16978196|4| +1.3.6.1.2.1.47.1.1.1.1.9.16978197|4| +1.3.6.1.2.1.47.1.1.1.1.9.16978198|4| +1.3.6.1.2.1.47.1.1.1.1.9.16978199|4| +1.3.6.1.2.1.47.1.1.1.1.9.16978200|4| +1.3.6.1.2.1.47.1.1.1.1.9.16978689|4| +1.3.6.1.2.1.47.1.1.1.1.9.16978690|4| +1.3.6.1.2.1.47.1.1.1.1.9.16982273|4| +1.3.6.1.2.1.47.1.1.1.1.9.17039360|4| +1.3.6.1.2.1.47.1.1.1.1.9.17039361|4| +1.3.6.1.2.1.47.1.1.1.1.9.17104896|4| +1.3.6.1.2.1.47.1.1.1.1.9.17104897|4| +1.3.6.1.2.1.47.1.1.1.1.9.17170432|4| +1.3.6.1.2.1.47.1.1.1.1.9.17170433|4| +1.3.6.1.2.1.47.1.1.1.1.9.17235968|4| +1.3.6.1.2.1.47.1.1.1.1.9.17235969|4|FPGA ver 1509, DSP ver 17060021 +1.3.6.1.2.1.47.1.1.1.1.10.16777216|4|VRP (R) software, Version 8.190(CN), RELEASE 0000 +1.3.6.1.2.1.47.1.1.1.1.10.16973824|4| +1.3.6.1.2.1.47.1.1.1.1.10.16973825|4|BootROM ver 04.73 +1.3.6.1.2.1.47.1.1.1.1.10.16973826|4| +1.3.6.1.2.1.47.1.1.1.1.10.16974080|4| +1.3.6.1.2.1.47.1.1.1.1.10.16978176|4| +1.3.6.1.2.1.47.1.1.1.1.10.16978177|4| +1.3.6.1.2.1.47.1.1.1.1.10.16978178|4| +1.3.6.1.2.1.47.1.1.1.1.10.16978179|4| +1.3.6.1.2.1.47.1.1.1.1.10.16978180|4| +1.3.6.1.2.1.47.1.1.1.1.10.16978181|4| +1.3.6.1.2.1.47.1.1.1.1.10.16978182|4| +1.3.6.1.2.1.47.1.1.1.1.10.16978183|4| +1.3.6.1.2.1.47.1.1.1.1.10.16978184|4| +1.3.6.1.2.1.47.1.1.1.1.10.16978185|4| +1.3.6.1.2.1.47.1.1.1.1.10.16978186|4| +1.3.6.1.2.1.47.1.1.1.1.10.16978187|4| +1.3.6.1.2.1.47.1.1.1.1.10.16978188|4| +1.3.6.1.2.1.47.1.1.1.1.10.16978189|4| +1.3.6.1.2.1.47.1.1.1.1.10.16978190|4| +1.3.6.1.2.1.47.1.1.1.1.10.16978191|4| +1.3.6.1.2.1.47.1.1.1.1.10.16978192|4| +1.3.6.1.2.1.47.1.1.1.1.10.16978193|4| +1.3.6.1.2.1.47.1.1.1.1.10.16978194|4| +1.3.6.1.2.1.47.1.1.1.1.10.16978195|4| +1.3.6.1.2.1.47.1.1.1.1.10.16978196|4| +1.3.6.1.2.1.47.1.1.1.1.10.16978197|4| +1.3.6.1.2.1.47.1.1.1.1.10.16978198|4| +1.3.6.1.2.1.47.1.1.1.1.10.16978199|4| +1.3.6.1.2.1.47.1.1.1.1.10.16978200|4| +1.3.6.1.2.1.47.1.1.1.1.10.16978689|4| +1.3.6.1.2.1.47.1.1.1.1.10.16978690|4| +1.3.6.1.2.1.47.1.1.1.1.10.16982273|4| +1.3.6.1.2.1.47.1.1.1.1.10.17039360|4| +1.3.6.1.2.1.47.1.1.1.1.10.17039361|4| +1.3.6.1.2.1.47.1.1.1.1.10.17104896|4| +1.3.6.1.2.1.47.1.1.1.1.10.17104897|4| +1.3.6.1.2.1.47.1.1.1.1.10.17170432|4| +1.3.6.1.2.1.47.1.1.1.1.10.17170433|4| +1.3.6.1.2.1.47.1.1.1.1.10.17235968|4| +1.3.6.1.2.1.47.1.1.1.1.10.17235969|4| +1.3.6.1.2.1.47.1.1.1.1.11.16777216|4| +1.3.6.1.2.1.47.1.1.1.1.11.16973824|4| +1.3.6.1.2.1.47.1.1.1.1.11.16973825|4|2102352DQV10L3000003 +1.3.6.1.2.1.47.1.1.1.1.11.16973826|4| +1.3.6.1.2.1.47.1.1.1.1.11.16974080|4| +1.3.6.1.2.1.47.1.1.1.1.11.16978176|4| +1.3.6.1.2.1.47.1.1.1.1.11.16978177|4|G1909057256 +1.3.6.1.2.1.47.1.1.1.1.11.16978178|4|G1909057257 +1.3.6.1.2.1.47.1.1.1.1.11.16978179|4| +1.3.6.1.2.1.47.1.1.1.1.11.16978180|4| +1.3.6.1.2.1.47.1.1.1.1.11.16978181|4|AD1325LE0A1 +1.3.6.1.2.1.47.1.1.1.1.11.16978182|4|AD1325LE0A1 +1.3.6.1.2.1.47.1.1.1.1.11.16978183|4|AD1325LE0A1 +1.3.6.1.2.1.47.1.1.1.1.11.16978184|4|S1901513301 +1.3.6.1.2.1.47.1.1.1.1.11.16978185|4|S1901513801 +1.3.6.1.2.1.47.1.1.1.1.11.16978186|4|S1901512801 +1.3.6.1.2.1.47.1.1.1.1.11.16978187|4|AD1325LE0A1 +1.3.6.1.2.1.47.1.1.1.1.11.16978188|4|AD1325LE0A1 +1.3.6.1.2.1.47.1.1.1.1.11.16978189|4|AD1325LE0A1 +1.3.6.1.2.1.47.1.1.1.1.11.16978190|4|AD1325LE0A1 +1.3.6.1.2.1.47.1.1.1.1.11.16978191|4| +1.3.6.1.2.1.47.1.1.1.1.11.16978192|4| +1.3.6.1.2.1.47.1.1.1.1.11.16978193|4| +1.3.6.1.2.1.47.1.1.1.1.11.16978194|4| +1.3.6.1.2.1.47.1.1.1.1.11.16978195|4| +1.3.6.1.2.1.47.1.1.1.1.11.16978196|4| +1.3.6.1.2.1.47.1.1.1.1.11.16978197|4| +1.3.6.1.2.1.47.1.1.1.1.11.16978198|4| +1.3.6.1.2.1.47.1.1.1.1.11.16978199|4| +1.3.6.1.2.1.47.1.1.1.1.11.16978200|4| +1.3.6.1.2.1.47.1.1.1.1.11.16978689|4| +1.3.6.1.2.1.47.1.1.1.1.11.16978690|4| +1.3.6.1.2.1.47.1.1.1.1.11.16982273|4| +1.3.6.1.2.1.47.1.1.1.1.11.17039360|4| +1.3.6.1.2.1.47.1.1.1.1.11.17039361|4|2102312HGXBTL2000042 +1.3.6.1.2.1.47.1.1.1.1.11.17104896|4| +1.3.6.1.2.1.47.1.1.1.1.11.17104897|4|2102312HGXBTL2000041 +1.3.6.1.2.1.47.1.1.1.1.11.17170432|4| +1.3.6.1.2.1.47.1.1.1.1.11.17170433|4|2102311PBL10L3000057 +1.3.6.1.2.1.47.1.1.1.1.11.17235968|4| +1.3.6.1.2.1.47.1.1.1.1.11.17235969|4| +1.3.6.1.2.1.47.1.1.1.1.12.16777216|4| +1.3.6.1.2.1.47.1.1.1.1.12.16973824|4| +1.3.6.1.2.1.47.1.1.1.1.12.16973825|4|Huawei +1.3.6.1.2.1.47.1.1.1.1.12.16973826|4| +1.3.6.1.2.1.47.1.1.1.1.12.16974080|4| +1.3.6.1.2.1.47.1.1.1.1.12.16978176|4| +1.3.6.1.2.1.47.1.1.1.1.12.16978177|4|FS +1.3.6.1.2.1.47.1.1.1.1.12.16978178|4|FS +1.3.6.1.2.1.47.1.1.1.1.12.16978179|4| +1.3.6.1.2.1.47.1.1.1.1.12.16978180|4| +1.3.6.1.2.1.47.1.1.1.1.12.16978181|4|HUAWEI +1.3.6.1.2.1.47.1.1.1.1.12.16978182|4|HUAWEI +1.3.6.1.2.1.47.1.1.1.1.12.16978183|4|HUAWEI +1.3.6.1.2.1.47.1.1.1.1.12.16978184|4|FS +1.3.6.1.2.1.47.1.1.1.1.12.16978185|4|FS +1.3.6.1.2.1.47.1.1.1.1.12.16978186|4|FS +1.3.6.1.2.1.47.1.1.1.1.12.16978187|4|HUAWEI +1.3.6.1.2.1.47.1.1.1.1.12.16978188|4|HUAWEI +1.3.6.1.2.1.47.1.1.1.1.12.16978189|4|HUAWEI +1.3.6.1.2.1.47.1.1.1.1.12.16978190|4|HUAWEI +1.3.6.1.2.1.47.1.1.1.1.12.16978191|4| +1.3.6.1.2.1.47.1.1.1.1.12.16978192|4| +1.3.6.1.2.1.47.1.1.1.1.12.16978193|4| +1.3.6.1.2.1.47.1.1.1.1.12.16978194|4| +1.3.6.1.2.1.47.1.1.1.1.12.16978195|4| +1.3.6.1.2.1.47.1.1.1.1.12.16978196|4| +1.3.6.1.2.1.47.1.1.1.1.12.16978197|4| +1.3.6.1.2.1.47.1.1.1.1.12.16978198|4| +1.3.6.1.2.1.47.1.1.1.1.12.16978199|4| +1.3.6.1.2.1.47.1.1.1.1.12.16978200|4| +1.3.6.1.2.1.47.1.1.1.1.12.16978689|4| +1.3.6.1.2.1.47.1.1.1.1.12.16978690|4| +1.3.6.1.2.1.47.1.1.1.1.12.16982273|4| +1.3.6.1.2.1.47.1.1.1.1.12.17039360|4| +1.3.6.1.2.1.47.1.1.1.1.12.17039361|4|Huawei +1.3.6.1.2.1.47.1.1.1.1.12.17104896|4| +1.3.6.1.2.1.47.1.1.1.1.12.17104897|4|Huawei +1.3.6.1.2.1.47.1.1.1.1.12.17170432|4| +1.3.6.1.2.1.47.1.1.1.1.12.17170433|4|Huawei +1.3.6.1.2.1.47.1.1.1.1.12.17235968|4| +1.3.6.1.2.1.47.1.1.1.1.12.17235969|4| +1.3.6.1.2.1.47.1.1.1.1.13.16777216|4| +1.3.6.1.2.1.47.1.1.1.1.13.16973824|4| +1.3.6.1.2.1.47.1.1.1.1.13.16973825|4|CR5B0BKP0393 +1.3.6.1.2.1.47.1.1.1.1.13.16973826|4|CX68E4NLAXF0 +1.3.6.1.2.1.47.1.1.1.1.13.16974080|4| +1.3.6.1.2.1.47.1.1.1.1.13.16978176|4| +1.3.6.1.2.1.47.1.1.1.1.13.16978177|4| +1.3.6.1.2.1.47.1.1.1.1.13.16978178|4| +1.3.6.1.2.1.47.1.1.1.1.13.16978179|4| +1.3.6.1.2.1.47.1.1.1.1.13.16978180|4| +1.3.6.1.2.1.47.1.1.1.1.13.16978181|4| +1.3.6.1.2.1.47.1.1.1.1.13.16978182|4| +1.3.6.1.2.1.47.1.1.1.1.13.16978183|4| +1.3.6.1.2.1.47.1.1.1.1.13.16978184|4| +1.3.6.1.2.1.47.1.1.1.1.13.16978185|4| +1.3.6.1.2.1.47.1.1.1.1.13.16978186|4| +1.3.6.1.2.1.47.1.1.1.1.13.16978187|4| +1.3.6.1.2.1.47.1.1.1.1.13.16978188|4| +1.3.6.1.2.1.47.1.1.1.1.13.16978189|4| +1.3.6.1.2.1.47.1.1.1.1.13.16978190|4| +1.3.6.1.2.1.47.1.1.1.1.13.16978191|4| +1.3.6.1.2.1.47.1.1.1.1.13.16978192|4| +1.3.6.1.2.1.47.1.1.1.1.13.16978193|4| +1.3.6.1.2.1.47.1.1.1.1.13.16978194|4| +1.3.6.1.2.1.47.1.1.1.1.13.16978195|4| +1.3.6.1.2.1.47.1.1.1.1.13.16978196|4| +1.3.6.1.2.1.47.1.1.1.1.13.16978197|4| +1.3.6.1.2.1.47.1.1.1.1.13.16978198|4| +1.3.6.1.2.1.47.1.1.1.1.13.16978199|4| +1.3.6.1.2.1.47.1.1.1.1.13.16978200|4| +1.3.6.1.2.1.47.1.1.1.1.13.16978689|4| +1.3.6.1.2.1.47.1.1.1.1.13.16978690|4| +1.3.6.1.2.1.47.1.1.1.1.13.16982273|4| +1.3.6.1.2.1.47.1.1.1.1.13.17039360|4| +1.3.6.1.2.1.47.1.1.1.1.13.17039361|4| +1.3.6.1.2.1.47.1.1.1.1.13.17104896|4| +1.3.6.1.2.1.47.1.1.1.1.13.17104897|4| +1.3.6.1.2.1.47.1.1.1.1.13.17170432|4| +1.3.6.1.2.1.47.1.1.1.1.13.17170433|4| +1.3.6.1.2.1.47.1.1.1.1.13.17235968|4| +1.3.6.1.2.1.47.1.1.1.1.13.17235969|4| +1.3.6.1.2.1.47.1.1.1.1.14.16777216|4| +1.3.6.1.2.1.47.1.1.1.1.14.16973824|4| +1.3.6.1.2.1.47.1.1.1.1.14.16973825|4| +1.3.6.1.2.1.47.1.1.1.1.14.16973826|4| +1.3.6.1.2.1.47.1.1.1.1.14.16974080|4| +1.3.6.1.2.1.47.1.1.1.1.14.16978176|4| +1.3.6.1.2.1.47.1.1.1.1.14.16978177|4| +1.3.6.1.2.1.47.1.1.1.1.14.16978178|4| +1.3.6.1.2.1.47.1.1.1.1.14.16978179|4| +1.3.6.1.2.1.47.1.1.1.1.14.16978180|4| +1.3.6.1.2.1.47.1.1.1.1.14.16978181|4| +1.3.6.1.2.1.47.1.1.1.1.14.16978182|4| +1.3.6.1.2.1.47.1.1.1.1.14.16978183|4| +1.3.6.1.2.1.47.1.1.1.1.14.16978184|4| +1.3.6.1.2.1.47.1.1.1.1.14.16978185|4| +1.3.6.1.2.1.47.1.1.1.1.14.16978186|4| +1.3.6.1.2.1.47.1.1.1.1.14.16978187|4| +1.3.6.1.2.1.47.1.1.1.1.14.16978188|4| +1.3.6.1.2.1.47.1.1.1.1.14.16978189|4| +1.3.6.1.2.1.47.1.1.1.1.14.16978190|4| +1.3.6.1.2.1.47.1.1.1.1.14.16978191|4| +1.3.6.1.2.1.47.1.1.1.1.14.16978192|4| +1.3.6.1.2.1.47.1.1.1.1.14.16978193|4| +1.3.6.1.2.1.47.1.1.1.1.14.16978194|4| +1.3.6.1.2.1.47.1.1.1.1.14.16978195|4| +1.3.6.1.2.1.47.1.1.1.1.14.16978196|4| +1.3.6.1.2.1.47.1.1.1.1.14.16978197|4| +1.3.6.1.2.1.47.1.1.1.1.14.16978198|4| +1.3.6.1.2.1.47.1.1.1.1.14.16978199|4| +1.3.6.1.2.1.47.1.1.1.1.14.16978200|4| +1.3.6.1.2.1.47.1.1.1.1.14.16978689|4| +1.3.6.1.2.1.47.1.1.1.1.14.16978690|4| +1.3.6.1.2.1.47.1.1.1.1.14.16982273|4| +1.3.6.1.2.1.47.1.1.1.1.14.17039360|4| +1.3.6.1.2.1.47.1.1.1.1.14.17039361|4| +1.3.6.1.2.1.47.1.1.1.1.14.17104896|4| +1.3.6.1.2.1.47.1.1.1.1.14.17104897|4| +1.3.6.1.2.1.47.1.1.1.1.14.17170432|4| +1.3.6.1.2.1.47.1.1.1.1.14.17170433|4| +1.3.6.1.2.1.47.1.1.1.1.14.17235968|4| +1.3.6.1.2.1.47.1.1.1.1.14.17235969|4| +1.3.6.1.2.1.47.1.1.1.1.15.16777216|4| +1.3.6.1.2.1.47.1.1.1.1.15.16973824|4| +1.3.6.1.2.1.47.1.1.1.1.15.16973825|4| +1.3.6.1.2.1.47.1.1.1.1.15.16973826|4| +1.3.6.1.2.1.47.1.1.1.1.15.16974080|4| +1.3.6.1.2.1.47.1.1.1.1.15.16978176|4| +1.3.6.1.2.1.47.1.1.1.1.15.16978177|4| +1.3.6.1.2.1.47.1.1.1.1.15.16978178|4| +1.3.6.1.2.1.47.1.1.1.1.15.16978179|4| +1.3.6.1.2.1.47.1.1.1.1.15.16978180|4| +1.3.6.1.2.1.47.1.1.1.1.15.16978181|4| +1.3.6.1.2.1.47.1.1.1.1.15.16978182|4| +1.3.6.1.2.1.47.1.1.1.1.15.16978183|4| +1.3.6.1.2.1.47.1.1.1.1.15.16978184|4| +1.3.6.1.2.1.47.1.1.1.1.15.16978185|4| +1.3.6.1.2.1.47.1.1.1.1.15.16978186|4| +1.3.6.1.2.1.47.1.1.1.1.15.16978187|4| +1.3.6.1.2.1.47.1.1.1.1.15.16978188|4| +1.3.6.1.2.1.47.1.1.1.1.15.16978189|4| +1.3.6.1.2.1.47.1.1.1.1.15.16978190|4| +1.3.6.1.2.1.47.1.1.1.1.15.16978191|4| +1.3.6.1.2.1.47.1.1.1.1.15.16978192|4| +1.3.6.1.2.1.47.1.1.1.1.15.16978193|4| +1.3.6.1.2.1.47.1.1.1.1.15.16978194|4| +1.3.6.1.2.1.47.1.1.1.1.15.16978195|4| +1.3.6.1.2.1.47.1.1.1.1.15.16978196|4| +1.3.6.1.2.1.47.1.1.1.1.15.16978197|4| +1.3.6.1.2.1.47.1.1.1.1.15.16978198|4| +1.3.6.1.2.1.47.1.1.1.1.15.16978199|4| +1.3.6.1.2.1.47.1.1.1.1.15.16978200|4| +1.3.6.1.2.1.47.1.1.1.1.15.16978689|4| +1.3.6.1.2.1.47.1.1.1.1.15.16978690|4| +1.3.6.1.2.1.47.1.1.1.1.15.16982273|4| +1.3.6.1.2.1.47.1.1.1.1.15.17039360|4| +1.3.6.1.2.1.47.1.1.1.1.15.17039361|4| +1.3.6.1.2.1.47.1.1.1.1.15.17104896|4| +1.3.6.1.2.1.47.1.1.1.1.15.17104897|4| +1.3.6.1.2.1.47.1.1.1.1.15.17170432|4| +1.3.6.1.2.1.47.1.1.1.1.15.17170433|4| +1.3.6.1.2.1.47.1.1.1.1.15.17235968|4| +1.3.6.1.2.1.47.1.1.1.1.15.17235969|4| +1.3.6.1.2.1.47.1.1.1.1.16.16777216|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.16973824|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.16973825|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.16973826|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.16974080|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.16978176|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.16978177|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.16978178|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.16978179|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.16978180|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.16978181|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.16978182|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.16978183|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.16978184|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.16978185|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.16978186|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.16978187|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.16978188|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.16978189|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.16978190|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.16978191|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.16978192|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.16978193|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.16978194|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.16978195|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.16978196|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.16978197|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.16978198|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.16978199|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.16978200|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.16978689|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.16978690|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.16982273|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.17039360|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.17039361|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.17104896|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.17104897|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.17170432|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.17170433|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.17235968|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.17235969|2|2 +1.3.6.1.2.1.47.1.3.2.1.2.16978177.1|6|1.3.6.1.2.1.2.2.1.1.43 +1.3.6.1.2.1.47.1.3.2.1.2.16978178.1|6|1.3.6.1.2.1.2.2.1.1.44 +1.3.6.1.2.1.47.1.3.2.1.2.16978179.1|6|1.3.6.1.2.1.2.2.1.1.45 +1.3.6.1.2.1.47.1.3.2.1.2.16978180.1|6|1.3.6.1.2.1.2.2.1.1.46 +1.3.6.1.2.1.47.1.3.2.1.2.16978181.1|6|1.3.6.1.2.1.2.2.1.1.10 +1.3.6.1.2.1.47.1.3.2.1.2.16978182.1|6|1.3.6.1.2.1.2.2.1.1.11 +1.3.6.1.2.1.47.1.3.2.1.2.16978183.1|6|1.3.6.1.2.1.2.2.1.1.12 +1.3.6.1.2.1.47.1.3.2.1.2.16978184.1|6|1.3.6.1.2.1.2.2.1.1.13 +1.3.6.1.2.1.47.1.3.2.1.2.16978185.1|6|1.3.6.1.2.1.2.2.1.1.14 +1.3.6.1.2.1.47.1.3.2.1.2.16978186.1|6|1.3.6.1.2.1.2.2.1.1.15 +1.3.6.1.2.1.47.1.3.2.1.2.16978187.1|6|1.3.6.1.2.1.2.2.1.1.16 +1.3.6.1.2.1.47.1.3.2.1.2.16978188.1|6|1.3.6.1.2.1.2.2.1.1.17 +1.3.6.1.2.1.47.1.3.2.1.2.16978189.1|6|1.3.6.1.2.1.2.2.1.1.18 +1.3.6.1.2.1.47.1.3.2.1.2.16978190.1|6|1.3.6.1.2.1.2.2.1.1.19 +1.3.6.1.2.1.47.1.3.2.1.2.16978191.1|6|1.3.6.1.2.1.2.2.1.1.20 +1.3.6.1.2.1.47.1.3.2.1.2.16978192.1|6|1.3.6.1.2.1.2.2.1.1.21 +1.3.6.1.2.1.47.1.3.2.1.2.16978193.1|6|1.3.6.1.2.1.2.2.1.1.22 +1.3.6.1.2.1.47.1.3.2.1.2.16978194.1|6|1.3.6.1.2.1.2.2.1.1.23 +1.3.6.1.2.1.47.1.3.2.1.2.16978195.1|6|1.3.6.1.2.1.2.2.1.1.24 +1.3.6.1.2.1.47.1.3.2.1.2.16978196.1|6|1.3.6.1.2.1.2.2.1.1.25 +1.3.6.1.2.1.47.1.3.2.1.2.16978197.1|6|1.3.6.1.2.1.2.2.1.1.26 +1.3.6.1.2.1.47.1.3.2.1.2.16978198.1|6|1.3.6.1.2.1.2.2.1.1.27 +1.3.6.1.2.1.47.1.3.2.1.2.16978199.1|6|1.3.6.1.2.1.2.2.1.1.28 +1.3.6.1.2.1.47.1.3.2.1.2.16978200.1|6|1.3.6.1.2.1.2.2.1.1.29 +1.3.6.1.2.1.47.1.3.2.1.2.16982273.1|6|1.3.6.1.2.1.2.2.1.1.4