From 94693b0d9ed4a05a0d9d3836d3e0263d0ed43574 Mon Sep 17 00:00:00 2001 From: vivia11 Date: Fri, 25 May 2018 22:27:54 -0600 Subject: [PATCH] Use CISCO-VRF-MIB for vrfs on non MPLS cisco devices (#8756) * Add vrf for non mpls cisco devices, add mib and test data * Fix custom_where in vrf module * Better VRF module test data collection * Update ios_6500.json * don't include ifVrf in ports * update all ports add dependencies to pre-commit.php * new json files --- LibreNMS/Util/ModuleTestHelper.php | 12 +- includes/discovery/vrf.inc.php | 53 +- mibs/cisco/CISCO-VRF-MIB | 726 + tests/data/airos-af-ltu.json | 10 - tests/data/allied_alliedware.json | 54 - tests/data/allied_awplusv2.json | 100 - tests/data/allied_websmart.json | 48 - tests/data/arbos.json | 26 - tests/data/awplus.json | 90 - tests/data/barracudaspamfirewall.json | 4 - .../data/barracudaspamfirewall_email_sg.json | 4 - tests/data/calix_b6-256.json | 116 - tests/data/canonprinter_lbp.json | 4 - tests/data/ceraos.json | 12 - tests/data/ciscosb_sg350-10.json | 46 - tests/data/comware.json | 464 - tests/data/ctm.json | 4 - tests/data/cumulus_edgecore-as4610-54p.json | 114 - tests/data/dahua-nvr.json | 4 - tests/data/dell-rpdu.json | 4 - tests/data/dell-ups.json | 4 - tests/data/fortiweb.json | 4 - tests/data/fortiwlc.json | 2 - tests/data/heliosip.json | 2 - tests/data/ios_6500.json | 63847 ++++++++++++++++ tests/data/konica.json | 4 - tests/data/mimosa.json | 2 - tests/data/mimosa_b5.json | 20 - tests/data/pmp_450.json | 4 - tests/data/pmp_450m.json | 4 - tests/data/radlan.json | 138 - tests/data/routeros.json | 22 - tests/data/screenos.json | 38 - tests/data/sixnet.json | 36 - tests/data/sslvis.json | 16 - tests/data/stoneos.json | 36 - tests/data/vivotek.json | 4 - tests/data/voss_8404c.json | 138 - tests/data/vrp_5720.json | 326 - tests/data/xirrus_aos.json | 42 - tests/module_tables.yaml | 7 +- tests/snmpsim/ios_6500.snmprec | 14033 ++++ 42 files changed, 78651 insertions(+), 1973 deletions(-) create mode 100644 mibs/cisco/CISCO-VRF-MIB create mode 100644 tests/data/ios_6500.json create mode 100644 tests/snmpsim/ios_6500.snmprec diff --git a/LibreNMS/Util/ModuleTestHelper.php b/LibreNMS/Util/ModuleTestHelper.php index 5804dd28c5..0be795fed8 100644 --- a/LibreNMS/Util/ModuleTestHelper.php +++ b/LibreNMS/Util/ModuleTestHelper.php @@ -51,7 +51,7 @@ class ModuleTestHelper // Definitions // ignore these when dumping all modules private $exclude_from_all = ['arp-table', 'fdb-table']; - private $module_deps = [ + private static $module_deps = [ 'arp-table' => ['ports', 'arp-table'], 'fdb-table' => ['ports', 'vlans', 'fdb-table'], 'vlans' => ['ports', 'vlans'], @@ -70,7 +70,7 @@ class ModuleTestHelper { global $influxdb; - $this->modules = $this->resolveModuleDependencies((array)$modules); + $this->modules = self::resolveModuleDependencies((array)$modules); $this->os = strtolower($os); $this->variant = strtolower($variant); @@ -251,7 +251,7 @@ class ModuleTestHelper $os_list[$base_name] = [ $os, $variant, - $valid_modules, + self::resolveModuleDependencies($valid_modules), ]; } @@ -286,7 +286,7 @@ class ModuleTestHelper * @return array * @throws InvalidModuleException */ - private function resolveModuleDependencies($modules) + private static function resolveModuleDependencies($modules) { // generate a full list of modules $full_list = []; @@ -296,8 +296,8 @@ class ModuleTestHelper throw new InvalidModuleException("Invalid module name: $module"); } - if (isset($this->module_deps[$module])) { - $full_list = array_merge($full_list, $this->module_deps[$module]); + if (isset(self::$module_deps[$module])) { + $full_list = array_merge($full_list, self::$module_deps[$module]); } else { $full_list[] = $module; } diff --git a/includes/discovery/vrf.inc.php b/includes/discovery/vrf.inc.php index 0c0f019b81..13dbd56649 100644 --- a/includes/discovery/vrf.inc.php +++ b/includes/discovery/vrf.inc.php @@ -19,16 +19,28 @@ if (Config::get('enable_vrfs')) { if (empty($rds)) { $rds = snmp_walk($device, 'mplsVpnVrfRouteDistinguisher', '-Osqn', 'MPLS-VPN-MIB', null); - $vpnmib = 'MPLS-VPN-MIB'; - $rds = str_replace('.1.3.6.1.3.118.1.2.2.1.3.', '', $rds); + + if (empty($rds) && $device['os_group'] == 'cisco') { + // Use CISCO-VRF-MIB if others don't work + $rds = snmp_walk($device, 'cvVrfName', '-Osqn', 'CISCO-VRF-MIB', null); + $rds = str_replace('.1.3.6.1.4.1.9.9.711.1.1.1.1.2.', '', $rds); - $descrs_oid = '.1.3.6.1.3.118.1.2.2.1.2'; - $ports_oid = '.1.3.6.1.3.118.1.2.1.1.2'; + $vpnmib = 'CISCO-VRF-MIB'; + // No descr_oid given, does not exist for CISCO-VRF-MIB + $descr_oid = null; + $ports_oid = '.1.3.6.1.4.1.9.9.711.1.2.1.1.2'; + } else { + $vpnmib = 'MPLS-VPN-MIB'; + $rds = str_replace('.1.3.6.1.3.118.1.2.2.1.3.', '', $rds); + + $descr_oid = '.1.3.6.1.3.118.1.2.2.1.2'; + $ports_oid = '.1.3.6.1.3.118.1.2.1.1.2'; + } } else { $vpnmib = 'MPLS-L3VPN-STD-MIB'; $rds = str_replace('.1.3.6.1.2.1.10.166.11.1.2.2.1.4.', '', $rds); - $descrs_oid = '.1.3.6.1.2.1.10.166.11.1.2.2.1.3'; + $descr_oid = '.1.3.6.1.2.1.10.166.11.1.2.2.1.3'; $ports_oid = '.1.3.6.1.2.1.10.166.11.1.2.1.1.2'; } @@ -37,20 +49,19 @@ if (Config::get('enable_vrfs')) { $rds = trim($rds); - $descrs = snmp_walk($device, $descrs_oid, '-Osqn', $vpnmib, null); - $ports = snmp_walk($device, $ports_oid, '-Osqn', $vpnmib, null); - - $descrs = trim(str_replace("$descrs_oid.", '', $descrs)); - $ports = trim(str_replace("$ports_oid.", '', $ports)); - - $descr_table = array(); - $port_table = array(); - - foreach (explode("\n", $descrs) as $descr) { - $t = explode(' ', $descr, 2); - $descr_table[$t[0]] = $t[1]; + if ($descr_oid) { + $descrs = snmp_walk($device, $descr_oid, '-Osqn', $vpnmib, null); + $descrs = trim(str_replace("$descr_oid.", '', $descrs)); + $descr_table = array(); + foreach (explode("\n", $descrs) as $descr) { + $t = explode(' ', $descr, 2); + $descr_table[$t[0]] = $t[1]; + } } + $ports = snmp_walk($device, $ports_oid, '-Osqn', $vpnmib, null); + $ports = trim(str_replace("$ports_oid.", '', $ports)); + $port_table = array(); foreach (explode("\n", $ports) as $port) { $t = explode(' ', $port); $dotpos = strrpos($t[0], '.'); @@ -65,6 +76,10 @@ if (Config::get('enable_vrfs')) { } foreach (explode("\n", $rds) as $oid) { + if (empty($descr_oid) && strpos($oid, 'Platform_iVRF')) { + // Skip since it is an internal service and not a VRF + continue; + } echo "\n"; if ($oid) { // 8.49.53.48.56.58.49.48.48 "1508:100" @@ -85,6 +100,10 @@ if (Config::get('enable_vrfs')) { $vrf_rd[0] = hexdec($vrf_rd[0]); // Convert first object to decimal $vrf_rd[1] = hexdec($vrf_rd[1]); // Convert second object to deciamal $vrf_rd = implode(':', $vrf_rd); // Combine back into string, delimiter by colon + } elseif (empty($descr_oid)) { + // Move rd to vrf_name and remove rd (no way to grab these values with CISCO-VRF-MIB) + $vrf_name = $vrf_rd; + unset($vrf_rd); } echo "\n [VRF $vrf_name] OID - $vrf_oid"; diff --git a/mibs/cisco/CISCO-VRF-MIB b/mibs/cisco/CISCO-VRF-MIB new file mode 100644 index 0000000000..55b1f06d91 --- /dev/null +++ b/mibs/cisco/CISCO-VRF-MIB @@ -0,0 +1,726 @@ +-- ***************************************************************** +-- CISCO-VRF-MIB.my +-- +-- July 2009, Ganesan Rajam +-- +-- Copyright (c) 2009 by cisco Systems Inc. +-- All rights reserved. +-- ***************************************************************** +-- + +CISCO-VRF-MIB DEFINITIONS ::= BEGIN + +IMPORTS + MODULE-IDENTITY, + OBJECT-TYPE, + Unsigned32, + NOTIFICATION-TYPE + FROM SNMPv2-SMI + MODULE-COMPLIANCE, + OBJECT-GROUP, + NOTIFICATION-GROUP + FROM SNMPv2-CONF + StorageType, + RowStatus, + TruthValue, + TEXTUAL-CONVENTION + FROM SNMPv2-TC + ifIndex, + InterfaceIndex, + ifName + FROM IF-MIB + SnmpAdminString + FROM SNMP-FRAMEWORK-MIB + ciscoMgmt + FROM CISCO-SMI; + + +ciscoVrfMIB MODULE-IDENTITY + LAST-UPDATED "200912100000Z" + ORGANIZATION "Cisco Systems, Inc." + CONTACT-INFO + "Cisco Systems + Customer Service + Postal: 170 W Tasman Drive + San Jose, CA 95134 + USA + Tel: +1 800 553-NETS + E-mail: cs-snmp@cisco.com" + DESCRIPTION + "The MIB module for provisioning and managing network + virtualization features. + + This module provides manageability for VRF, VRF-Lite and + vNET. VRF stands for Virtual Routing and Forwarding. VRF + is an extension of IP routing that provides multiple routing + instances. VRF provides independent routing instances and + hence the same or over-lapping addresses can be used without + conflicting each other. VRFs are used in conjunction with + MPLS VPN to provide traffic separation between multiple VPN + customers. + + A VRF-Lite enabled device implements VRFs and does not require + MPLS for end to end communication. Instead of using MPLS + labels, VRF-Lite uses the interfaces to distinguish routes for + different VPNs. VRF-Lite forms virtual packet-forwarding tables + by associating one or more interfaces with each VRF, and + interfaces cannot belong to more than one VRF at any time. + + VRF-Lite is an IP based hop-by-hop virtualization mechanism and + it involves complex configuration of every hop in the network. + vNET, virtual network, is also an IP based hop-by-hop mechanism + that can provide end-to-end virtualization of the network. vNET + greatly reduces the complexity in VRF-Lite deployment. + + This MIB module will allow the user to perform the following + + * Create and monitor VRFs + * Group VRFs to create VRF List + * Associate/Dis-associate interface to/from a VRF + * Enable vNET trunking on an interface + * Specify VRF list per trunk" + REVISION "200912100000Z" + DESCRIPTION + "Latest version of this MIB module." + ::= { ciscoMgmt 711 } + + + +-- User Defined Types used in this MIB + +CvVrfIfType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "The type value denotes the manner in which the interface is + used. + + vNETTrunkSI(1) : The sub-interface is created under a vNET + trunk interface to carry vNET tagged traffic + belonging to a VRF. + vNETEdge(2) : The interface is assigned to a VRF which is + tagged with a vNET tag. + vrfEdge(3) : The interface is assigned to an untagged VRF." + SYNTAX INTEGER { + vNETTrunkSI(1), + vNETEdge(2), + vrfEdge(3) + } + +CvVnetTagOrZero ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "The tag value assigned to a vNET. The tag value is global, + meaning on each router, the same vNET must be assigned the + same numerical tag value. This is assigned by the system + operator or NMS or through a network tag distribution + mechanism. + + The valid tag value is ranged from 2 to 4094. Traffic that + carries a vNET tag is called tagged traffic. On the other + hand, traffic that does not carry a vNET tag is called + untagged traffic. A vNET is defined as a VRF with a tag + assigned. A valid tag value assigned to a VRF indicates + it is a vNET. + + Zero(0) is a special value and its meaning should be + interpreted in conjunction with the object definition + using this type." + SYNTAX Unsigned32 (0 | 2..4094) +-- Top Level Object hierarchy + +ciscoVrfMIBObjects OBJECT IDENTIFIER + ::= { ciscoVrfMIB 1 } + +ciscoVrfMIBNotifs OBJECT IDENTIFIER + ::= { ciscoVrfMIB 0 } + +ciscoVrfMIBConform OBJECT IDENTIFIER + ::= { ciscoVrfMIB 2 } + +cvVrf OBJECT IDENTIFIER + ::= { ciscoVrfMIBObjects 1 } + +cvInterface OBJECT IDENTIFIER + ::= { ciscoVrfMIBObjects 2 } + +cvNotifCntl OBJECT IDENTIFIER + ::= { ciscoVrfMIBObjects 3 } + +-- Object definitions + +cvVrfTable OBJECT-TYPE + SYNTAX SEQUENCE OF CvVrfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table contains entries representing a VRF - Virtual + Routing and Forwarding instance. There will be an entry for + each VRF instance created in the system." + ::= { cvVrf 1 } + +cvVrfEntry OBJECT-TYPE + SYNTAX CvVrfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry representing the information pertaining to a virtual + routing and forwarding instance." + INDEX { cvVrfIndex } + ::= { cvVrfTable 1 } + +CvVrfEntry ::= SEQUENCE { + cvVrfIndex Unsigned32, + cvVrfName SnmpAdminString, + cvVrfVnetTag CvVnetTagOrZero, + cvVrfOperStatus INTEGER, + cvVrfRouteDistProt BITS, + cvVrfStorageType StorageType, + cvVrfRowStatus RowStatus +} + +cvVrfIndex OBJECT-TYPE + SYNTAX Unsigned32 (1..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An identifier that is assigned to each VRF and is used to + uniquely identify it. The uniqueness of this identifier is + restricted only to this device." + ::= { cvVrfEntry 1 } + +cvVrfName OBJECT-TYPE + SYNTAX SnmpAdminString (SIZE (1..64)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The human-readable name of the VRF instance. This name + uniquely identifies the VRF instance in the system. + + This object is mandatory for creating an entry in this table." + ::= { cvVrfEntry 2 } + +cvVrfVnetTag OBJECT-TYPE + SYNTAX CvVnetTagOrZero (0 | 2..4094) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The vNET tag assigned to this VRF instance. + + A value of zero(0) indicates the VRF instance is not a vNET and + such vrf could be part of a VRF-Lite or MPLS deployment. + + A set with a value of zero(0) will remove the vNET tag assigned + to this VRF. + + The value of this object can be changed even when + cvVrfRowStatus is having a value of active(1)." + DEFVAL { 0 } + ::= { cvVrfEntry 3 } + +cvVrfOperStatus OBJECT-TYPE + SYNTAX INTEGER { + up(1), + down(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Denotes whether a VRF is operational or not. A VRF is + up(1) when at least one interface associated with the + VRF, which ifOperStatus is up(1). A VRF is down(2) when: + + a. There does not exist at least one interface whose + ifOperStatus is up(1). + + b. There are no interfaces associated with the VRF." + ::= { cvVrfEntry 4 } + +cvVrfRouteDistProt OBJECT-TYPE + SYNTAX BITS { + none(0), + other(1), + ospf(2), + rip(3), + isis(4), + eigrp(5), + bgp(6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Denotes the route distribution protocol enabled in this + VRF. Note that more than one routing protocol may be + enabled at the same time." + ::= { cvVrfEntry 5 } + +cvVrfStorageType OBJECT-TYPE + SYNTAX StorageType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The storage type for this entry." + ::= { cvVrfEntry 6 } + +cvVrfRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create, modify, and/or delete a row in + this table." + ::= { cvVrfEntry 7 } + + + +cvVrfListTable OBJECT-TYPE + SYNTAX SEQUENCE OF CvVrfListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table contains the entries representing the VRFs in a VRF + List." + ::= { cvVrf 2 } + +cvVrfListEntry OBJECT-TYPE + SYNTAX CvVrfListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in this table represents a VRF in a VRF list. A VRF + list is a collection of VRFs grouped together. The list defined + + here can be associated to a vNET trunk interface, which would + then act as a trunk carrying traffic for all VRFs in the VRF + list. + + An example of a VRF List - + list1.1 = Vrf_Finance + list1.2 = Vrf_HR" + INDEX { + cvVrfListName, + cvVrfListVindex + } + ::= { cvVrfListTable 1 } + +CvVrfListEntry ::= SEQUENCE { + cvVrfListName SnmpAdminString, + cvVrfListVindex Unsigned32, + cvVrfListVrfIndex Unsigned32, + cvVrfListStorageType StorageType, + cvVrfListRowStatus RowStatus +} + +cvVrfListName OBJECT-TYPE + SYNTAX SnmpAdminString (SIZE (1..64)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The human-readable name of the VRF List. This name uniquely + identifies the VRF List in the system." + ::= { cvVrfListEntry 1 } + +cvVrfListVindex OBJECT-TYPE + SYNTAX Unsigned32 (1..32) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This index uniquely identifies a VRF within the VRF list." + ::= { cvVrfListEntry 2 } + +cvVrfListVrfIndex OBJECT-TYPE + SYNTAX Unsigned32 (1..65535) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object indicates the associated VRF in the cvVrfTable. + The value of this object is index value (cvVrfIndex) + of cvVrfTable. + + The value of this object cannot be modified when the entry is + in active(1) state." + ::= { cvVrfListEntry 3 } + +cvVrfListStorageType OBJECT-TYPE + SYNTAX StorageType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The storage type for this entry." + ::= { cvVrfListEntry 4 } + +cvVrfListRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create, modify, and/or delete a row in + this table." + ::= { cvVrfListEntry 5 } + + + +cvVrfInterfaceTable OBJECT-TYPE + SYNTAX SEQUENCE OF CvVrfInterfaceEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table contains the entries representing the interfaces + associated with a VRF instance." + ::= { cvInterface 1 } + +cvVrfInterfaceEntry OBJECT-TYPE + SYNTAX CvVrfInterfaceEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in this table represents an interface to which a VRF + is associated. A VRF can be associated to multiple interfaces. + There will be one entry per interface for each VRF instance in + this table." + INDEX { + cvVrfIndex, + cvVrfInterfaceIndex + } + ::= { cvVrfInterfaceTable 1 } + +CvVrfInterfaceEntry ::= SEQUENCE { + cvVrfInterfaceIndex InterfaceIndex, + cvVrfInterfaceType CvVrfIfType, + cvVrfInterfaceVnetTagOverride CvVnetTagOrZero, + cvVrfInterfaceStorageType StorageType, + cvVrfInterfaceRowStatus RowStatus +} + +cvVrfInterfaceIndex OBJECT-TYPE + SYNTAX InterfaceIndex (1..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This is a unique index for an entry in this table. A non-zero + index for an entry indicates the ifIndex for the corresponding + interface entry in the ifTable. Note that this table does not + necessarily correspond one-to-one with all entries in the + Interface MIB." + ::= { cvVrfInterfaceEntry 1 } + +cvVrfInterfaceType OBJECT-TYPE + SYNTAX CvVrfIfType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The VRF type of this interface. The type of the interface is + determined based on the VRF associated with this interface. + If the VRF is not tagged with vnet tag then the type will be + vrfEdge. If the VRF is tagged with vnet tag then it will become + vnetEdge. For vNETTrunkSI, the sub-interface in question is + automatically created for a VRF when trunking is enabled on the + main interface." + ::= { cvVrfInterfaceEntry 2 } + +cvVrfInterfaceVnetTagOverride OBJECT-TYPE + SYNTAX CvVnetTagOrZero (0 | 2..4094) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object can be used to over-ride the vNET tag assigned + to the VRF traffic going through this interface. This object is + applicable only if the cvVrfInterfaceType of this interface + has a value of vNETTrunkSI(1). + + By default the tagged traffic will use the value denoted by + cvVrfVnetTag of this VRF. In which case this object will + have a value of zero(0). + + A set with a value of zero(0) will revert the tag assignment + behaviour to default behaviour mentioned above." + DEFVAL { 0 } + ::= { cvVrfInterfaceEntry 3 } + +cvVrfInterfaceStorageType OBJECT-TYPE + SYNTAX StorageType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The storage type for this entry." + ::= { cvVrfInterfaceEntry 4 } + +cvVrfInterfaceRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create, modify, and/or delete a row in + this table. + + When a row is created in this table the VRF is associated to an + interface. When a row is deleted from this table the VRF is + dis-associated from the interface." + ::= { cvVrfInterfaceEntry 5 } + + + +cvInterfaceTable OBJECT-TYPE + SYNTAX SEQUENCE OF CvInterfaceEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table contains entries representing the interfaces on + which the vNET trunking can be enabled." + ::= { cvInterface 2 } + +cvInterfaceEntry OBJECT-TYPE + SYNTAX CvInterfaceEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in this table represents an interface on which the + vNET trunking can be enabled. When an interface is enabled for + vNET trunking, it will carry the traffic for the VRFs which are + tagged with the vNET tag." + INDEX { ifIndex } + ::= { cvInterfaceTable 1 } + +CvInterfaceEntry ::= SEQUENCE { + cvInterfaceVnetTrunkEnabled TruthValue, + cvInterfaceVnetVrfList SnmpAdminString +} + +cvInterfaceVnetTrunkEnabled OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object represents the vNET trunking status for this + interface. When enabled for vNET trunking the interface will + carry traffic of all vNETs in the device." + DEFVAL { false } + ::= { cvInterfaceEntry 1 } + +cvInterfaceVnetVrfList OBJECT-TYPE + SYNTAX SnmpAdminString (SIZE (0 | 1..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The name of the VRF List associated with this interface. + A non-zero length string represent a list of vNET tagged VRFs, + whose traffic will be forwarded through this interface. + A zero length string denotes that the traffic for all the vNET + tagged VRFs will be forwarded through this interface." + DEFVAL { "" } + ::= { cvInterfaceEntry 2 } + + + +-- Notification control objects + +cvVrfIfNotifEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether the device should generate + notifications related to VRF Interface status change." + DEFVAL { false } + ::= { cvNotifCntl 1 } + +cvVnetTrunkNotifEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates whether the device should generate + notifications related to vNET Trunk Interface status change." + DEFVAL { false } + ::= { cvNotifCntl 2 } + +-- Notification definitions + +cvVrfIfUp NOTIFICATION-TYPE + OBJECTS { + ifName, + cvVrfName, + cvVrfOperStatus + } + STATUS current + DESCRIPTION + "This notification is generated when: + a. The ifOperStatus of an interface associated with a VRF + changes to the up(1) state. + b. When an interface with ifOperStatus = up(1) is + associated with a VRF. + + The interface is identified by ifName and the VRF is + identified by cvVrfName varbinds respectively." + ::= { ciscoVrfMIBNotifs 1 } + +cvVrfIfDown NOTIFICATION-TYPE + OBJECTS { + ifName, + cvVrfName, + cvVrfOperStatus + } + STATUS current + DESCRIPTION + "This notification is generated when: + a. The ifOperStatus of an interface associated with a VRF + changes to the down(2) state. + b. When an interface with ifOperStatus = up(1) state is + disassociated with a VRF. + + The interface is identified by ifName and the VRF is + identified by cvVrfName varbinds respectively. + + If all the interfaces associated with the VRF are in down(2) + state or if there are no more interfaces associated with the + VRF, then the cvVrfOperStatus will have a value of down(2)." + ::= { ciscoVrfMIBNotifs 2 } + +cvVnetTrunkUp NOTIFICATION-TYPE + OBJECTS { ifName } + STATUS current + DESCRIPTION + "This notification is generated when the ifOperStatus of a vNET + trunk interface changes to the up(1) state. The interface is + identified by ifName varbind. The notification will be + generated for only those interfaces for which the + cvInterfaceVnetTrunkEnabled object has a value of True(1)." + ::= { ciscoVrfMIBNotifs 3 } + +cvVnetTrunkDown NOTIFICATION-TYPE + OBJECTS { ifName } + STATUS current + DESCRIPTION + "This notification is generated when the ifOperStatus of a vNET + trunk interface changes to the down(2) state. The interface is + identified by ifName varbind. The notification will be + generated for only those interfaces for which the + cvInterfaceVnetTrunkEnabled object has a value of True(1)." + ::= { ciscoVrfMIBNotifs 4 } +-- Units of Conformance + +cvMIBGroups OBJECT IDENTIFIER + ::= { ciscoVrfMIBConform 1 } + + +cvMIBVrfGroup OBJECT-GROUP + OBJECTS { + cvVrfOperStatus, + cvVrfStorageType, + cvVrfRowStatus, + cvVrfRouteDistProt, + cvVrfInterfaceType, + cvVrfInterfaceStorageType, + cvVrfInterfaceRowStatus, + cvVrfIfNotifEnable, + cvVrfName + } + STATUS current + DESCRIPTION + "Collection of objects needed for VRF and VRF-Lite management." + ::= { cvMIBGroups 1 } + +cvMIBVrfNotifGroup NOTIFICATION-GROUP + NOTIFICATIONS { + cvVrfIfUp, + cvVrfIfDown + } + STATUS current + DESCRIPTION + "Collection of VRF notifications." + ::= { cvMIBGroups 2 } + +cvMIBVnetGroup OBJECT-GROUP + OBJECTS { + cvVrfVnetTag, + cvVrfListVrfIndex, + cvVrfListStorageType, + cvVrfListRowStatus, + cvVrfInterfaceVnetTagOverride, + cvInterfaceVnetTrunkEnabled, + cvInterfaceVnetVrfList, + cvVnetTrunkNotifEnable + } + STATUS current + DESCRIPTION + "Collection of objects needed for vNET management." + ::= { cvMIBGroups 3 } + +cvMIBVnetNotifGroup NOTIFICATION-GROUP + NOTIFICATIONS { + cvVnetTrunkUp, + cvVnetTrunkDown + } + STATUS current + DESCRIPTION + "Collection of VRF and vNET notifications." + ::= { cvMIBGroups 4 } +cvMIBCompliances OBJECT IDENTIFIER + ::= { ciscoVrfMIBConform 2 } + + +cvMIBCompliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "The compliance statement for SNMP Agents which + implement this MIB." + MODULE -- this module + MANDATORY-GROUPS { + cvMIBVrfGroup, + cvMIBVrfNotifGroup + } + + GROUP cvMIBVnetGroup + DESCRIPTION + "This group is required to manage vNETs." + + GROUP cvMIBVnetNotifGroup + DESCRIPTION + "The group is required to provide VRF and vNET notifications." + + OBJECT cvVrfVnetTag + MIN-ACCESS read-only + DESCRIPTION + "It is enough to provide read-only access to this object even + though write access is desirable." + + OBJECT cvVrfInterfaceVnetTagOverride + MIN-ACCESS read-only + DESCRIPTION + "It is enough to provide read-only access to this object even + though write access is desirable." + + OBJECT cvVrfRowStatus + MIN-ACCESS read-only + DESCRIPTION + "It is enough to provide read-only access to the table + containing this object even though it is desirable to use this + object to create a row in the table." + + OBJECT cvVrfListRowStatus + MIN-ACCESS read-only + DESCRIPTION + "It is enough to provide read-only access to the table + containing this object even though it is desirable to use this + object to create a row in the table." + + OBJECT cvVrfInterfaceRowStatus + MIN-ACCESS read-only + DESCRIPTION + "It is enough to provide read-only access to the table + containing this object even though it is desirable to use this + object to create a row in the table." + + OBJECT cvInterfaceVnetTrunkEnabled + MIN-ACCESS read-only + DESCRIPTION + "It is enough to provide read-only access to this object even + though write access is desirable." + + OBJECT cvInterfaceVnetVrfList + MIN-ACCESS read-only + DESCRIPTION + "It is enough to provide read-only access to this object even + though write access is desirable." + ::= { cvMIBCompliances 1 } + +END \ No newline at end of file diff --git a/tests/data/airos-af-ltu.json b/tests/data/airos-af-ltu.json index cbf30f7f70..7fd50a7b4a 100644 --- a/tests/data/airos-af-ltu.json +++ b/tests/data/airos-af-ltu.json @@ -67,7 +67,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -173,7 +172,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -279,7 +277,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -385,7 +382,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -491,7 +487,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -601,7 +596,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -707,7 +701,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -813,7 +806,6 @@ "ifLastChange": "1508", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -919,7 +911,6 @@ "ifLastChange": "1508", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1025,7 +1016,6 @@ "ifLastChange": "1508", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", diff --git a/tests/data/allied_alliedware.json b/tests/data/allied_alliedware.json index 8c0e03922d..fb4e3d4d28 100644 --- a/tests/data/allied_alliedware.json +++ b/tests/data/allied_alliedware.json @@ -152,7 +152,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -258,7 +257,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -364,7 +362,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -470,7 +467,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -576,7 +572,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -682,7 +677,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -788,7 +782,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -894,7 +887,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1000,7 +992,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1106,7 +1097,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1212,7 +1202,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1318,7 +1307,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1424,7 +1412,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1530,7 +1517,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1636,7 +1622,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1742,7 +1727,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1848,7 +1832,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1954,7 +1937,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2060,7 +2042,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2166,7 +2147,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2272,7 +2252,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2378,7 +2357,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2484,7 +2462,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2590,7 +2567,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2696,7 +2672,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2802,7 +2777,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2908,7 +2882,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3018,7 +2991,6 @@ "ifLastChange": "804", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3124,7 +3096,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3230,7 +3201,6 @@ "ifLastChange": "0", "ifVlan": "0", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3336,7 +3306,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3442,7 +3411,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3548,7 +3516,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3654,7 +3621,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3760,7 +3726,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3866,7 +3831,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3972,7 +3936,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4078,7 +4041,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4184,7 +4146,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4290,7 +4251,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4396,7 +4356,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4502,7 +4461,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4608,7 +4566,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4714,7 +4671,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4820,7 +4776,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4926,7 +4881,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5032,7 +4986,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5138,7 +5091,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5244,7 +5196,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5350,7 +5301,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5456,7 +5406,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5562,7 +5511,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5668,7 +5616,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5774,7 +5721,6 @@ "ifLastChange": "804", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", diff --git a/tests/data/allied_awplusv2.json b/tests/data/allied_awplusv2.json index f6044caf94..ea944623cd 100644 --- a/tests/data/allied_awplusv2.json +++ b/tests/data/allied_awplusv2.json @@ -47,7 +47,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -153,7 +152,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -259,7 +257,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -365,7 +362,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -471,7 +467,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -577,7 +572,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -683,7 +677,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -789,7 +782,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -895,7 +887,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1001,7 +992,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1107,7 +1097,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1213,7 +1202,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1319,7 +1307,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1425,7 +1412,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1531,7 +1517,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1637,7 +1622,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1743,7 +1727,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1849,7 +1832,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1955,7 +1937,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2061,7 +2042,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2167,7 +2147,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2273,7 +2252,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2379,7 +2357,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2485,7 +2462,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2591,7 +2567,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2697,7 +2672,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2803,7 +2777,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2909,7 +2882,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3015,7 +2987,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3121,7 +3092,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3227,7 +3197,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3333,7 +3302,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3439,7 +3407,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3545,7 +3512,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3651,7 +3617,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3757,7 +3722,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3863,7 +3827,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3969,7 +3932,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4075,7 +4037,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4181,7 +4142,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4287,7 +4247,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4393,7 +4352,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4499,7 +4457,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4605,7 +4562,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4711,7 +4667,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4817,7 +4772,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4923,7 +4877,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5029,7 +4982,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5135,7 +5087,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5241,7 +5192,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5351,7 +5301,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5457,7 +5406,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5563,7 +5511,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5669,7 +5616,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5775,7 +5721,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5881,7 +5826,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5987,7 +5931,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6093,7 +6036,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6199,7 +6141,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6305,7 +6246,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6411,7 +6351,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6517,7 +6456,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6623,7 +6561,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6729,7 +6666,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6835,7 +6771,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6941,7 +6876,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7047,7 +6981,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7153,7 +7086,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7259,7 +7191,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7365,7 +7296,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7471,7 +7401,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7577,7 +7506,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7683,7 +7611,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7789,7 +7716,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7895,7 +7821,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8001,7 +7926,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8107,7 +8031,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8213,7 +8136,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8319,7 +8241,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8425,7 +8346,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8531,7 +8451,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8637,7 +8556,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8743,7 +8661,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8849,7 +8766,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8955,7 +8871,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -9061,7 +8976,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -9167,7 +9081,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -9273,7 +9186,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -9379,7 +9291,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -9485,7 +9396,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -9591,7 +9501,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -9697,7 +9606,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -9803,7 +9711,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -9909,7 +9816,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -10015,7 +9921,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -10121,7 +10026,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -10227,7 +10131,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -10333,7 +10236,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -10439,7 +10341,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -10545,7 +10446,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", diff --git a/tests/data/allied_websmart.json b/tests/data/allied_websmart.json index 4d85c4d61d..822bb50690 100644 --- a/tests/data/allied_websmart.json +++ b/tests/data/allied_websmart.json @@ -35,7 +35,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -141,7 +140,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -247,7 +245,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -353,7 +350,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -459,7 +455,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -565,7 +560,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -671,7 +665,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -777,7 +770,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -883,7 +875,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -989,7 +980,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1095,7 +1085,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1201,7 +1190,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1307,7 +1295,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1413,7 +1400,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1519,7 +1505,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1625,7 +1610,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1731,7 +1715,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1837,7 +1820,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1943,7 +1925,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2049,7 +2030,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2155,7 +2135,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2261,7 +2240,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2367,7 +2345,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2473,7 +2450,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2583,7 +2559,6 @@ "ifLastChange": "1285", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2689,7 +2664,6 @@ "ifLastChange": "293125856", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2795,7 +2769,6 @@ "ifLastChange": "1286", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2901,7 +2874,6 @@ "ifLastChange": "303", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3007,7 +2979,6 @@ "ifLastChange": "300527417", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3113,7 +3084,6 @@ "ifLastChange": "300508826", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3219,7 +3189,6 @@ "ifLastChange": "337050906", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3325,7 +3294,6 @@ "ifLastChange": "300217311", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3431,7 +3399,6 @@ "ifLastChange": "303", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3537,7 +3504,6 @@ "ifLastChange": "304", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3643,7 +3609,6 @@ "ifLastChange": "304", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3749,7 +3714,6 @@ "ifLastChange": "304", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3855,7 +3819,6 @@ "ifLastChange": "304", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3961,7 +3924,6 @@ "ifLastChange": "304", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4067,7 +4029,6 @@ "ifLastChange": "304", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4173,7 +4134,6 @@ "ifLastChange": "304", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4279,7 +4239,6 @@ "ifLastChange": "304", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4385,7 +4344,6 @@ "ifLastChange": "305", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4491,7 +4449,6 @@ "ifLastChange": "305", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4597,7 +4554,6 @@ "ifLastChange": "305", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4703,7 +4659,6 @@ "ifLastChange": "306", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4809,7 +4764,6 @@ "ifLastChange": "307", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4915,7 +4869,6 @@ "ifLastChange": "337048962", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5021,7 +4974,6 @@ "ifLastChange": "23490202", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", diff --git a/tests/data/arbos.json b/tests/data/arbos.json index f3e25492f7..6c0db47c3d 100644 --- a/tests/data/arbos.json +++ b/tests/data/arbos.json @@ -135,7 +135,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -241,7 +240,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -347,7 +345,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -453,7 +450,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -559,7 +555,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -665,7 +660,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -771,7 +765,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -877,7 +870,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -983,7 +975,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1089,7 +1080,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1195,7 +1185,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1301,7 +1290,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1407,7 +1395,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1517,7 +1504,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1623,7 +1609,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1729,7 +1714,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1835,7 +1819,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1941,7 +1924,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2047,7 +2029,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2153,7 +2134,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2259,7 +2239,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2365,7 +2344,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2471,7 +2449,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2577,7 +2554,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2683,7 +2659,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2789,7 +2764,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", diff --git a/tests/data/awplus.json b/tests/data/awplus.json index c742b87787..6f09348467 100644 --- a/tests/data/awplus.json +++ b/tests/data/awplus.json @@ -67,7 +67,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -173,7 +172,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -279,7 +277,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -385,7 +382,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -491,7 +487,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -597,7 +592,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -703,7 +697,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -809,7 +802,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -915,7 +907,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1021,7 +1012,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1127,7 +1117,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1233,7 +1222,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1339,7 +1327,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1445,7 +1432,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1551,7 +1537,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1657,7 +1642,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1763,7 +1747,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1869,7 +1852,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1975,7 +1957,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2081,7 +2062,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2187,7 +2167,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2293,7 +2272,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2399,7 +2377,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2505,7 +2482,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2611,7 +2587,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2717,7 +2692,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2823,7 +2797,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2929,7 +2902,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3035,7 +3007,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3141,7 +3112,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3247,7 +3217,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3353,7 +3322,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3459,7 +3427,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3565,7 +3532,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3671,7 +3637,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3777,7 +3742,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3883,7 +3847,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3989,7 +3952,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4095,7 +4057,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4201,7 +4162,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4307,7 +4267,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4413,7 +4372,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4519,7 +4477,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4625,7 +4582,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4731,7 +4687,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4841,7 +4796,6 @@ "ifLastChange": "0", "ifVlan": "0", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4947,7 +4901,6 @@ "ifLastChange": "5782", "ifVlan": "0", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5053,7 +5006,6 @@ "ifLastChange": "6229", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5159,7 +5111,6 @@ "ifLastChange": "16833107", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5265,7 +5216,6 @@ "ifLastChange": "6226", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5371,7 +5321,6 @@ "ifLastChange": "6570", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5477,7 +5426,6 @@ "ifLastChange": "5179", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5583,7 +5531,6 @@ "ifLastChange": "6569", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5689,7 +5636,6 @@ "ifLastChange": "6884", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5795,7 +5741,6 @@ "ifLastChange": "6762", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5901,7 +5846,6 @@ "ifLastChange": "6314", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6007,7 +5951,6 @@ "ifLastChange": "6635", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6113,7 +6056,6 @@ "ifLastChange": "6763", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6219,7 +6161,6 @@ "ifLastChange": "6229", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6325,7 +6266,6 @@ "ifLastChange": "6229", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6431,7 +6371,6 @@ "ifLastChange": "6229", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6537,7 +6476,6 @@ "ifLastChange": "6229", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6643,7 +6581,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6749,7 +6686,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6855,7 +6791,6 @@ "ifLastChange": "6762", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6961,7 +6896,6 @@ "ifLastChange": "6762", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7067,7 +7001,6 @@ "ifLastChange": "6884", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7173,7 +7106,6 @@ "ifLastChange": "6977", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7279,7 +7211,6 @@ "ifLastChange": "6884", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7385,7 +7316,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7491,7 +7421,6 @@ "ifLastChange": "16833107", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7597,7 +7526,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7703,7 +7631,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7809,7 +7736,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7915,7 +7841,6 @@ "ifLastChange": "6269", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8021,7 +7946,6 @@ "ifLastChange": "6270", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8127,7 +8051,6 @@ "ifLastChange": "6271", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8233,7 +8156,6 @@ "ifLastChange": "6271", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8339,7 +8261,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8445,7 +8366,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8551,7 +8471,6 @@ "ifLastChange": "6569", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8657,7 +8576,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8763,7 +8681,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8869,7 +8786,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8975,7 +8891,6 @@ "ifLastChange": "6570", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -9081,7 +8996,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -9187,7 +9101,6 @@ "ifLastChange": "6226", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -9293,7 +9206,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -9399,7 +9311,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -9505,7 +9416,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", diff --git a/tests/data/barracudaspamfirewall.json b/tests/data/barracudaspamfirewall.json index dc342afcb2..d8c94361b1 100644 --- a/tests/data/barracudaspamfirewall.json +++ b/tests/data/barracudaspamfirewall.json @@ -67,7 +67,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -173,7 +172,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -283,7 +281,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -389,7 +386,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", diff --git a/tests/data/barracudaspamfirewall_email_sg.json b/tests/data/barracudaspamfirewall_email_sg.json index 3201aa0331..1efe776a5b 100644 --- a/tests/data/barracudaspamfirewall_email_sg.json +++ b/tests/data/barracudaspamfirewall_email_sg.json @@ -67,7 +67,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -173,7 +172,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -283,7 +281,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -389,7 +386,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", diff --git a/tests/data/calix_b6-256.json b/tests/data/calix_b6-256.json index f1b0f22e29..527cca1f5a 100644 --- a/tests/data/calix_b6-256.json +++ b/tests/data/calix_b6-256.json @@ -67,7 +67,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -173,7 +172,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -279,7 +277,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -385,7 +382,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -491,7 +487,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -597,7 +592,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -703,7 +697,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -809,7 +802,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -915,7 +907,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1021,7 +1012,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1127,7 +1117,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1233,7 +1222,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1339,7 +1327,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1445,7 +1432,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1551,7 +1537,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1657,7 +1642,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1763,7 +1747,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1869,7 +1852,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1975,7 +1957,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2081,7 +2062,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2187,7 +2167,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2293,7 +2272,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2399,7 +2377,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2505,7 +2482,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2611,7 +2587,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2717,7 +2692,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2823,7 +2797,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2929,7 +2902,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3035,7 +3007,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3141,7 +3112,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3247,7 +3217,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3353,7 +3322,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3459,7 +3427,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3565,7 +3532,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3671,7 +3637,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3777,7 +3742,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3883,7 +3847,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3989,7 +3952,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4095,7 +4057,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4201,7 +4162,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4307,7 +4267,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4413,7 +4372,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4519,7 +4477,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4625,7 +4582,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4731,7 +4687,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4837,7 +4792,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4943,7 +4897,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5049,7 +5002,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5155,7 +5107,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5261,7 +5212,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5367,7 +5317,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5473,7 +5422,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5579,7 +5527,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5685,7 +5632,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5791,7 +5737,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5897,7 +5842,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6003,7 +5947,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6109,7 +6052,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6219,7 +6161,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6325,7 +6266,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6431,7 +6371,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6537,7 +6476,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6643,7 +6581,6 @@ "ifLastChange": "3857224855", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6749,7 +6686,6 @@ "ifLastChange": "2843265946", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6855,7 +6791,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6961,7 +6896,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7067,7 +7001,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7173,7 +7106,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7279,7 +7211,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7385,7 +7316,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7491,7 +7421,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7597,7 +7526,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7703,7 +7631,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7809,7 +7736,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7915,7 +7841,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8021,7 +7946,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8127,7 +8051,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8233,7 +8156,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8339,7 +8261,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8445,7 +8366,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8551,7 +8471,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8657,7 +8576,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8763,7 +8681,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8869,7 +8786,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8975,7 +8891,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -9081,7 +8996,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -9187,7 +9101,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -9293,7 +9206,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -9399,7 +9311,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -9505,7 +9416,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -9611,7 +9521,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -9717,7 +9626,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -9823,7 +9731,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -9929,7 +9836,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -10035,7 +9941,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -10141,7 +10046,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -10247,7 +10151,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -10353,7 +10256,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -10459,7 +10361,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -10565,7 +10466,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -10671,7 +10571,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -10777,7 +10676,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -10883,7 +10781,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -10989,7 +10886,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -11095,7 +10991,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -11201,7 +11096,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -11307,7 +11201,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -11413,7 +11306,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -11519,7 +11411,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -11625,7 +11516,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -11731,7 +11621,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -11837,7 +11726,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -11943,7 +11831,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -12049,7 +11936,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -12155,7 +12041,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -12261,7 +12146,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", diff --git a/tests/data/canonprinter_lbp.json b/tests/data/canonprinter_lbp.json index bfb360f75d..973e5dca0c 100644 --- a/tests/data/canonprinter_lbp.json +++ b/tests/data/canonprinter_lbp.json @@ -67,7 +67,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -173,7 +172,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -283,7 +281,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -389,7 +386,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", diff --git a/tests/data/ceraos.json b/tests/data/ceraos.json index 9a4425d94c..a8fb43a6bf 100644 --- a/tests/data/ceraos.json +++ b/tests/data/ceraos.json @@ -67,7 +67,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -173,7 +172,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -279,7 +277,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -385,7 +382,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -491,7 +487,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -597,7 +592,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -707,7 +701,6 @@ "ifLastChange": "1522624130", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -813,7 +806,6 @@ "ifLastChange": "1", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -919,7 +911,6 @@ "ifLastChange": "1522366117", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1025,7 +1016,6 @@ "ifLastChange": "1522365814", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1131,7 +1121,6 @@ "ifLastChange": "1522366910", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1237,7 +1226,6 @@ "ifLastChange": "1522622879", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", diff --git a/tests/data/ciscosb_sg350-10.json b/tests/data/ciscosb_sg350-10.json index 0af6d015d9..39ccef34c6 100644 --- a/tests/data/ciscosb_sg350-10.json +++ b/tests/data/ciscosb_sg350-10.json @@ -29,7 +29,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -135,7 +134,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -241,7 +239,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -347,7 +344,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -453,7 +449,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -559,7 +554,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -665,7 +659,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -771,7 +764,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -877,7 +869,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -983,7 +974,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1089,7 +1079,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1195,7 +1184,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1301,7 +1289,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1407,7 +1394,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1513,7 +1499,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1619,7 +1604,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1725,7 +1709,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1831,7 +1814,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1937,7 +1919,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2043,7 +2024,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2149,7 +2129,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2255,7 +2234,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2361,7 +2339,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2471,7 +2448,6 @@ "ifLastChange": "23735", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2577,7 +2553,6 @@ "ifLastChange": "25821", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2683,7 +2658,6 @@ "ifLastChange": "232894", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2789,7 +2763,6 @@ "ifLastChange": "87901", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2895,7 +2868,6 @@ "ifLastChange": "89150", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3001,7 +2973,6 @@ "ifLastChange": "110349", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3107,7 +3078,6 @@ "ifLastChange": "531403", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3213,7 +3183,6 @@ "ifLastChange": "101489", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3319,7 +3288,6 @@ "ifLastChange": "1875", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3425,7 +3393,6 @@ "ifLastChange": "1881", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3531,7 +3498,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3637,7 +3603,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3743,7 +3708,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3849,7 +3813,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3955,7 +3918,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4061,7 +4023,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4167,7 +4128,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4273,7 +4233,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4379,7 +4338,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4485,7 +4443,6 @@ "ifLastChange": "1881", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4591,7 +4548,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4697,7 +4653,6 @@ "ifLastChange": "1899", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4803,7 +4758,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", diff --git a/tests/data/comware.json b/tests/data/comware.json index 5ce8d63d20..570d16016e 100644 --- a/tests/data/comware.json +++ b/tests/data/comware.json @@ -115,7 +115,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -221,7 +220,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -327,7 +325,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -433,7 +430,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -539,7 +535,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -645,7 +640,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -751,7 +745,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -857,7 +850,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -963,7 +955,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1069,7 +1060,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1175,7 +1165,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1281,7 +1270,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1387,7 +1375,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1493,7 +1480,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1599,7 +1585,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1705,7 +1690,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1811,7 +1795,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1917,7 +1900,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2023,7 +2005,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2129,7 +2110,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2235,7 +2215,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2341,7 +2320,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2447,7 +2425,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2553,7 +2530,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2659,7 +2635,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2765,7 +2740,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2871,7 +2845,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2977,7 +2950,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3083,7 +3055,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3189,7 +3160,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3295,7 +3265,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3401,7 +3370,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3507,7 +3475,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3613,7 +3580,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3719,7 +3685,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3825,7 +3790,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3931,7 +3895,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4037,7 +4000,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4143,7 +4105,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4249,7 +4210,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4355,7 +4315,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4461,7 +4420,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4567,7 +4525,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4673,7 +4630,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4779,7 +4735,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4885,7 +4840,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4991,7 +4945,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5097,7 +5050,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5203,7 +5155,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5309,7 +5260,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5415,7 +5365,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5521,7 +5470,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5627,7 +5575,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5733,7 +5680,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5839,7 +5785,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5945,7 +5890,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6051,7 +5995,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6157,7 +6100,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6263,7 +6205,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6369,7 +6310,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6475,7 +6415,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6581,7 +6520,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6687,7 +6625,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6793,7 +6730,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6899,7 +6835,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7005,7 +6940,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7111,7 +7045,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7217,7 +7150,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7323,7 +7255,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7429,7 +7360,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7535,7 +7465,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7641,7 +7570,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7747,7 +7675,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7853,7 +7780,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7959,7 +7885,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8065,7 +7990,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8171,7 +8095,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8277,7 +8200,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8383,7 +8305,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8489,7 +8410,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8595,7 +8515,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8701,7 +8620,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8807,7 +8725,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8913,7 +8830,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -9019,7 +8935,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -9125,7 +9040,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -9231,7 +9145,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -9337,7 +9250,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -9443,7 +9355,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -9549,7 +9460,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -9655,7 +9565,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -9761,7 +9670,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -9867,7 +9775,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -9973,7 +9880,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -10079,7 +9985,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -10185,7 +10090,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -10291,7 +10195,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -10397,7 +10300,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -10503,7 +10405,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -10609,7 +10510,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -10715,7 +10615,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -10821,7 +10720,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -10927,7 +10825,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -11033,7 +10930,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -11139,7 +11035,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -11245,7 +11140,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -11351,7 +11245,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -11457,7 +11350,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -11563,7 +11455,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -11669,7 +11560,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -11775,7 +11665,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -11881,7 +11770,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -11987,7 +11875,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -12093,7 +11980,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -12199,7 +12085,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -12305,7 +12190,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -12411,7 +12295,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -12517,7 +12400,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -12623,7 +12505,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -12729,7 +12610,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -12835,7 +12715,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -12941,7 +12820,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -13047,7 +12925,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -13153,7 +13030,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -13259,7 +13135,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -13365,7 +13240,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -13471,7 +13345,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -13577,7 +13450,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -13683,7 +13555,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -13789,7 +13660,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -13895,7 +13765,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -14001,7 +13870,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -14107,7 +13975,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -14213,7 +14080,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -14319,7 +14185,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -14425,7 +14290,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -14531,7 +14395,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -14637,7 +14500,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -14743,7 +14605,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -14849,7 +14710,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -14955,7 +14815,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -15061,7 +14920,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -15167,7 +15025,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -15273,7 +15130,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -15379,7 +15235,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -15485,7 +15340,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -15591,7 +15445,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -15697,7 +15550,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -15803,7 +15655,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -15909,7 +15760,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -16015,7 +15865,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -16121,7 +15970,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -16227,7 +16075,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -16333,7 +16180,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -16439,7 +16285,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -16545,7 +16390,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -16651,7 +16495,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -16757,7 +16600,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -16863,7 +16705,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -16969,7 +16810,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -17075,7 +16915,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -17181,7 +17020,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -17287,7 +17125,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -17393,7 +17230,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -17499,7 +17335,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -17605,7 +17440,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -17711,7 +17545,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -17817,7 +17650,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -17923,7 +17755,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -18029,7 +17860,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -18135,7 +17965,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -18241,7 +18070,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -18347,7 +18175,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -18453,7 +18280,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -18559,7 +18385,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -18665,7 +18490,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -18771,7 +18595,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -18877,7 +18700,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -18983,7 +18805,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -19089,7 +18910,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -19195,7 +19015,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -19301,7 +19120,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -19407,7 +19225,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -19513,7 +19330,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -19619,7 +19435,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -19725,7 +19540,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -19831,7 +19645,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -19937,7 +19750,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -20043,7 +19855,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -20149,7 +19960,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -20255,7 +20065,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -20361,7 +20170,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -20467,7 +20275,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -20573,7 +20380,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -20679,7 +20485,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -20785,7 +20590,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -20891,7 +20695,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -20997,7 +20800,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -21103,7 +20905,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -21209,7 +21010,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -21315,7 +21115,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -21421,7 +21220,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -21527,7 +21325,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -21633,7 +21430,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -21739,7 +21535,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -21845,7 +21640,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -21951,7 +21745,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -22057,7 +21850,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -22163,7 +21955,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -22269,7 +22060,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -22375,7 +22165,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -22481,7 +22270,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -22587,7 +22375,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -22693,7 +22480,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -22799,7 +22585,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -22905,7 +22690,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -23011,7 +22795,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -23117,7 +22900,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -23223,7 +23005,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -23329,7 +23110,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -23435,7 +23215,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -23541,7 +23320,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -23647,7 +23425,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -23753,7 +23530,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -23859,7 +23635,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -23965,7 +23740,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -24071,7 +23845,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -24177,7 +23950,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -24283,7 +24055,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -24389,7 +24160,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -24495,7 +24265,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -24601,7 +24370,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -24711,7 +24479,6 @@ "ifLastChange": "3392", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -24817,7 +24584,6 @@ "ifLastChange": "3392", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -24923,7 +24689,6 @@ "ifLastChange": "23387", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -25029,7 +24794,6 @@ "ifLastChange": "5559", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -25135,7 +24899,6 @@ "ifLastChange": "5559", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -25241,7 +25004,6 @@ "ifLastChange": "5559", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -25347,7 +25109,6 @@ "ifLastChange": "5559", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -25453,7 +25214,6 @@ "ifLastChange": "5559", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -25559,7 +25319,6 @@ "ifLastChange": "5561", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -25665,7 +25424,6 @@ "ifLastChange": "5561", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -25771,7 +25529,6 @@ "ifLastChange": "5561", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -25877,7 +25634,6 @@ "ifLastChange": "5561", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -25983,7 +25739,6 @@ "ifLastChange": "24335", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -26089,7 +25844,6 @@ "ifLastChange": "778469650", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -26195,7 +25949,6 @@ "ifLastChange": "650725476", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -26301,7 +26054,6 @@ "ifLastChange": "594490646", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -26407,7 +26159,6 @@ "ifLastChange": "24356", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -26513,7 +26264,6 @@ "ifLastChange": "446825504", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -26619,7 +26369,6 @@ "ifLastChange": "378202965", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -26725,7 +26474,6 @@ "ifLastChange": "211925182", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -26831,7 +26579,6 @@ "ifLastChange": "818233385", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -26937,7 +26684,6 @@ "ifLastChange": "827725014", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -27043,7 +26789,6 @@ "ifLastChange": "136006019", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -27149,7 +26894,6 @@ "ifLastChange": "24430", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -27255,7 +26999,6 @@ "ifLastChange": "5551", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -27361,7 +27104,6 @@ "ifLastChange": "5561", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -27467,7 +27209,6 @@ "ifLastChange": "5551", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -27573,7 +27314,6 @@ "ifLastChange": "5562", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -27679,7 +27419,6 @@ "ifLastChange": "5563", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -27785,7 +27524,6 @@ "ifLastChange": "5563", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -27891,7 +27629,6 @@ "ifLastChange": "5563", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -27997,7 +27734,6 @@ "ifLastChange": "5563", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -28103,7 +27839,6 @@ "ifLastChange": "5563", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -28209,7 +27944,6 @@ "ifLastChange": "5565", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -28315,7 +28049,6 @@ "ifLastChange": "5565", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -28421,7 +28154,6 @@ "ifLastChange": "5551", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -28527,7 +28259,6 @@ "ifLastChange": "5536", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -28633,7 +28364,6 @@ "ifLastChange": "5552", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -28739,7 +28469,6 @@ "ifLastChange": "5553", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -28845,7 +28574,6 @@ "ifLastChange": "5554", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -28951,7 +28679,6 @@ "ifLastChange": "5554", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -29057,7 +28784,6 @@ "ifLastChange": "650722892", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -29163,7 +28889,6 @@ "ifLastChange": "5539", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -29269,7 +28994,6 @@ "ifLastChange": "778469303", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -29375,7 +29099,6 @@ "ifLastChange": "23954", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -29481,7 +29204,6 @@ "ifLastChange": "778469576", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -29587,7 +29309,6 @@ "ifLastChange": "650724916", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -29693,7 +29414,6 @@ "ifLastChange": "594488306", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -29799,7 +29519,6 @@ "ifLastChange": "23954", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -29905,7 +29624,6 @@ "ifLastChange": "446805388", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -30011,7 +29729,6 @@ "ifLastChange": "378202823", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -30117,7 +29834,6 @@ "ifLastChange": "448436391", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -30223,7 +29939,6 @@ "ifLastChange": "818232992", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -30329,7 +30044,6 @@ "ifLastChange": "827725242", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -30435,7 +30149,6 @@ "ifLastChange": "136005905", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -30541,7 +30254,6 @@ "ifLastChange": "449669692", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -30647,7 +30359,6 @@ "ifLastChange": "5544", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -30753,7 +30464,6 @@ "ifLastChange": "5555", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -30859,7 +30569,6 @@ "ifLastChange": "5555", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -30965,7 +30674,6 @@ "ifLastChange": "5555", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -31071,7 +30779,6 @@ "ifLastChange": "5555", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -31177,7 +30884,6 @@ "ifLastChange": "5556", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -31283,7 +30989,6 @@ "ifLastChange": "5557", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -31389,7 +31094,6 @@ "ifLastChange": "23971", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -31495,7 +31199,6 @@ "ifLastChange": "5557", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -31601,7 +31304,6 @@ "ifLastChange": "650722047", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -31707,7 +31409,6 @@ "ifLastChange": "5558", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -31813,7 +31514,6 @@ "ifLastChange": "570656563", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -31919,7 +31619,6 @@ "ifLastChange": "594383234", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -32025,7 +31724,6 @@ "ifLastChange": "632619429", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -32131,7 +31829,6 @@ "ifLastChange": "595774968", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -32237,7 +31934,6 @@ "ifLastChange": "596794275", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -32343,7 +32039,6 @@ "ifLastChange": "621790493", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -32449,7 +32144,6 @@ "ifLastChange": "5519", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -32555,7 +32249,6 @@ "ifLastChange": "5520", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -32661,7 +32354,6 @@ "ifLastChange": "5522", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -32767,7 +32459,6 @@ "ifLastChange": "5522", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -32873,7 +32564,6 @@ "ifLastChange": "5522", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -32979,7 +32669,6 @@ "ifLastChange": "5522", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -33085,7 +32774,6 @@ "ifLastChange": "5523", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -33191,7 +32879,6 @@ "ifLastChange": "23606", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -33297,7 +32984,6 @@ "ifLastChange": "23610", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -33403,7 +33089,6 @@ "ifLastChange": "23608", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -33509,7 +33194,6 @@ "ifLastChange": "5523", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -33615,7 +33299,6 @@ "ifLastChange": "5524", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -33721,7 +33404,6 @@ "ifLastChange": "5524", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -33827,7 +33509,6 @@ "ifLastChange": "5524", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -33933,7 +33614,6 @@ "ifLastChange": "5524", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -34039,7 +33719,6 @@ "ifLastChange": "5525", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -34145,7 +33824,6 @@ "ifLastChange": "5526", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -34251,7 +33929,6 @@ "ifLastChange": "5526", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -34357,7 +34034,6 @@ "ifLastChange": "5526", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -34463,7 +34139,6 @@ "ifLastChange": "5526", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -34569,7 +34244,6 @@ "ifLastChange": "5527", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -34675,7 +34349,6 @@ "ifLastChange": "5527", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -34781,7 +34454,6 @@ "ifLastChange": "5528", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -34887,7 +34559,6 @@ "ifLastChange": "5528", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -34993,7 +34664,6 @@ "ifLastChange": "620365872", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -35099,7 +34769,6 @@ "ifLastChange": "620366207", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -35205,7 +34874,6 @@ "ifLastChange": "5529", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -35311,7 +34979,6 @@ "ifLastChange": "5530", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -35417,7 +35084,6 @@ "ifLastChange": "5530", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -35523,7 +35189,6 @@ "ifLastChange": "5531", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -35629,7 +35294,6 @@ "ifLastChange": "5531", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -35735,7 +35399,6 @@ "ifLastChange": "5531", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -35841,7 +35504,6 @@ "ifLastChange": "5531", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -35947,7 +35609,6 @@ "ifLastChange": "5532", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -36053,7 +35714,6 @@ "ifLastChange": "5533", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -36159,7 +35819,6 @@ "ifLastChange": "5533", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -36265,7 +35924,6 @@ "ifLastChange": "5533", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -36371,7 +36029,6 @@ "ifLastChange": "5533", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -36477,7 +36134,6 @@ "ifLastChange": "5535", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -36583,7 +36239,6 @@ "ifLastChange": "23570", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -36689,7 +36344,6 @@ "ifLastChange": "23588", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -36795,7 +36449,6 @@ "ifLastChange": "50218228", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -36901,7 +36554,6 @@ "ifLastChange": "570636686", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -37007,7 +36659,6 @@ "ifLastChange": "594383394", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -37113,7 +36764,6 @@ "ifLastChange": "632619349", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -37219,7 +36869,6 @@ "ifLastChange": "595775171", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -37325,7 +36974,6 @@ "ifLastChange": "596794476", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -37431,7 +37079,6 @@ "ifLastChange": "621790475", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -37537,7 +37184,6 @@ "ifLastChange": "5449", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -37643,7 +37289,6 @@ "ifLastChange": "5450", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -37749,7 +37394,6 @@ "ifLastChange": "5450", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -37855,7 +37499,6 @@ "ifLastChange": "5456", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -37961,7 +37604,6 @@ "ifLastChange": "5456", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -38067,7 +37709,6 @@ "ifLastChange": "5456", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -38173,7 +37814,6 @@ "ifLastChange": "5456", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -38279,7 +37919,6 @@ "ifLastChange": "23486", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -38385,7 +38024,6 @@ "ifLastChange": "594304751", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -38491,7 +38129,6 @@ "ifLastChange": "23473", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -38597,7 +38234,6 @@ "ifLastChange": "23387", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -38703,7 +38339,6 @@ "ifLastChange": "5457", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -38809,7 +38444,6 @@ "ifLastChange": "5481", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -38915,7 +38549,6 @@ "ifLastChange": "5481", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -39021,7 +38654,6 @@ "ifLastChange": "5481", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -39127,7 +38759,6 @@ "ifLastChange": "5481", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -39233,7 +38864,6 @@ "ifLastChange": "5481", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -39339,7 +38969,6 @@ "ifLastChange": "5483", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -39445,7 +39074,6 @@ "ifLastChange": "5483", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -39551,7 +39179,6 @@ "ifLastChange": "5483", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -39657,7 +39284,6 @@ "ifLastChange": "620123387", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -39763,7 +39389,6 @@ "ifLastChange": "5483", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -39869,7 +39494,6 @@ "ifLastChange": "620128206", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -39975,7 +39599,6 @@ "ifLastChange": "5511", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -40081,7 +39704,6 @@ "ifLastChange": "5511", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -40187,7 +39809,6 @@ "ifLastChange": "596534910", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -40293,7 +39914,6 @@ "ifLastChange": "5511", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -40399,7 +40019,6 @@ "ifLastChange": "5511", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -40505,7 +40124,6 @@ "ifLastChange": "5513", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -40611,7 +40229,6 @@ "ifLastChange": "5513", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -40717,7 +40334,6 @@ "ifLastChange": "5513", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -40823,7 +40439,6 @@ "ifLastChange": "5513", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -40929,7 +40544,6 @@ "ifLastChange": "5513", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -41035,7 +40649,6 @@ "ifLastChange": "5514", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -41141,7 +40754,6 @@ "ifLastChange": "534882918", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -41247,7 +40859,6 @@ "ifLastChange": "5515", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -41353,7 +40964,6 @@ "ifLastChange": "147373406", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -41459,7 +41069,6 @@ "ifLastChange": "5515", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -41565,7 +41174,6 @@ "ifLastChange": "53035767", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -41671,7 +41279,6 @@ "ifLastChange": "5517", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -41777,7 +41384,6 @@ "ifLastChange": "577240835", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -41883,7 +41489,6 @@ "ifLastChange": "328381240", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -41989,7 +41594,6 @@ "ifLastChange": "5294", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -42095,7 +41699,6 @@ "ifLastChange": "5295", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -42201,7 +41804,6 @@ "ifLastChange": "406125666", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -42307,7 +41909,6 @@ "ifLastChange": "598604959", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -42413,7 +42014,6 @@ "ifLastChange": "598604977", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -42519,7 +42119,6 @@ "ifLastChange": "5328", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -42625,7 +42224,6 @@ "ifLastChange": "5328", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -42731,7 +42329,6 @@ "ifLastChange": "5328", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -42837,7 +42434,6 @@ "ifLastChange": "458059475", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -42943,7 +42539,6 @@ "ifLastChange": "648539706", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -43049,7 +42644,6 @@ "ifLastChange": "751481865", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -43155,7 +42749,6 @@ "ifLastChange": "559273711", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -43261,7 +42854,6 @@ "ifLastChange": "24018", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -43367,7 +42959,6 @@ "ifLastChange": "24004", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -43473,7 +43064,6 @@ "ifLastChange": "5347", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -43579,7 +43169,6 @@ "ifLastChange": "5347", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -43685,7 +43274,6 @@ "ifLastChange": "5347", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -43791,7 +43379,6 @@ "ifLastChange": "5347", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -43897,7 +43484,6 @@ "ifLastChange": "5348", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -44003,7 +43589,6 @@ "ifLastChange": "594524871", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -44109,7 +43694,6 @@ "ifLastChange": "5363", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -44215,7 +43799,6 @@ "ifLastChange": "5364", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -44321,7 +43904,6 @@ "ifLastChange": "5364", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -44427,7 +44009,6 @@ "ifLastChange": "5364", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -44533,7 +44114,6 @@ "ifLastChange": "5379", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -44639,7 +44219,6 @@ "ifLastChange": "5379", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -44745,7 +44324,6 @@ "ifLastChange": "5380", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -44851,7 +44429,6 @@ "ifLastChange": "5380", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -44957,7 +44534,6 @@ "ifLastChange": "5380", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -45063,7 +44639,6 @@ "ifLastChange": "5380", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -45169,7 +44744,6 @@ "ifLastChange": "5396", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -45275,7 +44849,6 @@ "ifLastChange": "5396", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -45381,7 +44954,6 @@ "ifLastChange": "23752", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -45487,7 +45059,6 @@ "ifLastChange": "23716", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -45593,7 +45164,6 @@ "ifLastChange": "284940682", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -45699,7 +45269,6 @@ "ifLastChange": "23804", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -45805,7 +45374,6 @@ "ifLastChange": "587038107", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -45911,7 +45479,6 @@ "ifLastChange": "439511216", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -46017,7 +45584,6 @@ "ifLastChange": "23785", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -46123,7 +45689,6 @@ "ifLastChange": "23699", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -46229,7 +45794,6 @@ "ifLastChange": "5413", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -46335,7 +45899,6 @@ "ifLastChange": "5430", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -46441,7 +46004,6 @@ "ifLastChange": "5430", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -46547,7 +46109,6 @@ "ifLastChange": "5430", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -46653,7 +46214,6 @@ "ifLastChange": "5430", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -46759,7 +46319,6 @@ "ifLastChange": "5430", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -46865,7 +46424,6 @@ "ifLastChange": "5433", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -46971,7 +46529,6 @@ "ifLastChange": "52996372", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -47077,7 +46634,6 @@ "ifLastChange": "620365877", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -47183,7 +46739,6 @@ "ifLastChange": "5187", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -47289,7 +46844,6 @@ "ifLastChange": "717297863", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -47395,7 +46949,6 @@ "ifLastChange": "594490605", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -47501,7 +47054,6 @@ "ifLastChange": "24133", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -47607,7 +47159,6 @@ "ifLastChange": "446805393", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -47713,7 +47264,6 @@ "ifLastChange": "378202828", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -47819,7 +47369,6 @@ "ifLastChange": "211924984", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -47925,7 +47474,6 @@ "ifLastChange": "818232998", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -48031,7 +47579,6 @@ "ifLastChange": "827725019", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -48137,7 +47684,6 @@ "ifLastChange": "136005910", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -48243,7 +47789,6 @@ "ifLastChange": "24165", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -48349,7 +47894,6 @@ "ifLastChange": "778469308", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -48455,7 +47999,6 @@ "ifLastChange": "24005", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -48561,7 +48104,6 @@ "ifLastChange": "650724921", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -48667,7 +48209,6 @@ "ifLastChange": "23499", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -48773,7 +48314,6 @@ "ifLastChange": "5232", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -48879,7 +48419,6 @@ "ifLastChange": "5234", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -48985,7 +48524,6 @@ "ifLastChange": "650722898", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -49091,7 +48629,6 @@ "ifLastChange": "23582", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -49197,7 +48734,6 @@ "ifLastChange": "717651870", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", diff --git a/tests/data/ctm.json b/tests/data/ctm.json index f280d7379a..ac026c2cc1 100644 --- a/tests/data/ctm.json +++ b/tests/data/ctm.json @@ -1499,7 +1499,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1605,7 +1604,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1715,7 +1713,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1821,7 +1818,6 @@ "ifLastChange": "183", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", diff --git a/tests/data/cumulus_edgecore-as4610-54p.json b/tests/data/cumulus_edgecore-as4610-54p.json index a0a7c71587..6f42e745af 100644 --- a/tests/data/cumulus_edgecore-as4610-54p.json +++ b/tests/data/cumulus_edgecore-as4610-54p.json @@ -67,7 +67,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -173,7 +172,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -279,7 +277,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -385,7 +382,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -491,7 +487,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -597,7 +592,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -703,7 +697,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -809,7 +802,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -915,7 +907,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1021,7 +1012,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1127,7 +1117,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1233,7 +1222,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1339,7 +1327,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1445,7 +1432,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1551,7 +1537,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1657,7 +1642,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1763,7 +1747,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1869,7 +1852,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1975,7 +1957,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2081,7 +2062,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2187,7 +2167,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2293,7 +2272,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2399,7 +2377,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2505,7 +2482,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2611,7 +2587,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2717,7 +2692,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2823,7 +2797,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2929,7 +2902,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3035,7 +3007,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3141,7 +3112,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3247,7 +3217,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3353,7 +3322,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3459,7 +3427,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3565,7 +3532,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3671,7 +3637,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3777,7 +3742,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3883,7 +3847,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3989,7 +3952,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4095,7 +4057,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4201,7 +4162,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4307,7 +4267,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4413,7 +4372,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4519,7 +4477,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4625,7 +4582,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4731,7 +4687,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4837,7 +4792,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4943,7 +4897,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5049,7 +5002,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5155,7 +5107,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5261,7 +5212,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5367,7 +5317,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5473,7 +5422,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5579,7 +5527,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5685,7 +5632,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5791,7 +5737,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5897,7 +5842,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6003,7 +5947,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6113,7 +6056,6 @@ "ifLastChange": "87052972", "ifVlan": "141", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6219,7 +6161,6 @@ "ifLastChange": "87052972", "ifVlan": "5", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6325,7 +6266,6 @@ "ifLastChange": "87052972", "ifVlan": "141", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6431,7 +6371,6 @@ "ifLastChange": "87052972", "ifVlan": "141", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6537,7 +6476,6 @@ "ifLastChange": "87052972", "ifVlan": "141", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6643,7 +6581,6 @@ "ifLastChange": "87052972", "ifVlan": "141", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6749,7 +6686,6 @@ "ifLastChange": "87052972", "ifVlan": "141", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6855,7 +6791,6 @@ "ifLastChange": "87052972", "ifVlan": "141", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6961,7 +6896,6 @@ "ifLastChange": "87052972", "ifVlan": "141", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7067,7 +7001,6 @@ "ifLastChange": "87052972", "ifVlan": "141", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7173,7 +7106,6 @@ "ifLastChange": "87052972", "ifVlan": "141", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7279,7 +7211,6 @@ "ifLastChange": "87052972", "ifVlan": "141", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7385,7 +7316,6 @@ "ifLastChange": "87052972", "ifVlan": "141", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7491,7 +7421,6 @@ "ifLastChange": "87052972", "ifVlan": "141", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7597,7 +7526,6 @@ "ifLastChange": "87052972", "ifVlan": "141", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7703,7 +7631,6 @@ "ifLastChange": "87052972", "ifVlan": "141", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7809,7 +7736,6 @@ "ifLastChange": "87052972", "ifVlan": "141", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7915,7 +7841,6 @@ "ifLastChange": "87052972", "ifVlan": "141", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8021,7 +7946,6 @@ "ifLastChange": "87052972", "ifVlan": "141", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8127,7 +8051,6 @@ "ifLastChange": "87052972", "ifVlan": "141", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8233,7 +8156,6 @@ "ifLastChange": "87052972", "ifVlan": "141", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8339,7 +8261,6 @@ "ifLastChange": "87052972", "ifVlan": "141", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8445,7 +8366,6 @@ "ifLastChange": "87052972", "ifVlan": "141", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8551,7 +8471,6 @@ "ifLastChange": "87052972", "ifVlan": "141", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8657,7 +8576,6 @@ "ifLastChange": "87052972", "ifVlan": "141", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8763,7 +8681,6 @@ "ifLastChange": "87052972", "ifVlan": "141", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8869,7 +8786,6 @@ "ifLastChange": "87052972", "ifVlan": "141", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8975,7 +8891,6 @@ "ifLastChange": "87052972", "ifVlan": "141", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -9081,7 +8996,6 @@ "ifLastChange": "87052972", "ifVlan": "141", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -9187,7 +9101,6 @@ "ifLastChange": "87052972", "ifVlan": "141", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -9293,7 +9206,6 @@ "ifLastChange": "87052972", "ifVlan": "141", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -9399,7 +9311,6 @@ "ifLastChange": "87052972", "ifVlan": "141", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -9505,7 +9416,6 @@ "ifLastChange": "87052972", "ifVlan": "141", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -9611,7 +9521,6 @@ "ifLastChange": "87052972", "ifVlan": "141", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -9717,7 +9626,6 @@ "ifLastChange": "87052972", "ifVlan": "141", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -9823,7 +9731,6 @@ "ifLastChange": "87052972", "ifVlan": "141", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -9929,7 +9836,6 @@ "ifLastChange": "87052972", "ifVlan": "141", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -10035,7 +9941,6 @@ "ifLastChange": "87052972", "ifVlan": "141", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -10141,7 +10046,6 @@ "ifLastChange": "87052972", "ifVlan": "141", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -10247,7 +10151,6 @@ "ifLastChange": "87052972", "ifVlan": "141", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -10353,7 +10256,6 @@ "ifLastChange": "87052972", "ifVlan": "141", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -10459,7 +10361,6 @@ "ifLastChange": "87052972", "ifVlan": "141", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -10565,7 +10466,6 @@ "ifLastChange": "87052972", "ifVlan": "141", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -10671,7 +10571,6 @@ "ifLastChange": "87052972", "ifVlan": "141", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -10777,7 +10676,6 @@ "ifLastChange": "87052972", "ifVlan": "141", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -10883,7 +10781,6 @@ "ifLastChange": "87052972", "ifVlan": "141", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -10989,7 +10886,6 @@ "ifLastChange": "87052972", "ifVlan": "5", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -11095,7 +10991,6 @@ "ifLastChange": "87052972", "ifVlan": "50", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -11201,7 +11096,6 @@ "ifLastChange": "87052972", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -11307,7 +11201,6 @@ "ifLastChange": "87052972", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -11413,7 +11306,6 @@ "ifLastChange": "87052972", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -11519,7 +11411,6 @@ "ifLastChange": "87052972", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -11625,7 +11516,6 @@ "ifLastChange": "87052972", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -11731,7 +11621,6 @@ "ifLastChange": "87052972", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -11837,7 +11726,6 @@ "ifLastChange": "87052972", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -11943,7 +11831,6 @@ "ifLastChange": "87052972", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -12049,7 +11936,6 @@ "ifLastChange": "87052972", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", diff --git a/tests/data/dahua-nvr.json b/tests/data/dahua-nvr.json index 5ee5ff774c..28b5d9475b 100644 --- a/tests/data/dahua-nvr.json +++ b/tests/data/dahua-nvr.json @@ -67,7 +67,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -173,7 +172,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -283,7 +281,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -389,7 +386,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", diff --git a/tests/data/dell-rpdu.json b/tests/data/dell-rpdu.json index 9824c8f12d..ae2b857972 100644 --- a/tests/data/dell-rpdu.json +++ b/tests/data/dell-rpdu.json @@ -67,7 +67,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -173,7 +172,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -283,7 +281,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -389,7 +386,6 @@ "ifLastChange": "10", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", diff --git a/tests/data/dell-ups.json b/tests/data/dell-ups.json index 71f38ddd54..960dc6cfd4 100644 --- a/tests/data/dell-ups.json +++ b/tests/data/dell-ups.json @@ -41,7 +41,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -147,7 +146,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -257,7 +255,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -363,7 +360,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", diff --git a/tests/data/fortiweb.json b/tests/data/fortiweb.json index 8d9ae415a6..542376e04f 100644 --- a/tests/data/fortiweb.json +++ b/tests/data/fortiweb.json @@ -67,7 +67,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -173,7 +172,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -283,7 +281,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -389,7 +386,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", diff --git a/tests/data/fortiwlc.json b/tests/data/fortiwlc.json index 4cf28e1195..d759ab5f99 100644 --- a/tests/data/fortiwlc.json +++ b/tests/data/fortiwlc.json @@ -67,7 +67,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -177,7 +176,6 @@ "ifLastChange": "15551364", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", diff --git a/tests/data/heliosip.json b/tests/data/heliosip.json index c92dd9d610..94b8981058 100644 --- a/tests/data/heliosip.json +++ b/tests/data/heliosip.json @@ -67,7 +67,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -177,7 +176,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", diff --git a/tests/data/ios_6500.json b/tests/data/ios_6500.json new file mode 100644 index 0000000000..b76c9ae0e2 --- /dev/null +++ b/tests/data/ios_6500.json @@ -0,0 +1,63847 @@ +{ + "os": { + "discovery": { + "devices": [ + { + "sysName": "", + "sysObjectID": ".1.3.6.1.4.1.9.1.283", + "sysDescr": "Cisco IOS Software, s72033_rp Software (s72033_rp-IPSERVICESK9-M), Version 15.1(2)SY10, RELEASE SOFTWARE (fc4)\nTechnical Support: http://www.cisco.com/techsupport\r\nCopyright (c) 1986-2017 by Cisco Systems, Inc.\r\nCompiled Tue 21-Feb-17 02:00 by prod_rel_+", + "sysContact": null, + "version": null, + "hardware": "", + "features": null, + "location": null, + "os": "ios", + "type": "network", + "serial": null, + "icon": "cisco.svg" + } + ] + }, + "poller": { + "devices": [ + { + "sysName": "", + "sysObjectID": ".1.3.6.1.4.1.9.1.283", + "sysDescr": "Cisco IOS Software, s72033_rp Software (s72033_rp-IPSERVICESK9-M), Version 15.1(2)SY10, RELEASE SOFTWARE (fc4)\nTechnical Support: http://www.cisco.com/techsupport\r\nCopyright (c) 1986-2017 by Cisco Systems, Inc.\r\nCompiled Tue 21-Feb-17 02:00 by prod_rel_+", + "sysContact": "", + "version": "15.1(2)SY10", + "hardware": "cat6509", + "features": "IPSERVICESK9", + "location": "", + "os": "ios", + "type": "network", + "serial": null, + "icon": "cisco.svg" + } + ] + } + }, + "ports": { + "discovery": { + "ports": [ + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Vlan1", + "ifName": "Vl1", + "portName": null, + "ifIndex": "251", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Null0", + "ifName": "Nu0", + "portName": null, + "ifIndex": "253", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Vlan99", + "ifName": "Vl99", + "portName": null, + "ifIndex": "258", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Control Plane Interface", + "ifName": "CPP", + "portName": null, + "ifIndex": "259", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Port-channel100", + "ifName": "Po100", + "portName": null, + "ifIndex": "270", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Port-channel200", + "ifName": "Po200", + "portName": null, + "ifIndex": "273", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Port-channel2", + "ifName": "Po2", + "portName": null, + "ifIndex": "274", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Port-channel3", + "ifName": "Po3", + "portName": null, + "ifIndex": "277", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Port-channel22", + "ifName": "Po22", + "portName": null, + "ifIndex": "278", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Port-channel23", + "ifName": "Po23", + "portName": null, + "ifIndex": "280", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Port-channel4", + "ifName": "Po4", + "portName": null, + "ifIndex": "281", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Port-channel5", + "ifName": "Po5", + "portName": null, + "ifIndex": "282", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Port-channel24", + "ifName": "Po24", + "portName": null, + "ifIndex": "283", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Port-channel25", + "ifName": "Po25", + "portName": null, + "ifIndex": "284", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Port-channel6", + "ifName": "Po6", + "portName": null, + "ifIndex": "285", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Port-channel26", + "ifName": "Po26", + "portName": null, + "ifIndex": "286", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Port-channel7", + "ifName": "Po7", + "portName": null, + "ifIndex": "287", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Port-channel27", + "ifName": "Po27", + "portName": null, + "ifIndex": "288", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Port-channel51", + "ifName": "Po51", + "portName": null, + "ifIndex": "395", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Port-channel40", + "ifName": "Po40", + "portName": null, + "ifIndex": "396", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Vlan30", + "ifName": "Vl30", + "portName": null, + "ifIndex": "398", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Vlan20", + "ifName": "Vl20", + "portName": null, + "ifIndex": "399", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Loopback0", + "ifName": "Lo0", + "portName": null, + "ifIndex": "415", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Vlan40", + "ifName": "Vl40", + "portName": null, + "ifIndex": "417", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Vlan50", + "ifName": "Vl50", + "portName": null, + "ifIndex": "418", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Port-channel52", + "ifName": "Po52", + "portName": null, + "ifIndex": "464", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Port-channel53", + "ifName": "Po53", + "portName": null, + "ifIndex": "465", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Port-channel54", + "ifName": "Po54", + "portName": null, + "ifIndex": "477", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Port-channel60", + "ifName": "Po60", + "portName": null, + "ifIndex": "487", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Port-channel55", + "ifName": "Po55", + "portName": null, + "ifIndex": "494", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Port-channel56", + "ifName": "Po56", + "portName": null, + "ifIndex": "495", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Port-channel31", + "ifName": "Po31", + "portName": null, + "ifIndex": "496", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Port-channel32", + "ifName": "Po32", + "portName": null, + "ifIndex": "497", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Vlan400", + "ifName": "Vl400", + "portName": null, + "ifIndex": "506", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Vlan402", + "ifName": "Vl402", + "portName": null, + "ifIndex": "509", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Port-channel57", + "ifName": "Po57", + "portName": null, + "ifIndex": "514", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Port-channel58", + "ifName": "Po58", + "portName": null, + "ifIndex": "515", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Port-channel70", + "ifName": "Po70", + "portName": null, + "ifIndex": "518", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Port-channel1", + "ifName": "Po1", + "portName": null, + "ifIndex": "519", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Port-channel71", + "ifName": "Po71", + "portName": null, + "ifIndex": "520", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Vlan409", + "ifName": "Vl409", + "portName": null, + "ifIndex": "535", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Vlan410", + "ifName": "Vl410", + "portName": null, + "ifIndex": "536", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Vlan412", + "ifName": "Vl412", + "portName": null, + "ifIndex": "538", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Vlan416", + "ifName": "Vl416", + "portName": null, + "ifIndex": "542", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Vlan415", + "ifName": "Vl415", + "portName": null, + "ifIndex": "543", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Vlan420", + "ifName": "Vl420", + "portName": null, + "ifIndex": "544", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "TenGigabitEthernet1/1", + "ifName": "Te1/1", + "portName": null, + "ifIndex": "547", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "TenGigabitEthernet1/2", + "ifName": "Te1/2", + "portName": null, + "ifIndex": "548", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "TenGigabitEthernet1/3", + "ifName": "Te1/3", + "portName": null, + "ifIndex": "549", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "TenGigabitEthernet1/4", + "ifName": "Te1/4", + "portName": null, + "ifIndex": "550", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "TenGigabitEthernet1/5", + "ifName": "Te1/5", + "portName": null, + "ifIndex": "551", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "TenGigabitEthernet1/6", + "ifName": "Te1/6", + "portName": null, + "ifIndex": "552", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "TenGigabitEthernet1/7", + "ifName": "Te1/7", + "portName": null, + "ifIndex": "553", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "TenGigabitEthernet1/8", + "ifName": "Te1/8", + "portName": null, + "ifIndex": "554", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet3/1", + "ifName": "Gi3/1", + "portName": null, + "ifIndex": "555", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet3/2", + "ifName": "Gi3/2", + "portName": null, + "ifIndex": "556", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet3/3", + "ifName": "Gi3/3", + "portName": null, + "ifIndex": "557", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet3/4", + "ifName": "Gi3/4", + "portName": null, + "ifIndex": "558", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet3/5", + "ifName": "Gi3/5", + "portName": null, + "ifIndex": "559", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet3/6", + "ifName": "Gi3/6", + "portName": null, + "ifIndex": "560", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet3/7", + "ifName": "Gi3/7", + "portName": null, + "ifIndex": "561", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet3/8", + "ifName": "Gi3/8", + "portName": null, + "ifIndex": "562", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet3/9", + "ifName": "Gi3/9", + "portName": null, + "ifIndex": "563", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet3/10", + "ifName": "Gi3/10", + "portName": null, + "ifIndex": "564", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet3/11", + "ifName": "Gi3/11", + "portName": null, + "ifIndex": "565", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet3/12", + "ifName": "Gi3/12", + "portName": null, + "ifIndex": "566", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet3/13", + "ifName": "Gi3/13", + "portName": null, + "ifIndex": "567", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet3/14", + "ifName": "Gi3/14", + "portName": null, + "ifIndex": "568", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet3/15", + "ifName": "Gi3/15", + "portName": null, + "ifIndex": "569", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet3/16", + "ifName": "Gi3/16", + "portName": null, + "ifIndex": "570", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet3/17", + "ifName": "Gi3/17", + "portName": null, + "ifIndex": "571", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet3/18", + "ifName": "Gi3/18", + "portName": null, + "ifIndex": "572", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet3/19", + "ifName": "Gi3/19", + "portName": null, + "ifIndex": "573", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet3/20", + "ifName": "Gi3/20", + "portName": null, + "ifIndex": "574", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet3/21", + "ifName": "Gi3/21", + "portName": null, + "ifIndex": "575", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet3/22", + "ifName": "Gi3/22", + "portName": null, + "ifIndex": "576", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet3/23", + "ifName": "Gi3/23", + "portName": null, + "ifIndex": "577", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet3/24", + "ifName": "Gi3/24", + "portName": null, + "ifIndex": "578", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet3/25", + "ifName": "Gi3/25", + "portName": null, + "ifIndex": "579", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet3/26", + "ifName": "Gi3/26", + "portName": null, + "ifIndex": "580", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet3/27", + "ifName": "Gi3/27", + "portName": null, + "ifIndex": "581", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet3/28", + "ifName": "Gi3/28", + "portName": null, + "ifIndex": "582", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet3/29", + "ifName": "Gi3/29", + "portName": null, + "ifIndex": "583", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet3/30", + "ifName": "Gi3/30", + "portName": null, + "ifIndex": "584", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet3/31", + "ifName": "Gi3/31", + "portName": null, + "ifIndex": "585", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet3/32", + "ifName": "Gi3/32", + "portName": null, + "ifIndex": "586", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet3/33", + "ifName": "Gi3/33", + "portName": null, + "ifIndex": "587", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet3/34", + "ifName": "Gi3/34", + "portName": null, + "ifIndex": "588", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet3/35", + "ifName": "Gi3/35", + "portName": null, + "ifIndex": "589", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet3/36", + "ifName": "Gi3/36", + "portName": null, + "ifIndex": "590", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet3/37", + "ifName": "Gi3/37", + "portName": null, + "ifIndex": "591", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet3/38", + "ifName": "Gi3/38", + "portName": null, + "ifIndex": "592", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet3/39", + "ifName": "Gi3/39", + "portName": null, + "ifIndex": "593", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet3/40", + "ifName": "Gi3/40", + "portName": null, + "ifIndex": "594", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet3/41", + "ifName": "Gi3/41", + "portName": null, + "ifIndex": "595", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet3/42", + "ifName": "Gi3/42", + "portName": null, + "ifIndex": "596", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet3/43", + "ifName": "Gi3/43", + "portName": null, + "ifIndex": "597", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet3/44", + "ifName": "Gi3/44", + "portName": null, + "ifIndex": "598", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet3/45", + "ifName": "Gi3/45", + "portName": null, + "ifIndex": "599", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet3/46", + "ifName": "Gi3/46", + "portName": null, + "ifIndex": "600", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet3/47", + "ifName": "Gi3/47", + "portName": null, + "ifIndex": "601", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet3/48", + "ifName": "Gi3/48", + "portName": null, + "ifIndex": "602", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet4/1", + "ifName": "Gi4/1", + "portName": null, + "ifIndex": "603", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet4/2", + "ifName": "Gi4/2", + "portName": null, + "ifIndex": "604", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet4/3", + "ifName": "Gi4/3", + "portName": null, + "ifIndex": "605", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet4/4", + "ifName": "Gi4/4", + "portName": null, + "ifIndex": "606", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet4/5", + "ifName": "Gi4/5", + "portName": null, + "ifIndex": "607", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet4/6", + "ifName": "Gi4/6", + "portName": null, + "ifIndex": "608", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet4/7", + "ifName": "Gi4/7", + "portName": null, + "ifIndex": "609", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet4/8", + "ifName": "Gi4/8", + "portName": null, + "ifIndex": "610", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet4/9", + "ifName": "Gi4/9", + "portName": null, + "ifIndex": "611", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet4/10", + "ifName": "Gi4/10", + "portName": null, + "ifIndex": "612", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet4/11", + "ifName": "Gi4/11", + "portName": null, + "ifIndex": "613", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet4/12", + "ifName": "Gi4/12", + "portName": null, + "ifIndex": "614", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet4/13", + "ifName": "Gi4/13", + "portName": null, + "ifIndex": "615", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet4/14", + "ifName": "Gi4/14", + "portName": null, + "ifIndex": "616", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet4/15", + "ifName": "Gi4/15", + "portName": null, + "ifIndex": "617", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet4/16", + "ifName": "Gi4/16", + "portName": null, + "ifIndex": "618", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet4/17", + "ifName": "Gi4/17", + "portName": null, + "ifIndex": "619", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet4/18", + "ifName": "Gi4/18", + "portName": null, + "ifIndex": "620", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet4/19", + "ifName": "Gi4/19", + "portName": null, + "ifIndex": "621", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet4/20", + "ifName": "Gi4/20", + "portName": null, + "ifIndex": "622", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet4/21", + "ifName": "Gi4/21", + "portName": null, + "ifIndex": "623", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet4/22", + "ifName": "Gi4/22", + "portName": null, + "ifIndex": "624", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet4/23", + "ifName": "Gi4/23", + "portName": null, + "ifIndex": "625", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet4/24", + "ifName": "Gi4/24", + "portName": null, + "ifIndex": "626", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet4/25", + "ifName": "Gi4/25", + "portName": null, + "ifIndex": "627", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet4/26", + "ifName": "Gi4/26", + "portName": null, + "ifIndex": "628", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet4/27", + "ifName": "Gi4/27", + "portName": null, + "ifIndex": "629", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet4/28", + "ifName": "Gi4/28", + "portName": null, + "ifIndex": "630", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet4/29", + "ifName": "Gi4/29", + "portName": null, + "ifIndex": "631", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet4/30", + "ifName": "Gi4/30", + "portName": null, + "ifIndex": "632", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet4/31", + "ifName": "Gi4/31", + "portName": null, + "ifIndex": "633", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet4/32", + "ifName": "Gi4/32", + "portName": null, + "ifIndex": "634", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet4/33", + "ifName": "Gi4/33", + "portName": null, + "ifIndex": "635", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet4/34", + "ifName": "Gi4/34", + "portName": null, + "ifIndex": "636", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet4/35", + "ifName": "Gi4/35", + "portName": null, + "ifIndex": "637", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet4/36", + "ifName": "Gi4/36", + "portName": null, + "ifIndex": "638", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet4/37", + "ifName": "Gi4/37", + "portName": null, + "ifIndex": "639", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet4/38", + "ifName": "Gi4/38", + "portName": null, + "ifIndex": "640", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet4/39", + "ifName": "Gi4/39", + "portName": null, + "ifIndex": "641", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet4/40", + "ifName": "Gi4/40", + "portName": null, + "ifIndex": "642", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet4/41", + "ifName": "Gi4/41", + "portName": null, + "ifIndex": "643", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet4/42", + "ifName": "Gi4/42", + "portName": null, + "ifIndex": "644", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet4/43", + "ifName": "Gi4/43", + "portName": null, + "ifIndex": "645", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet4/44", + "ifName": "Gi4/44", + "portName": null, + "ifIndex": "646", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet4/45", + "ifName": "Gi4/45", + "portName": null, + "ifIndex": "647", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet4/46", + "ifName": "Gi4/46", + "portName": null, + "ifIndex": "648", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet4/47", + "ifName": "Gi4/47", + "portName": null, + "ifIndex": "649", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet4/48", + "ifName": "Gi4/48", + "portName": null, + "ifIndex": "650", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet5/1", + "ifName": "Gi5/1", + "portName": null, + "ifIndex": "651", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet5/2", + "ifName": "Gi5/2", + "portName": null, + "ifIndex": "652", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet5/3", + "ifName": "Gi5/3", + "portName": null, + "ifIndex": "653", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "TenGigabitEthernet5/4", + "ifName": "Te5/4", + "portName": null, + "ifIndex": "654", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "TenGigabitEthernet5/5", + "ifName": "Te5/5", + "portName": null, + "ifIndex": "655", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet6/1", + "ifName": "Gi6/1", + "portName": null, + "ifIndex": "656", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet6/2", + "ifName": "Gi6/2", + "portName": null, + "ifIndex": "657", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet6/3", + "ifName": "Gi6/3", + "portName": null, + "ifIndex": "658", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet6/4", + "ifName": "Gi6/4", + "portName": null, + "ifIndex": "659", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet6/5", + "ifName": "Gi6/5", + "portName": null, + "ifIndex": "660", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet6/6", + "ifName": "Gi6/6", + "portName": null, + "ifIndex": "661", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet6/7", + "ifName": "Gi6/7", + "portName": null, + "ifIndex": "662", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet6/8", + "ifName": "Gi6/8", + "portName": null, + "ifIndex": "663", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet6/9", + "ifName": "Gi6/9", + "portName": null, + "ifIndex": "664", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet6/10", + "ifName": "Gi6/10", + "portName": null, + "ifIndex": "665", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet6/11", + "ifName": "Gi6/11", + "portName": null, + "ifIndex": "666", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet6/12", + "ifName": "Gi6/12", + "portName": null, + "ifIndex": "667", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet6/13", + "ifName": "Gi6/13", + "portName": null, + "ifIndex": "668", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet6/14", + "ifName": "Gi6/14", + "portName": null, + "ifIndex": "669", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet6/15", + "ifName": "Gi6/15", + "portName": null, + "ifIndex": "670", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet6/16", + "ifName": "Gi6/16", + "portName": null, + "ifIndex": "671", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet6/17", + "ifName": "Gi6/17", + "portName": null, + "ifIndex": "672", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet6/18", + "ifName": "Gi6/18", + "portName": null, + "ifIndex": "673", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet6/19", + "ifName": "Gi6/19", + "portName": null, + "ifIndex": "674", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet6/20", + "ifName": "Gi6/20", + "portName": null, + "ifIndex": "675", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet6/21", + "ifName": "Gi6/21", + "portName": null, + "ifIndex": "676", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet6/22", + "ifName": "Gi6/22", + "portName": null, + "ifIndex": "677", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet6/23", + "ifName": "Gi6/23", + "portName": null, + "ifIndex": "678", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet6/24", + "ifName": "Gi6/24", + "portName": null, + "ifIndex": "679", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet6/25", + "ifName": "Gi6/25", + "portName": null, + "ifIndex": "680", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet6/26", + "ifName": "Gi6/26", + "portName": null, + "ifIndex": "681", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet6/27", + "ifName": "Gi6/27", + "portName": null, + "ifIndex": "682", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet6/28", + "ifName": "Gi6/28", + "portName": null, + "ifIndex": "683", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet6/29", + "ifName": "Gi6/29", + "portName": null, + "ifIndex": "684", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet6/30", + "ifName": "Gi6/30", + "portName": null, + "ifIndex": "685", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet6/31", + "ifName": "Gi6/31", + "portName": null, + "ifIndex": "686", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet6/32", + "ifName": "Gi6/32", + "portName": null, + "ifIndex": "687", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet6/33", + "ifName": "Gi6/33", + "portName": null, + "ifIndex": "688", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet6/34", + "ifName": "Gi6/34", + "portName": null, + "ifIndex": "689", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet6/35", + "ifName": "Gi6/35", + "portName": null, + "ifIndex": "690", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet6/36", + "ifName": "Gi6/36", + "portName": null, + "ifIndex": "691", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet6/37", + "ifName": "Gi6/37", + "portName": null, + "ifIndex": "692", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet6/38", + "ifName": "Gi6/38", + "portName": null, + "ifIndex": "693", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet6/39", + "ifName": "Gi6/39", + "portName": null, + "ifIndex": "694", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet6/40", + "ifName": "Gi6/40", + "portName": null, + "ifIndex": "695", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet6/41", + "ifName": "Gi6/41", + "portName": null, + "ifIndex": "696", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet6/42", + "ifName": "Gi6/42", + "portName": null, + "ifIndex": "697", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet6/43", + "ifName": "Gi6/43", + "portName": null, + "ifIndex": "698", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet6/44", + "ifName": "Gi6/44", + "portName": null, + "ifIndex": "699", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet6/45", + "ifName": "Gi6/45", + "portName": null, + "ifIndex": "700", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet6/46", + "ifName": "Gi6/46", + "portName": null, + "ifIndex": "701", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet6/47", + "ifName": "Gi6/47", + "portName": null, + "ifIndex": "702", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet6/48", + "ifName": "Gi6/48", + "portName": null, + "ifIndex": "703", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet7/1", + "ifName": "Gi7/1", + "portName": null, + "ifIndex": "704", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet7/2", + "ifName": "Gi7/2", + "portName": null, + "ifIndex": "705", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet7/3", + "ifName": "Gi7/3", + "portName": null, + "ifIndex": "706", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet7/4", + "ifName": "Gi7/4", + "portName": null, + "ifIndex": "707", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet7/5", + "ifName": "Gi7/5", + "portName": null, + "ifIndex": "708", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet7/6", + "ifName": "Gi7/6", + "portName": null, + "ifIndex": "709", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet7/7", + "ifName": "Gi7/7", + "portName": null, + "ifIndex": "710", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet7/8", + "ifName": "Gi7/8", + "portName": null, + "ifIndex": "711", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet7/9", + "ifName": "Gi7/9", + "portName": null, + "ifIndex": "712", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet7/10", + "ifName": "Gi7/10", + "portName": null, + "ifIndex": "713", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet7/11", + "ifName": "Gi7/11", + "portName": null, + "ifIndex": "714", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet7/12", + "ifName": "Gi7/12", + "portName": null, + "ifIndex": "715", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet7/13", + "ifName": "Gi7/13", + "portName": null, + "ifIndex": "716", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet7/14", + "ifName": "Gi7/14", + "portName": null, + "ifIndex": "717", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet7/15", + "ifName": "Gi7/15", + "portName": null, + "ifIndex": "718", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet7/16", + "ifName": "Gi7/16", + "portName": null, + "ifIndex": "719", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet7/17", + "ifName": "Gi7/17", + "portName": null, + "ifIndex": "720", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet7/18", + "ifName": "Gi7/18", + "portName": null, + "ifIndex": "721", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet7/19", + "ifName": "Gi7/19", + "portName": null, + "ifIndex": "722", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet7/20", + "ifName": "Gi7/20", + "portName": null, + "ifIndex": "723", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet7/21", + "ifName": "Gi7/21", + "portName": null, + "ifIndex": "724", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet7/22", + "ifName": "Gi7/22", + "portName": null, + "ifIndex": "725", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet7/23", + "ifName": "Gi7/23", + "portName": null, + "ifIndex": "726", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet7/24", + "ifName": "Gi7/24", + "portName": null, + "ifIndex": "727", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet7/25", + "ifName": "Gi7/25", + "portName": null, + "ifIndex": "728", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet7/26", + "ifName": "Gi7/26", + "portName": null, + "ifIndex": "729", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet7/27", + "ifName": "Gi7/27", + "portName": null, + "ifIndex": "730", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet7/28", + "ifName": "Gi7/28", + "portName": null, + "ifIndex": "731", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet7/29", + "ifName": "Gi7/29", + "portName": null, + "ifIndex": "732", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet7/30", + "ifName": "Gi7/30", + "portName": null, + "ifIndex": "733", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet7/31", + "ifName": "Gi7/31", + "portName": null, + "ifIndex": "734", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet7/32", + "ifName": "Gi7/32", + "portName": null, + "ifIndex": "735", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet7/33", + "ifName": "Gi7/33", + "portName": null, + "ifIndex": "736", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet7/34", + "ifName": "Gi7/34", + "portName": null, + "ifIndex": "737", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet7/35", + "ifName": "Gi7/35", + "portName": null, + "ifIndex": "738", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet7/36", + "ifName": "Gi7/36", + "portName": null, + "ifIndex": "739", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet7/37", + "ifName": "Gi7/37", + "portName": null, + "ifIndex": "740", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet7/38", + "ifName": "Gi7/38", + "portName": null, + "ifIndex": "741", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet7/39", + "ifName": "Gi7/39", + "portName": null, + "ifIndex": "742", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet7/40", + "ifName": "Gi7/40", + "portName": null, + "ifIndex": "743", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet7/41", + "ifName": "Gi7/41", + "portName": null, + "ifIndex": "744", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet7/42", + "ifName": "Gi7/42", + "portName": null, + "ifIndex": "745", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet7/43", + "ifName": "Gi7/43", + "portName": null, + "ifIndex": "746", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet7/44", + "ifName": "Gi7/44", + "portName": null, + "ifIndex": "747", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet7/45", + "ifName": "Gi7/45", + "portName": null, + "ifIndex": "748", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet7/46", + "ifName": "Gi7/46", + "portName": null, + "ifIndex": "749", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet7/47", + "ifName": "Gi7/47", + "portName": null, + "ifIndex": "750", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "GigabitEthernet7/48", + "ifName": "Gi7/48", + "portName": null, + "ifIndex": "751", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Vlan419", + "ifName": "Vl419", + "portName": null, + "ifIndex": "769", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Vlan422", + "ifName": "Vl422", + "portName": null, + "ifIndex": "770", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Vlan430", + "ifName": "Vl430", + "portName": null, + "ifIndex": "774", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Vlan431", + "ifName": "Vl431", + "portName": null, + "ifIndex": "775", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Vlan432", + "ifName": "Vl432", + "portName": null, + "ifIndex": "776", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Vlan433", + "ifName": "Vl433", + "portName": null, + "ifIndex": "785", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Vlan434", + "ifName": "Vl434", + "portName": null, + "ifIndex": "792", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Vlan435", + "ifName": "Vl435", + "portName": null, + "ifIndex": "793", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Vlan436", + "ifName": "Vl436", + "portName": null, + "ifIndex": "794", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Vlan428", + "ifName": "Vl428", + "portName": null, + "ifIndex": "801", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Vlan441", + "ifName": "Vl441", + "portName": null, + "ifIndex": "802", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Vlan442", + "ifName": "Vl442", + "portName": null, + "ifIndex": "803", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Vlan437", + "ifName": "Vl437", + "portName": null, + "ifIndex": "804", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Vlan438", + "ifName": "Vl438", + "portName": null, + "ifIndex": "805", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Vlan439", + "ifName": "Vl439", + "portName": null, + "ifIndex": "806", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Vlan440", + "ifName": "Vl440", + "portName": null, + "ifIndex": "807", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Vlan443", + "ifName": "Vl443", + "portName": null, + "ifIndex": "810", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Vlan444", + "ifName": "Vl444", + "portName": null, + "ifIndex": "811", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Vlan446", + "ifName": "Vl446", + "portName": null, + "ifIndex": "814", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Vlan445", + "ifName": "Vl445", + "portName": null, + "ifIndex": "815", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Vlan448", + "ifName": "Vl448", + "portName": null, + "ifIndex": "818", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Vlan456", + "ifName": "Vl456", + "portName": null, + "ifIndex": "834", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Vlan457", + "ifName": "Vl457", + "portName": null, + "ifIndex": "835", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Vlan458", + "ifName": "Vl458", + "portName": null, + "ifIndex": "836", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Vlan462", + "ifName": "Vl462", + "portName": null, + "ifIndex": "838", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Vlan464", + "ifName": "Vl464", + "portName": null, + "ifIndex": "848", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Vlan465", + "ifName": "Vl465", + "portName": null, + "ifIndex": "849", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Vlan467", + "ifName": "Vl467", + "portName": null, + "ifIndex": "850", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Vlan480", + "ifName": "Vl480", + "portName": null, + "ifIndex": "854", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Vlan483", + "ifName": "Vl483", + "portName": null, + "ifIndex": "871", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Vlan485", + "ifName": "Vl485", + "portName": null, + "ifIndex": "872", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Vlan475", + "ifName": "Vl475", + "portName": null, + "ifIndex": "874", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Vlan474", + "ifName": "Vl474", + "portName": null, + "ifIndex": "875", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Vlan472", + "ifName": "Vl472", + "portName": null, + "ifIndex": "876", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Vlan473", + "ifName": "Vl473", + "portName": null, + "ifIndex": "877", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Vlan486", + "ifName": "Vl486", + "portName": null, + "ifIndex": "883", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Vlan484", + "ifName": "Vl484", + "portName": null, + "ifIndex": "885", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Vlan603", + "ifName": "Vl603", + "portName": null, + "ifIndex": "907", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Vlan604", + "ifName": "Vl604", + "portName": null, + "ifIndex": "908", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Vlan700", + "ifName": "Vl700", + "portName": null, + "ifIndex": "909", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Vlan494", + "ifName": "Vl494", + "portName": null, + "ifIndex": "919", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Vlan495", + "ifName": "Vl495", + "portName": null, + "ifIndex": "920", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Vlan493", + "ifName": "Vl493", + "portName": null, + "ifIndex": "921", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Vlan497", + "ifName": "Vl497", + "portName": null, + "ifIndex": "925", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Vlan498", + "ifName": "Vl498", + "portName": null, + "ifIndex": "926", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Vlan496", + "ifName": "Vl496", + "portName": null, + "ifIndex": "927", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Vlan610", + "ifName": "Vl610", + "portName": null, + "ifIndex": "938", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Vlan611", + "ifName": "Vl611", + "portName": null, + "ifIndex": "939", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Vlan250", + "ifName": "Vl250", + "portName": null, + "ifIndex": "940", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Vlan251", + "ifName": "Vl251", + "portName": null, + "ifIndex": "941", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Vlan425", + "ifName": "Vl425", + "portName": null, + "ifIndex": "947", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "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": "Vlan424", + "ifName": "Vl424", + "portName": null, + "ifIndex": "948", + "ifSpeed": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": null, + "ifAlias": "", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": "0", + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": "0", + "disabled": "0", + "detailed": "0", + "deleted": "0", + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + } + ] + }, + "poller": { + "ports": [ + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Vlan1", + "ifName": "Vl1", + "portName": null, + "ifIndex": "251", + "ifSpeed": "1000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Vlan1", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "8757", + "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": "Null0", + "ifName": "Nu0", + "portName": null, + "ifIndex": "253", + "ifSpeed": "40000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "40000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "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": "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": "Vlan99", + "ifName": "Vl99", + "portName": null, + "ifIndex": "258", + "ifSpeed": "1000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Vlan99", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "15011", + "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": "721852539", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "724038539", + "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": "79866757027", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "224198519757", + "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": "18421025", + "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": "Control Plane Interface", + "ifName": "CPP", + "portName": null, + "ifIndex": "259", + "ifSpeed": "40000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "40000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "0", + "ifType": "other", + "ifAlias": "Control Plane Interface", + "ifPhysAddress": "000000000000", + "ifHardType": null, + "ifLastChange": "10021", + "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": "Port-channel100", + "ifName": "Po100", + "portName": null, + "ifIndex": "270", + "ifSpeed": "100000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Port-channel100", + "ifPhysAddress": "000000000000", + "ifHardType": null, + "ifLastChange": "4033", + "ifVlan": "0", + "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": "Port-channel200", + "ifName": "Po200", + "portName": null, + "ifIndex": "273", + "ifSpeed": "100000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Port-channel200", + "ifPhysAddress": "000000000000", + "ifHardType": null, + "ifLastChange": "9746", + "ifVlan": "30", + "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": "Port-channel2", + "ifName": "Po2", + "portName": null, + "ifIndex": "274", + "ifSpeed": "100000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Port-channel2", + "ifPhysAddress": "000000000000", + "ifHardType": null, + "ifLastChange": "9570", + "ifVlan": "0", + "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": "Port-channel3", + "ifName": "Po3", + "portName": null, + "ifIndex": "277", + "ifSpeed": "100000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Port-channel3", + "ifPhysAddress": "000000000000", + "ifHardType": null, + "ifLastChange": "9571", + "ifVlan": "0", + "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": "Port-channel22", + "ifName": "Po22", + "portName": null, + "ifIndex": "278", + "ifSpeed": "100000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Port-channel22", + "ifPhysAddress": "000000000000", + "ifHardType": null, + "ifLastChange": "9599", + "ifVlan": "0", + "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": "Port-channel23", + "ifName": "Po23", + "portName": null, + "ifIndex": "280", + "ifSpeed": "100000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Port-channel23", + "ifPhysAddress": "000000000000", + "ifHardType": null, + "ifLastChange": "9599", + "ifVlan": "0", + "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": "Port-channel4", + "ifName": "Po4", + "portName": null, + "ifIndex": "281", + "ifSpeed": "100000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Port-channel4", + "ifPhysAddress": "000000000000", + "ifHardType": null, + "ifLastChange": "9571", + "ifVlan": "0", + "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": "Port-channel5", + "ifName": "Po5", + "portName": null, + "ifIndex": "282", + "ifSpeed": "100000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Port-channel5", + "ifPhysAddress": "000000000000", + "ifHardType": null, + "ifLastChange": "9571", + "ifVlan": "0", + "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": "Port-channel24", + "ifName": "Po24", + "portName": null, + "ifIndex": "283", + "ifSpeed": "100000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Port-channel24", + "ifPhysAddress": "000000000000", + "ifHardType": null, + "ifLastChange": "9626", + "ifVlan": "0", + "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": "Port-channel25", + "ifName": "Po25", + "portName": null, + "ifIndex": "284", + "ifSpeed": "100000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Port-channel25", + "ifPhysAddress": "000000000000", + "ifHardType": null, + "ifLastChange": "9626", + "ifVlan": "0", + "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": "Port-channel6", + "ifName": "Po6", + "portName": null, + "ifIndex": "285", + "ifSpeed": "100000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Port-channel6", + "ifPhysAddress": "000000000000", + "ifHardType": null, + "ifLastChange": "9598", + "ifVlan": "0", + "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": "Port-channel26", + "ifName": "Po26", + "portName": null, + "ifIndex": "286", + "ifSpeed": "100000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Port-channel26", + "ifPhysAddress": "000000000000", + "ifHardType": null, + "ifLastChange": "9626", + "ifVlan": "0", + "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": "Port-channel7", + "ifName": "Po7", + "portName": null, + "ifIndex": "287", + "ifSpeed": "100000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Port-channel7", + "ifPhysAddress": "000000000000", + "ifHardType": null, + "ifLastChange": "9598", + "ifVlan": "0", + "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": "Port-channel27", + "ifName": "Po27", + "portName": null, + "ifIndex": "288", + "ifSpeed": "100000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Port-channel27", + "ifPhysAddress": "000000000000", + "ifHardType": null, + "ifLastChange": "9627", + "ifVlan": "30", + "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": "Port-channel51", + "ifName": "Po51", + "portName": null, + "ifIndex": "395", + "ifSpeed": "100000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Port-channel51", + "ifPhysAddress": "000000000000", + "ifHardType": null, + "ifLastChange": "9669", + "ifVlan": "30", + "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": "Port-channel40", + "ifName": "Po40", + "portName": null, + "ifIndex": "396", + "ifSpeed": "100000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Port-channel40", + "ifPhysAddress": "000000000000", + "ifHardType": null, + "ifLastChange": "9668", + "ifVlan": "0", + "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": "Vlan30", + "ifName": "Vl30", + "portName": null, + "ifIndex": "398", + "ifSpeed": "1000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Vlan30", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "15010", + "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": "244926471500", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "244945539009", + "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": "65351533841900", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "64235479732844", + "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": "1476190", + "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": "2097260972", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "0", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "377533", + "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": "Vlan20", + "ifName": "Vl20", + "portName": null, + "ifIndex": "399", + "ifSpeed": "1000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Vlan20", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "15010", + "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": "10982784", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "18754865", + "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": "35523975321", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "14932372841", + "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": "1258482", + "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": "309861012", + "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": "Loopback0", + "ifName": "Lo0", + "portName": null, + "ifIndex": "415", + "ifSpeed": "8000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "8000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1514", + "ifType": "softwareLoopback", + "ifAlias": "Loopback0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": "3498", + "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": "Vlan40", + "ifName": "Vl40", + "portName": null, + "ifIndex": "417", + "ifSpeed": "1000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Vlan40", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "15010", + "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": "6104", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "7776223", + "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": "4083167834", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "482113264", + "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": "54566", + "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": "51749331", + "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": "Vlan50", + "ifName": "Vl50", + "portName": null, + "ifIndex": "418", + "ifSpeed": "1000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Vlan50", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "15011", + "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": "65063415312", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "65072067734", + "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": "91163522906612", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "90883468223551", + "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": "28708", + "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": "317803436", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "0", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "222", + "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": "Port-channel52", + "ifName": "Po52", + "portName": null, + "ifIndex": "464", + "ifSpeed": "100000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "ieee8023adLag", + "ifAlias": "Port-channel52", + "ifPhysAddress": "8843e1d6da18", + "ifHardType": null, + "ifLastChange": "9669", + "ifVlan": "0", + "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": "Port-channel53", + "ifName": "Po53", + "portName": null, + "ifIndex": "465", + "ifSpeed": "100000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Port-channel53", + "ifPhysAddress": "000000000000", + "ifHardType": null, + "ifLastChange": "9669", + "ifVlan": "0", + "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": "Port-channel54", + "ifName": "Po54", + "portName": null, + "ifIndex": "477", + "ifSpeed": "100000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Port-channel54", + "ifPhysAddress": "0021d872228b", + "ifHardType": null, + "ifLastChange": "9690", + "ifVlan": "0", + "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": "Port-channel60", + "ifName": "Po60", + "portName": null, + "ifIndex": "487", + "ifSpeed": "20000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "20000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "ieee8023adLag", + "ifAlias": "Port-channel60", + "ifPhysAddress": "fc99473655d8", + "ifHardType": null, + "ifLastChange": "28956", + "ifVlan": "1", + "ifTrunk": "dot1Q", + "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": "2519766283733", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "1273322771005", + "ifOutUcastPkts_prev": "0", + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": "3456458", + "ifInErrors_prev": "0", + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": "0", + "ifOutErrors_prev": "0", + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": "3227501827441324", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "924050921601443", + "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": "3702144581", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "2601637894", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "1450238238", + "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": "Port-channel55", + "ifName": "Po55", + "portName": null, + "ifIndex": "494", + "ifSpeed": "100000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Port-channel55", + "ifPhysAddress": "000000000000", + "ifHardType": null, + "ifLastChange": "9703", + "ifVlan": "0", + "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": "Port-channel56", + "ifName": "Po56", + "portName": null, + "ifIndex": "495", + "ifSpeed": "100000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Port-channel56", + "ifPhysAddress": "000000000000", + "ifHardType": null, + "ifLastChange": "9704", + "ifVlan": "0", + "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": "Port-channel31", + "ifName": "Po31", + "portName": null, + "ifIndex": "496", + "ifSpeed": "100000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Port-channel31", + "ifPhysAddress": "000000000000", + "ifHardType": null, + "ifLastChange": "9627", + "ifVlan": "30", + "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": "Port-channel32", + "ifName": "Po32", + "portName": null, + "ifIndex": "497", + "ifSpeed": "3000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "3000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "ieee8023adLag", + "ifAlias": "Port-channel32", + "ifPhysAddress": "0021d8be116e", + "ifHardType": null, + "ifLastChange": "238356368", + "ifVlan": "1", + "ifTrunk": "dot1Q", + "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": "382065513241", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "1610237988079", + "ifOutUcastPkts_prev": "0", + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": "216", + "ifInErrors_prev": "0", + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": "0", + "ifOutErrors_prev": "0", + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": "53376901192605", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "2337386189209864", + "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": "40330343", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "13175221", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "7469281118", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "43259091", + "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": "Vlan400", + "ifName": "Vl400", + "portName": null, + "ifIndex": "506", + "ifSpeed": "1000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Vlan400", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "15012", + "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": "33010419378", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "151044343330", + "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": "3954446528994", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "206139459366960", + "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": "13136373", + "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": "Vlan402", + "ifName": "Vl402", + "portName": null, + "ifIndex": "509", + "ifSpeed": "1000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Vlan402", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "15012", + "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": "187045965951", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "64380779389", + "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": "238502665961828", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "17811176335606", + "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": "34800442", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "0", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "9571", + "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": "Port-channel57", + "ifName": "Po57", + "portName": null, + "ifIndex": "514", + "ifSpeed": "100000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Port-channel57", + "ifPhysAddress": "000000000000", + "ifHardType": null, + "ifLastChange": "9704", + "ifVlan": "0", + "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": "Port-channel58", + "ifName": "Po58", + "portName": null, + "ifIndex": "515", + "ifSpeed": "100000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Port-channel58", + "ifPhysAddress": "000000000000", + "ifHardType": null, + "ifLastChange": "9704", + "ifVlan": "30", + "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": "Port-channel70", + "ifName": "Po70", + "portName": null, + "ifIndex": "518", + "ifSpeed": "100000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Port-channel70", + "ifPhysAddress": "000000000000", + "ifHardType": null, + "ifLastChange": "9732", + "ifVlan": "0", + "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": "Port-channel1", + "ifName": "Po1", + "portName": null, + "ifIndex": "519", + "ifSpeed": "100000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Port-channel1", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "3401", + "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": "Port-channel71", + "ifName": "Po71", + "portName": null, + "ifIndex": "520", + "ifSpeed": "100000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Port-channel71", + "ifPhysAddress": "000000000000", + "ifHardType": null, + "ifLastChange": "9745", + "ifVlan": "0", + "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": "Vlan409", + "ifName": "Vl409", + "portName": null, + "ifIndex": "535", + "ifSpeed": "1000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Vlan409", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "15013", + "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": "5548627593", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "14809672208", + "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": "2422320554714", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "19167870103881", + "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": "14257592", + "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": "Vlan410", + "ifName": "Vl410", + "portName": null, + "ifIndex": "536", + "ifSpeed": "1000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Vlan410", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "15013", + "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": "6486362659", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "9391231888", + "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": "4557769218972", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "7993159477697", + "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": "11317485", + "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": "Vlan412", + "ifName": "Vl412", + "portName": null, + "ifIndex": "538", + "ifSpeed": "1000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Vlan412", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "15014", + "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": "19598590012", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "7065722884", + "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": "25389504248075", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "2814512323404", + "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": "11207953", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "0", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "9", + "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": "Vlan416", + "ifName": "Vl416", + "portName": null, + "ifIndex": "542", + "ifSpeed": "1000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Vlan416", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "15017", + "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": "10773454646", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "3393032123", + "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": "14324886291345", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "733276922967", + "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": "87150338", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "0", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "4044", + "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": "Vlan415", + "ifName": "Vl415", + "portName": null, + "ifIndex": "543", + "ifSpeed": "1000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Vlan415", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "15017", + "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": "6527973257", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "1903698699", + "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": "8726202468487", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "329591974540", + "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": "9354591", + "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": "Vlan420", + "ifName": "Vl420", + "portName": null, + "ifIndex": "544", + "ifSpeed": "1000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Vlan420", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "15017", + "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": "4414410603", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "16616313639", + "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": "717402020915", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "22647904554259", + "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": "13017807", + "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": "TenGigabitEthernet1/1", + "ifName": "Te1/1", + "portName": null, + "ifIndex": "547", + "ifSpeed": "10000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "10000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "TenGigabitEthernet1/1", + "ifPhysAddress": "fc99473655d8", + "ifHardType": null, + "ifLastChange": "29013", + "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": "1086346174469", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "590910949215", + "ifOutUcastPkts_prev": "0", + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": "3457090", + "ifInErrors_prev": "0", + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": "0", + "ifOutErrors_prev": "0", + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": "1305308502801155", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "473339050594862", + "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": "1649039791", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "63701602", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "973690159", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "2126271681", + "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": "TenGigabitEthernet1/2", + "ifName": "Te1/2", + "portName": null, + "ifIndex": "548", + "ifSpeed": "10000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "10000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "TenGigabitEthernet1/2", + "ifPhysAddress": "fc99473655d9", + "ifHardType": null, + "ifLastChange": "4100", + "ifVlan": "1", + "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": "2181144", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "2181144", + "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": "25966", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "25966", + "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": "TenGigabitEthernet1/3", + "ifName": "Te1/3", + "portName": null, + "ifIndex": "549", + "ifSpeed": "10000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "10000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "TenGigabitEthernet1/3", + "ifPhysAddress": "fc99473655da", + "ifHardType": null, + "ifLastChange": "4107", + "ifVlan": "1", + "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": "2181144", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "2181144", + "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": "25966", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "25966", + "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": "TenGigabitEthernet1/4", + "ifName": "Te1/4", + "portName": null, + "ifIndex": "550", + "ifSpeed": "10000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "10000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "TenGigabitEthernet1/4", + "ifPhysAddress": "fc99473655db", + "ifHardType": null, + "ifLastChange": "28956", + "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": "1433063193127", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "682270911098", + "ifOutUcastPkts_prev": "0", + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": "71", + "ifInErrors_prev": "0", + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": "0", + "ifOutErrors_prev": "0", + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": "1921682425093659", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "450626094140964", + "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": "2052700454", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "74249094", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "476504028", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "337652510", + "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": "TenGigabitEthernet1/5", + "ifName": "Te1/5", + "portName": null, + "ifIndex": "551", + "ifSpeed": "10000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "10000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "TenGigabitEthernet1/5", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "4126", + "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": "2181144", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "2181144", + "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": "25966", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "25966", + "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": "TenGigabitEthernet1/6", + "ifName": "Te1/6", + "portName": null, + "ifIndex": "552", + "ifSpeed": "10000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "10000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "TenGigabitEthernet1/6", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "4126", + "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": "2181144", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "2181144", + "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": "25966", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "25966", + "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": "TenGigabitEthernet1/7", + "ifName": "Te1/7", + "portName": null, + "ifIndex": "553", + "ifSpeed": "10000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "10000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "TenGigabitEthernet1/7", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "4126", + "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": "2181144", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "2181144", + "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": "25966", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "25966", + "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": "TenGigabitEthernet1/8", + "ifName": "Te1/8", + "portName": null, + "ifIndex": "554", + "ifSpeed": "10000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "10000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "TenGigabitEthernet1/8", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "4126", + "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": "2181144", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "2181144", + "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": "25966", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "25966", + "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": "GigabitEthernet3/1", + "ifName": "Gi3/1", + "portName": null, + "ifIndex": "555", + "ifSpeed": "10000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "10", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet3/1", + "ifPhysAddress": "0021d8722260", + "ifHardType": null, + "ifLastChange": "912496202", + "ifVlan": "30", + "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": "1482", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "1303194", + "ifOutUcastPkts_prev": "0", + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": "1040211", + "ifInErrors_prev": "0", + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": "0", + "ifOutErrors_prev": "0", + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": "107105578", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "128003191198", + "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": "27", + "ifInDiscards_prev": "0", + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": "4954190", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "29519", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "1773002064", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "7965", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "98858014", + "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": "GigabitEthernet3/2", + "ifName": "Gi3/2", + "portName": null, + "ifIndex": "556", + "ifSpeed": "100000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet3/2", + "ifPhysAddress": "0021d8722261", + "ifHardType": null, + "ifLastChange": "20662", + "ifVlan": "467", + "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": "1024868994", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "962909197", + "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": "978332201655", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "764081589731", + "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": "1", + "ifInDiscards_prev": "0", + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": "68167", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "30206426", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "93", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "25430131", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "27823740", + "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": "GigabitEthernet3/3", + "ifName": "Gi3/3", + "portName": null, + "ifIndex": "557", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet3/3", + "ifPhysAddress": "0021d8722262", + "ifHardType": null, + "ifLastChange": "20897", + "ifVlan": "310", + "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": "493597", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "4541921782", + "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": "7843617106", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "948151002427", + "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": "91289329", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "121608815", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "49844674", + "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": "GigabitEthernet3/4", + "ifName": "Gi3/4", + "portName": null, + "ifIndex": "558", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet3/4", + "ifPhysAddress": "0021d8722263", + "ifHardType": null, + "ifLastChange": "20898", + "ifVlan": "310", + "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": "324", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "4541641186", + "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": "7784909720", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "948128502289", + "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": "91289329", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "121638864", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "49844614", + "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": "GigabitEthernet3/5", + "ifName": "Gi3/5", + "portName": null, + "ifIndex": "559", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet3/5", + "ifPhysAddress": "0021d8722264", + "ifHardType": null, + "ifLastChange": "542392891", + "ifVlan": "310", + "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": "4022459", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "4543352719", + "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": "8155587456", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "946052938068", + "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": "1862", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "71235461", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "120801674", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "37892172", + "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": "GigabitEthernet3/6", + "ifName": "Gi3/6", + "portName": null, + "ifIndex": "560", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet3/6", + "ifPhysAddress": "0021d8722265", + "ifHardType": null, + "ifLastChange": "534162723", + "ifVlan": "310", + "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": "2189093", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "4541919776", + "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": "7993540083", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "945155960959", + "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": "43", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "69083488", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "121589669", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "37526815", + "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": "GigabitEthernet3/7", + "ifName": "Gi3/7", + "portName": null, + "ifIndex": "561", + "ifSpeed": "100000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet3/7", + "ifPhysAddress": "0021d8722266", + "ifHardType": null, + "ifLastChange": "2086174215", + "ifVlan": "30", + "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": "8558663", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "8929265", + "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": "703535453", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "147221766555", + "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": "227970", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "5850", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "2037326580", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "236240", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "109312815", + "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": "GigabitEthernet3/8", + "ifName": "Gi3/8", + "portName": null, + "ifIndex": "562", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet3/8", + "ifPhysAddress": "0021d8722267", + "ifHardType": null, + "ifLastChange": "4261", + "ifVlan": "454", + "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": "2213820", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "2213820", + "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": "26355", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "26355", + "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": "GigabitEthernet3/9", + "ifName": "Gi3/9", + "portName": null, + "ifIndex": "563", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet3/9", + "ifPhysAddress": "0021d8722268", + "ifHardType": null, + "ifLastChange": "727936810", + "ifVlan": "30", + "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": "107116588", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "67637553", + "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": "100430294802", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "158580580349", + "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": "10", + "ifInDiscards_prev": "0", + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": "47618", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "442014", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "2036903874", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "6403", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "109306058", + "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": "GigabitEthernet3/10", + "ifName": "Gi3/10", + "portName": null, + "ifIndex": "564", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet3/10", + "ifPhysAddress": "0021d8722269", + "ifHardType": null, + "ifLastChange": "20198", + "ifVlan": "30", + "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": "GigabitEthernet3/11", + "ifName": "Gi3/11", + "portName": null, + "ifIndex": "565", + "ifSpeed": "100000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet3/11", + "ifPhysAddress": "0021d872226a", + "ifHardType": null, + "ifLastChange": "912025633", + "ifVlan": "310", + "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": "81766", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "4540616502", + "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": "43961680", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "1000953528107", + "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": "494945", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "62", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "837695366", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "302743", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "82701187", + "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": "GigabitEthernet3/12", + "ifName": "Gi3/12", + "portName": null, + "ifIndex": "566", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet3/12", + "ifPhysAddress": "0021d872226b", + "ifHardType": null, + "ifLastChange": "727936758", + "ifVlan": "1", + "ifTrunk": "dot1Q", + "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": "3484450338", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "4590298022", + "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": "4395978658583", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "1283665196168", + "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": "20511399", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "1404282", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "3256214615", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "366920", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "805776070", + "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": "GigabitEthernet3/13", + "ifName": "Gi3/13", + "portName": null, + "ifIndex": "567", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet3/13", + "ifPhysAddress": "0021d872226c", + "ifHardType": null, + "ifLastChange": "727936758", + "ifVlan": "1", + "ifTrunk": "dot1Q", + "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": "3662872858", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "7012464046", + "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": "4639604961971", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "2846258559278", + "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": "20602450", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "3201363", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "3254417707", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "319531", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "805867702", + "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": "GigabitEthernet3/14", + "ifName": "Gi3/14", + "portName": null, + "ifIndex": "568", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet3/14", + "ifPhysAddress": "0021d872226d", + "ifHardType": null, + "ifLastChange": "727936759", + "ifVlan": "1", + "ifTrunk": "dot1Q", + "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": "3308549058", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "4590368813", + "ifOutUcastPkts_prev": "0", + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": "1", + "ifInErrors_prev": "0", + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": "0", + "ifOutErrors_prev": "0", + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": "4220973574698", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "1283819240495", + "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": "20514546", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "1404387", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "3256215006", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "21704", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "806120291", + "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": "GigabitEthernet3/15", + "ifName": "Gi3/15", + "portName": null, + "ifIndex": "569", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet3/15", + "ifPhysAddress": "0021d872226e", + "ifHardType": null, + "ifLastChange": "20248", + "ifVlan": "30", + "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": "GigabitEthernet3/16", + "ifName": "Gi3/16", + "portName": null, + "ifIndex": "570", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet3/16", + "ifPhysAddress": "0021d872226f", + "ifHardType": null, + "ifLastChange": "727937083", + "ifVlan": "1", + "ifTrunk": "dot1Q", + "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": "3168020851", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "8933312029", + "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": "3976671326627", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "4282366296453", + "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": "9", + "ifInDiscards_prev": "0", + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": "20602447", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "4739704", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "3252834626", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "191335", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "779919598", + "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": "GigabitEthernet3/17", + "ifName": "Gi3/17", + "portName": null, + "ifIndex": "571", + "ifSpeed": "100000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet3/17", + "ifPhysAddress": "0021d8722270", + "ifHardType": null, + "ifLastChange": "2086602078", + "ifVlan": "310", + "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": "16201938", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "4557328011", + "ifOutUcastPkts_prev": "0", + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": "5", + "ifInErrors_prev": "0", + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": "0", + "ifOutErrors_prev": "0", + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": "3902726016", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "949744646421", + "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": "6375", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "40246", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "91243049", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "175440", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "49667959", + "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": "GigabitEthernet3/18", + "ifName": "Gi3/18", + "portName": null, + "ifIndex": "572", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet3/18", + "ifPhysAddress": "0021d8722271", + "ifHardType": null, + "ifLastChange": "20277", + "ifVlan": "30", + "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": "GigabitEthernet3/19", + "ifName": "Gi3/19", + "portName": null, + "ifIndex": "573", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet3/19", + "ifPhysAddress": "0021d8722272", + "ifHardType": null, + "ifLastChange": "4517", + "ifVlan": "454", + "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": "2213820", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "2213820", + "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": "26355", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "26355", + "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": "GigabitEthernet3/20", + "ifName": "Gi3/20", + "portName": null, + "ifIndex": "574", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet3/20", + "ifPhysAddress": "0021d8722273", + "ifHardType": null, + "ifLastChange": "20287", + "ifVlan": "30", + "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": "GigabitEthernet3/21", + "ifName": "Gi3/21", + "portName": null, + "ifIndex": "575", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet3/21", + "ifPhysAddress": "0021d8722274", + "ifHardType": null, + "ifLastChange": "1863030450", + "ifVlan": "99", + "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": "4002228183", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "1824436677", + "ifOutUcastPkts_prev": "0", + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": "12", + "ifInErrors_prev": "0", + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": "0", + "ifOutErrors_prev": "0", + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": "1007149920006", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "123461707811", + "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": "119", + "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": "3100", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "2075824", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "0", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "27621538", + "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": "GigabitEthernet3/22", + "ifName": "Gi3/22", + "portName": null, + "ifIndex": "576", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet3/22", + "ifPhysAddress": "0021d8722275", + "ifHardType": null, + "ifLastChange": "20307", + "ifVlan": "30", + "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": "GigabitEthernet3/23", + "ifName": "Gi3/23", + "portName": null, + "ifIndex": "577", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet3/23", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "553794416", + "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": "33210768022", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "37286291922", + "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": "15224609516941", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "31647879963976", + "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": "1565360", + "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": "16", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "12342535", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "12290408", + "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": "GigabitEthernet3/24", + "ifName": "Gi3/24", + "portName": null, + "ifIndex": "578", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet3/24", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "20675", + "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": "2034183029", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "2506928847", + "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": "552628270152", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "2087776098020", + "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": "327770", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "2", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "4", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "170683", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "1095757", + "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": "GigabitEthernet3/25", + "ifName": "Gi3/25", + "portName": null, + "ifIndex": "579", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet3/25", + "ifPhysAddress": "0021d8722278", + "ifHardType": null, + "ifLastChange": "354031232", + "ifVlan": "391", + "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": "10601338", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "17497217", + "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": "3085417185", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "9707799554", + "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": "693557", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "10140143", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "1269065", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "14077686", + "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": "GigabitEthernet3/26", + "ifName": "Gi3/26", + "portName": null, + "ifIndex": "580", + "ifSpeed": "100000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet3/26", + "ifPhysAddress": "0021d8722279", + "ifHardType": null, + "ifLastChange": "237438150", + "ifVlan": "30", + "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": "3419", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "1226225", + "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": "230546", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "132019015863", + "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": "4955838", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "67", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "1846368304", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "1", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "95828595", + "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": "GigabitEthernet3/27", + "ifName": "Gi3/27", + "portName": null, + "ifIndex": "581", + "ifSpeed": "100000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet3/27", + "ifPhysAddress": "0021d872227a", + "ifHardType": null, + "ifLastChange": "237449095", + "ifVlan": "30", + "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": "215087", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "1392901", + "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": "135746696", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "132066040709", + "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": "421819", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "42559", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "1846389539", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "2", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "95828423", + "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": "GigabitEthernet3/28", + "ifName": "Gi3/28", + "portName": null, + "ifIndex": "582", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet3/28", + "ifPhysAddress": "0021d872227b", + "ifHardType": null, + "ifLastChange": "21217", + "ifVlan": "99", + "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": "476928720", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "475701563", + "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": "157174864609", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "55232878036", + "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": "12", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "2090018", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "1053122", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "27872220", + "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": "GigabitEthernet3/29", + "ifName": "Gi3/29", + "portName": null, + "ifIndex": "583", + "ifSpeed": "100000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet3/29", + "ifPhysAddress": "0021d872227c", + "ifHardType": null, + "ifLastChange": "2086310950", + "ifVlan": "310", + "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": "16214726", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "4557022781", + "ifOutUcastPkts_prev": "0", + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": "2", + "ifInErrors_prev": "0", + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": "0", + "ifOutErrors_prev": "0", + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": "3904441565", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "949680483169", + "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": "6360", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "40243", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "91241225", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "175429", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "49666833", + "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": "GigabitEthernet3/30", + "ifName": "Gi3/30", + "portName": null, + "ifIndex": "584", + "ifSpeed": "100000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet3/30", + "ifPhysAddress": "0021d872227d", + "ifHardType": null, + "ifLastChange": "21014", + "ifVlan": "30", + "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": "1499099", + "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": "1164", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "146669704196", + "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": "449273", + "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": "2037344579", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "0", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "109313129", + "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": "GigabitEthernet3/31", + "ifName": "Gi3/31", + "portName": null, + "ifIndex": "585", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet3/31", + "ifPhysAddress": "0021d872227e", + "ifHardType": null, + "ifLastChange": "632508578", + "ifVlan": "30", + "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": "3449", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "2142672", + "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": "29934058", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "147646989319", + "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": "47254", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "25", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "2037330947", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "464197", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "109312877", + "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": "GigabitEthernet3/32", + "ifName": "Gi3/32", + "portName": null, + "ifIndex": "586", + "ifSpeed": "100000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet3/32", + "ifPhysAddress": "0021d872227f", + "ifHardType": null, + "ifLastChange": "2086606291", + "ifVlan": "310", + "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": "16791926", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "4557986725", + "ifOutUcastPkts_prev": "0", + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": "1", + "ifInErrors_prev": "0", + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": "0", + "ifOutErrors_prev": "0", + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": "3971684452", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "949820622259", + "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": "6363", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "40245", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "91243669", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "175460", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "49667996", + "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": "GigabitEthernet3/33", + "ifName": "Gi3/33", + "portName": null, + "ifIndex": "587", + "ifSpeed": "100000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet3/33", + "ifPhysAddress": "0021d8722280", + "ifHardType": null, + "ifLastChange": "2086312104", + "ifVlan": "310", + "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": "16213213", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "4557042393", + "ifOutUcastPkts_prev": "0", + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": "1", + "ifInErrors_prev": "0", + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": "0", + "ifOutErrors_prev": "0", + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": "3903702306", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "949683754267", + "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": "6353", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "40247", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "91241250", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "175429", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "49666942", + "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": "GigabitEthernet3/34", + "ifName": "Gi3/34", + "portName": null, + "ifIndex": "588", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet3/34", + "ifPhysAddress": "0021d8722281", + "ifHardType": null, + "ifLastChange": "21418", + "ifVlan": "1", + "ifTrunk": "dot1Q", + "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": "27709529", + "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": "576", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "287287766871", + "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": "20515024", + "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": "3058976479", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "0", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "504737403", + "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": "GigabitEthernet3/35", + "ifName": "Gi3/35", + "portName": null, + "ifIndex": "589", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet3/35", + "ifPhysAddress": "0021d8722282", + "ifHardType": null, + "ifLastChange": "169494287", + "ifVlan": "1", + "ifTrunk": "dot1Q", + "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": "2395367608", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "6930684929", + "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": "240070287863", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "1435101536704", + "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": "9", + "ifInDiscards_prev": "0", + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": "20515251", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "992", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "3183330377", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "2", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "603474684", + "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": "GigabitEthernet3/36", + "ifName": "Gi3/36", + "portName": null, + "ifIndex": "590", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet3/36", + "ifPhysAddress": "0021d8722283", + "ifHardType": null, + "ifLastChange": "21248", + "ifVlan": "99", + "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": "460077949", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "458781204", + "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": "149123358050", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "52843051948", + "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": "8", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "2090021", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "1053139", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "27872168", + "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": "GigabitEthernet3/37", + "ifName": "Gi3/37", + "portName": null, + "ifIndex": "591", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet3/37", + "ifPhysAddress": "0021d8722284", + "ifHardType": null, + "ifLastChange": "354068952", + "ifVlan": "99", + "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": "7383176", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "7762344", + "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": "713869774", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "3466480789", + "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": "9", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "2090017", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "3", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "27872154", + "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": "GigabitEthernet3/38", + "ifName": "Gi3/38", + "portName": null, + "ifIndex": "592", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet3/38", + "ifPhysAddress": "0021d8722285", + "ifHardType": null, + "ifLastChange": "4825", + "ifVlan": "454", + "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": "GigabitEthernet3/39", + "ifName": "Gi3/39", + "portName": null, + "ifIndex": "593", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet3/39", + "ifPhysAddress": "0021d8722286", + "ifHardType": null, + "ifLastChange": "20462", + "ifVlan": "30", + "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": "GigabitEthernet3/40", + "ifName": "Gi3/40", + "portName": null, + "ifIndex": "594", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet3/40", + "ifPhysAddress": "0021d8722287", + "ifHardType": null, + "ifLastChange": "20472", + "ifVlan": "30", + "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": "GigabitEthernet3/41", + "ifName": "Gi3/41", + "portName": null, + "ifIndex": "595", + "ifSpeed": "100000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet3/41", + "ifPhysAddress": "0021d8722288", + "ifHardType": null, + "ifLastChange": "2086300135", + "ifVlan": "310", + "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": "16729714", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "4557255389", + "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": "3692298028", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "949382176852", + "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": "6366", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "40238", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "91238086", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "175453", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "49275607", + "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": "GigabitEthernet3/42", + "ifName": "Gi3/42", + "portName": null, + "ifIndex": "596", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet3/42", + "ifPhysAddress": "0021d8722289", + "ifHardType": null, + "ifLastChange": "20496", + "ifVlan": "30", + "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": "GigabitEthernet3/43", + "ifName": "Gi3/43", + "portName": null, + "ifIndex": "597", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet3/43", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "4904", + "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": "GigabitEthernet3/44", + "ifName": "Gi3/44", + "portName": null, + "ifIndex": "598", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet3/44", + "ifPhysAddress": "0021d872228b", + "ifHardType": null, + "ifLastChange": "4914", + "ifVlan": "1", + "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": "GigabitEthernet3/45", + "ifName": "Gi3/45", + "portName": null, + "ifIndex": "599", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet3/45", + "ifPhysAddress": "0021d872228c", + "ifHardType": null, + "ifLastChange": "4932", + "ifVlan": "30", + "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": "GigabitEthernet3/46", + "ifName": "Gi3/46", + "portName": null, + "ifIndex": "600", + "ifSpeed": "100000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet3/46", + "ifPhysAddress": "0021d872228d", + "ifHardType": null, + "ifLastChange": "2086606504", + "ifVlan": "310", + "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": "16790849", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "4557983469", + "ifOutUcastPkts_prev": "0", + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": "2", + "ifInErrors_prev": "0", + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": "0", + "ifOutErrors_prev": "0", + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": "3970879304", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "949820234430", + "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": "6361", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "40238", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "91244532", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "175473", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "49667995", + "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": "GigabitEthernet3/47", + "ifName": "Gi3/47", + "portName": null, + "ifIndex": "601", + "ifSpeed": "100000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet3/47", + "ifPhysAddress": "0021d872228e", + "ifHardType": null, + "ifLastChange": "21056", + "ifVlan": "448", + "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": "1248040294", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "1332552446", + "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": "171300636419", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "1085082221486", + "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": "7", + "ifInDiscards_prev": "0", + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": "896", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "4", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "29", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "390021", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "27823739", + "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": "GigabitEthernet3/48", + "ifName": "Gi3/48", + "portName": null, + "ifIndex": "602", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet3/48", + "ifPhysAddress": "0021d872228f", + "ifHardType": null, + "ifLastChange": "4981", + "ifVlan": "901", + "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": "2213820", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "2213820", + "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": "26355", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "26355", + "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": "GigabitEthernet4/1", + "ifName": "Gi4/1", + "portName": null, + "ifIndex": "603", + "ifSpeed": "100000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet4/1", + "ifPhysAddress": "0021d8be1150", + "ifHardType": null, + "ifLastChange": "2086597875", + "ifVlan": "310", + "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": "16142630", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "4557148899", + "ifOutUcastPkts_prev": "0", + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": "1", + "ifInErrors_prev": "0", + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": "0", + "ifOutErrors_prev": "0", + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": "3624990735", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "949708326163", + "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": "6366", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "40237", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "91241939", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "175475", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "49667552", + "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": "GigabitEthernet4/2", + "ifName": "Gi4/2", + "portName": null, + "ifIndex": "604", + "ifSpeed": "100000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet4/2", + "ifPhysAddress": "0021d8be1151", + "ifHardType": null, + "ifLastChange": "523114853", + "ifVlan": "30", + "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": "5220151511", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "4912851843", + "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": "3558541902653", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "3612374715981", + "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": "54471", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "224332", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "2037105549", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "221718", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "113868615", + "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": "GigabitEthernet4/3", + "ifName": "Gi4/3", + "portName": null, + "ifIndex": "605", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet4/3", + "ifPhysAddress": "0021d8be1152", + "ifHardType": null, + "ifLastChange": "25662", + "ifVlan": "454", + "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": "GigabitEthernet4/4", + "ifName": "Gi4/4", + "portName": null, + "ifIndex": "606", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet4/4", + "ifPhysAddress": "0021d8be1153", + "ifHardType": null, + "ifLastChange": "25689", + "ifVlan": "454", + "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": "GigabitEthernet4/5", + "ifName": "Gi4/5", + "portName": null, + "ifIndex": "607", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet4/5", + "ifPhysAddress": "0021d8be1154", + "ifHardType": null, + "ifLastChange": "25716", + "ifVlan": "454", + "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": "GigabitEthernet4/6", + "ifName": "Gi4/6", + "portName": null, + "ifIndex": "608", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet4/6", + "ifPhysAddress": "0021d8be1155", + "ifHardType": null, + "ifLastChange": "25730", + "ifVlan": "454", + "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": "GigabitEthernet4/7", + "ifName": "Gi4/7", + "portName": null, + "ifIndex": "609", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet4/7", + "ifPhysAddress": "0021d8be1156", + "ifHardType": null, + "ifLastChange": "25742", + "ifVlan": "30", + "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": "GigabitEthernet4/8", + "ifName": "Gi4/8", + "portName": null, + "ifIndex": "610", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet4/8", + "ifPhysAddress": "0021d8be1157", + "ifHardType": null, + "ifLastChange": "26586", + "ifVlan": "30", + "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": "546694842", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "526034667", + "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": "553096652054", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "552907403886", + "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": "47248", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "90", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "2037338322", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "0", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "109312750", + "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": "GigabitEthernet4/9", + "ifName": "Gi4/9", + "portName": null, + "ifIndex": "611", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet4/9", + "ifPhysAddress": "0021d8be1158", + "ifHardType": null, + "ifLastChange": "25766", + "ifVlan": "901", + "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": "GigabitEthernet4/10", + "ifName": "Gi4/10", + "portName": null, + "ifIndex": "612", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet4/10", + "ifPhysAddress": "0021d8be1159", + "ifHardType": null, + "ifLastChange": "26586", + "ifVlan": "30", + "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": "1162606", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "2905097", + "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": "120961173", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "147711387129", + "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": "47253", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "45", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "2037338335", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "471801", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "109312830", + "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": "GigabitEthernet4/11", + "ifName": "Gi4/11", + "portName": null, + "ifIndex": "613", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet4/11", + "ifPhysAddress": "0021d8be115a", + "ifHardType": null, + "ifLastChange": "26586", + "ifVlan": "30", + "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": "12100063", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "3812926", + "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": "1408246794", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "147756222758", + "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": "47252", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "30", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "2037338358", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "1", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "109312787", + "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": "GigabitEthernet4/12", + "ifName": "Gi4/12", + "portName": null, + "ifIndex": "614", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet4/12", + "ifPhysAddress": "0021d8be115b", + "ifHardType": null, + "ifLastChange": "26671", + "ifVlan": "30", + "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": "56044290", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "28471346", + "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": "24343151210", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "150973202734", + "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": "47265", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "6051", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "2037332320", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "2", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "109312752", + "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": "GigabitEthernet4/13", + "ifName": "Gi4/13", + "portName": null, + "ifIndex": "615", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet4/13", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "1268758846", + "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": "2573290330", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "3128805613", + "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": "1085126198150", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "2289147070167", + "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": "126876", + "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": "40", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "2460396", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "3421065", + "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": "GigabitEthernet4/14", + "ifName": "Gi4/14", + "portName": null, + "ifIndex": "616", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet4/14", + "ifPhysAddress": "0021d8be115d", + "ifHardType": null, + "ifLastChange": "2086623546", + "ifVlan": "30", + "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": "875314635", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "1088401232", + "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": "376108082333", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "1156965013235", + "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": "690910", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "3222", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "2037240872", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "123072", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "109185823", + "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": "GigabitEthernet4/15", + "ifName": "Gi4/15", + "portName": null, + "ifIndex": "617", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet4/15", + "ifPhysAddress": "0021d8be115e", + "ifHardType": null, + "ifLastChange": "26691", + "ifVlan": "30", + "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": "3551", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "2083163", + "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": "29080472", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "147602455275", + "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": "47257", + "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": "2037338297", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "450693", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "109312774", + "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": "GigabitEthernet4/16", + "ifName": "Gi4/16", + "portName": null, + "ifIndex": "618", + "ifSpeed": "100000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet4/16", + "ifPhysAddress": "0021d8be115f", + "ifHardType": null, + "ifLastChange": "2086599268", + "ifVlan": "310", + "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": "16227604", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "4557273080", + "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": "3908266542", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "949730599214", + "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": "6350", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "40242", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "91241967", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "175430", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "49667591", + "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": "GigabitEthernet4/17", + "ifName": "Gi4/17", + "portName": null, + "ifIndex": "619", + "ifSpeed": "100000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet4/17", + "ifPhysAddress": "0021d8be1160", + "ifHardType": null, + "ifLastChange": "26691", + "ifVlan": "30", + "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": "2", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "1448931", + "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": "1364", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "146642056500", + "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": "680643", + "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": "2037338296", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "0", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "109312734", + "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": "GigabitEthernet4/18", + "ifName": "Gi4/18", + "portName": null, + "ifIndex": "620", + "ifSpeed": "100000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet4/18", + "ifPhysAddress": "0021d8be1161", + "ifHardType": null, + "ifLastChange": "2086537747", + "ifVlan": "30", + "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": "10316489", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "7048487", + "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": "14576230188", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "146544586901", + "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": "1", + "ifInDiscards_prev": "0", + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": "693572", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "74420", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "2012163246", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "0", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "108509835", + "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": "GigabitEthernet4/19", + "ifName": "Gi4/19", + "portName": null, + "ifIndex": "621", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet4/19", + "ifPhysAddress": "0021d8be1162", + "ifHardType": null, + "ifLastChange": "25986", + "ifVlan": "454", + "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": "GigabitEthernet4/20", + "ifName": "Gi4/20", + "portName": null, + "ifIndex": "622", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet4/20", + "ifPhysAddress": "0021d8be1163", + "ifHardType": null, + "ifLastChange": "2086589477", + "ifVlan": "310", + "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": "7658057817", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "13951866361", + "ifOutUcastPkts_prev": "0", + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": "27", + "ifInErrors_prev": "0", + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": "0", + "ifOutErrors_prev": "0", + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": "2763977377318", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "9852189682591", + "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": "209", + "ifInDiscards_prev": "0", + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": "711", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "14775951", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "76508401", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "13041326", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "36854750", + "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": "GigabitEthernet4/21", + "ifName": "Gi4/21", + "portName": null, + "ifIndex": "623", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet4/21", + "ifPhysAddress": "0021d8be1164", + "ifHardType": null, + "ifLastChange": "26005", + "ifVlan": "454", + "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": "GigabitEthernet4/22", + "ifName": "Gi4/22", + "portName": null, + "ifIndex": "624", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet4/22", + "ifPhysAddress": "0021d8be1165", + "ifHardType": null, + "ifLastChange": "354059720", + "ifVlan": "390", + "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": "520383452", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "381414253", + "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": "291800629784", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "86507573214", + "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": "301", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "65", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "3", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "11504135", + "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": "GigabitEthernet4/23", + "ifName": "Gi4/23", + "portName": null, + "ifIndex": "625", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet4/23", + "ifPhysAddress": "0021d8be1166", + "ifHardType": null, + "ifLastChange": "26046", + "ifVlan": "454", + "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": "GigabitEthernet4/24", + "ifName": "Gi4/24", + "portName": null, + "ifIndex": "626", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet4/24", + "ifPhysAddress": "0021d8be1167", + "ifHardType": null, + "ifLastChange": "26820", + "ifVlan": "310", + "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": "1968947", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "4543359230", + "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": "7466261527", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "948489163719", + "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": "54", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "91288483", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "113875052", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "49844413", + "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": "GigabitEthernet4/25", + "ifName": "Gi4/25", + "portName": null, + "ifIndex": "627", + "ifSpeed": "100000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet4/25", + "ifPhysAddress": "0021d8be1168", + "ifHardType": null, + "ifLastChange": "2086314752", + "ifVlan": "310", + "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": "14276254", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "4555165703", + "ifOutUcastPkts_prev": "0", + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": "1", + "ifInErrors_prev": "0", + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": "0", + "ifOutErrors_prev": "0", + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": "3266447083", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "949383129558", + "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": "6351", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "40231", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "91243275", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "175462", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "49667565", + "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": "GigabitEthernet4/26", + "ifName": "Gi4/26", + "portName": null, + "ifIndex": "628", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet4/26", + "ifPhysAddress": "0021d8be1169", + "ifHardType": null, + "ifLastChange": "26085", + "ifVlan": "911", + "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": "GigabitEthernet4/27", + "ifName": "Gi4/27", + "portName": null, + "ifIndex": "629", + "ifSpeed": "100000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet4/27", + "ifPhysAddress": "0021d8be116a", + "ifHardType": null, + "ifLastChange": "2086610115", + "ifVlan": "310", + "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": "16147767", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "4557245299", + "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": "3626421186", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "949728348667", + "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": "6356", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "40234", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "91245043", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "175479", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "49668203", + "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": "GigabitEthernet4/28", + "ifName": "Gi4/28", + "portName": null, + "ifIndex": "630", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet4/28", + "ifPhysAddress": "0021d8be116b", + "ifHardType": null, + "ifLastChange": "26117", + "ifVlan": "902", + "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": "GigabitEthernet4/29", + "ifName": "Gi4/29", + "portName": null, + "ifIndex": "631", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet4/29", + "ifPhysAddress": "0021d8be116c", + "ifHardType": null, + "ifLastChange": "26128", + "ifVlan": "40", + "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": "GigabitEthernet4/30", + "ifName": "Gi4/30", + "portName": null, + "ifIndex": "632", + "ifSpeed": "100000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet4/30", + "ifPhysAddress": "0021d8be116d", + "ifHardType": null, + "ifLastChange": "2086302680", + "ifVlan": "310", + "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": "16776955", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "4557394955", + "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": "3969409707", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "949700238216", + "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": "6357", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "40242", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "91238494", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "175469", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "49665976", + "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": "GigabitEthernet4/31", + "ifName": "Gi4/31", + "portName": null, + "ifIndex": "633", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet4/31", + "ifPhysAddress": "0021d8be116e", + "ifHardType": null, + "ifLastChange": "238356370", + "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": "87686438000", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "355848246371", + "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": "22011224568282", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "500747435544612", + "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": "20501949", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "3925311", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "1605421290", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "12198886", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "2557879229", + "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": "GigabitEthernet4/32", + "ifName": "Gi4/32", + "portName": null, + "ifIndex": "634", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet4/32", + "ifPhysAddress": "0021d8be116f", + "ifHardType": null, + "ifLastChange": "1042094134", + "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": "190590717235", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "432463048695", + "ifOutUcastPkts_prev": "0", + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": "56", + "ifInErrors_prev": "0", + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": "0", + "ifOutErrors_prev": "0", + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": "18068283670473", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "627022777588844", + "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": "19628261", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "3863934", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "1031709086", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "4624426", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "607460359", + "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": "GigabitEthernet4/33", + "ifName": "Gi4/33", + "portName": null, + "ifIndex": "635", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet4/33", + "ifPhysAddress": "0021d8be1170", + "ifHardType": null, + "ifLastChange": "26235", + "ifVlan": "30", + "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": "GigabitEthernet4/34", + "ifName": "Gi4/34", + "portName": null, + "ifIndex": "636", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet4/34", + "ifPhysAddress": "0021d8be1171", + "ifHardType": null, + "ifLastChange": "603615702", + "ifVlan": "30", + "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": "4312019", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "8693043", + "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": "335141001", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "12814775959", + "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": "481", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "1579305", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "7439", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "71980", + "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": "GigabitEthernet4/35", + "ifName": "Gi4/35", + "portName": null, + "ifIndex": "637", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet4/35", + "ifPhysAddress": "0021d8be1172", + "ifHardType": null, + "ifLastChange": "26268", + "ifVlan": "203", + "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": "GigabitEthernet4/36", + "ifName": "Gi4/36", + "portName": null, + "ifIndex": "638", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet4/36", + "ifPhysAddress": "0021d8be1173", + "ifHardType": null, + "ifLastChange": "27388", + "ifVlan": "1", + "ifTrunk": "dot1Q", + "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": "27793933", + "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": "648", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "288765160812", + "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": "20505029", + "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": "3067042773", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "0", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "515304102", + "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": "GigabitEthernet4/37", + "ifName": "Gi4/37", + "portName": null, + "ifIndex": "639", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet4/37", + "ifPhysAddress": "0021d8be1174", + "ifHardType": null, + "ifLastChange": "26355", + "ifVlan": "911", + "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": "GigabitEthernet4/38", + "ifName": "Gi4/38", + "portName": null, + "ifIndex": "640", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet4/38", + "ifPhysAddress": "0021d8be1175", + "ifHardType": null, + "ifLastChange": "26365", + "ifVlan": "911", + "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": "GigabitEthernet4/39", + "ifName": "Gi4/39", + "portName": null, + "ifIndex": "641", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet4/39", + "ifPhysAddress": "0021d8be1176", + "ifHardType": null, + "ifLastChange": "480140248", + "ifVlan": "310", + "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": "1656040", + "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": "648", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "3097449101", + "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": "20298328", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "0", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "11238367", + "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": "GigabitEthernet4/40", + "ifName": "Gi4/40", + "portName": null, + "ifIndex": "642", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet4/40", + "ifPhysAddress": "0021d8be1177", + "ifHardType": null, + "ifLastChange": "27169", + "ifVlan": "912", + "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": "1945067", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "1998722", + "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": "583450713", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "1774491983", + "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": "917", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "128276", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "309147", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "13487652", + "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": "GigabitEthernet4/41", + "ifName": "Gi4/41", + "portName": null, + "ifIndex": "643", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet4/41", + "ifPhysAddress": "0021d8be1178", + "ifHardType": null, + "ifLastChange": "26456", + "ifVlan": "30", + "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": "GigabitEthernet4/42", + "ifName": "Gi4/42", + "portName": null, + "ifIndex": "644", + "ifSpeed": "100000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet4/42", + "ifPhysAddress": "0021d8be1179", + "ifHardType": null, + "ifLastChange": "27221", + "ifVlan": "30", + "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": "70082035", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "70137911", + "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": "21887947798", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "153351288622", + "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": "323843", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "70660", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "2037267369", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "0", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "109312735", + "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": "GigabitEthernet4/43", + "ifName": "Gi4/43", + "portName": null, + "ifIndex": "645", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet4/43", + "ifPhysAddress": "0021d8be117a", + "ifHardType": null, + "ifLastChange": "5776", + "ifVlan": "463", + "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": "GigabitEthernet4/44", + "ifName": "Gi4/44", + "portName": null, + "ifIndex": "646", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet4/44", + "ifPhysAddress": "0021d8be117b", + "ifHardType": null, + "ifLastChange": "5791", + "ifVlan": "463", + "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": "GigabitEthernet4/45", + "ifName": "Gi4/45", + "portName": null, + "ifIndex": "647", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet4/45", + "ifPhysAddress": "0021d8be117c", + "ifHardType": null, + "ifLastChange": "27487", + "ifVlan": "463", + "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": "73594241", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "58109352", + "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": "17710787607", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "9096225640", + "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": "13220", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "982895", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "10579581", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "13946042", + "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": "GigabitEthernet4/46", + "ifName": "Gi4/46", + "portName": null, + "ifIndex": "648", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet4/46", + "ifPhysAddress": "0021d8be117d", + "ifHardType": null, + "ifLastChange": "5825", + "ifVlan": "70", + "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": "GigabitEthernet4/47", + "ifName": "Gi4/47", + "portName": null, + "ifIndex": "649", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet4/47", + "ifPhysAddress": "0021d8be117e", + "ifHardType": null, + "ifLastChange": "169494237", + "ifVlan": "1", + "ifTrunk": "dot1Q", + "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": "370517782", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "4935889266", + "ifOutUcastPkts_prev": "0", + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": "1", + "ifInErrors_prev": "0", + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": "0", + "ifOutErrors_prev": "0", + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": "35290667325", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "1287417111472", + "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": "20516608", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "237", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "3183320470", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "2", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "603472267", + "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": "GigabitEthernet4/48", + "ifName": "Gi4/48", + "portName": null, + "ifIndex": "650", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet4/48", + "ifPhysAddress": "0021d8be117f", + "ifHardType": null, + "ifLastChange": "5868", + "ifVlan": "30", + "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": "2235828", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "2235828", + "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": "26617", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "26617", + "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": "GigabitEthernet5/1", + "ifName": "Gi5/1", + "portName": null, + "ifIndex": "651", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet5/1", + "ifPhysAddress": "001e7a589938", + "ifHardType": null, + "ifLastChange": "1442744139", + "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": "103859329750", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "821904762858", + "ifOutUcastPkts_prev": "0", + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": "323", + "ifInErrors_prev": "0", + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": "0", + "ifOutErrors_prev": "0", + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": "13316226038586", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "1209561390288067", + "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": "200766", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "5389320", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "1189426581", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "26440746", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "480580154", + "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": "GigabitEthernet5/2", + "ifName": "Gi5/2", + "portName": null, + "ifIndex": "652", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet5/2", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "5897", + "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": "GigabitEthernet5/3", + "ifName": "Gi5/3", + "portName": null, + "ifIndex": "653", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet5/3", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "14075", + "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": "TenGigabitEthernet5/4", + "ifName": "Te5/4", + "portName": null, + "ifIndex": "654", + "ifSpeed": "10000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "10000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "TenGigabitEthernet5/4", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "5897", + "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": "2206596", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "2206596", + "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": "26269", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "26269", + "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": "TenGigabitEthernet5/5", + "ifName": "Te5/5", + "portName": null, + "ifIndex": "655", + "ifSpeed": "10000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "10000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "TenGigabitEthernet5/5", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "5897", + "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": "2214828", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "2214828", + "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": "26367", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "26367", + "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": "GigabitEthernet6/1", + "ifName": "Gi6/1", + "portName": null, + "ifIndex": "656", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet6/1", + "ifPhysAddress": "8843e1d6f050", + "ifHardType": null, + "ifLastChange": "169494459", + "ifVlan": "1", + "ifTrunk": "dot1Q", + "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": "1195751609", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "5291803463", + "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": "1167520110863", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "1466556948027", + "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": "1", + "ifInDiscards_prev": "0", + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": "20559670", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "15937645", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "3167380576", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "972662", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "602564654", + "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": "GigabitEthernet6/2", + "ifName": "Gi6/2", + "portName": null, + "ifIndex": "657", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet6/2", + "ifPhysAddress": "8843e1d6f051", + "ifHardType": null, + "ifLastChange": "169494438", + "ifVlan": "1", + "ifTrunk": "dot1Q", + "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": "4569548512", + "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": "2610", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "1260092098751", + "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": "20512756", + "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": "3183317740", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "0", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "603472512", + "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": "GigabitEthernet6/3", + "ifName": "Gi6/3", + "portName": null, + "ifIndex": "658", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet6/3", + "ifPhysAddress": "8843e1d6f052", + "ifHardType": null, + "ifLastChange": "23991", + "ifVlan": "454", + "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": "GigabitEthernet6/4", + "ifName": "Gi6/4", + "portName": null, + "ifIndex": "659", + "ifSpeed": "100000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet6/4", + "ifPhysAddress": "8843e1d6f053", + "ifHardType": null, + "ifLastChange": "2086611566", + "ifVlan": "310", + "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": "16137020", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "4557285395", + "ifOutUcastPkts_prev": "0", + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": "6", + "ifInErrors_prev": "0", + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": "0", + "ifOutErrors_prev": "0", + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": "3640365436", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "949736071571", + "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": "6353", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "40250", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "91245743", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "175525", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "49668301", + "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": "GigabitEthernet6/5", + "ifName": "Gi6/5", + "portName": null, + "ifIndex": "660", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet6/5", + "ifPhysAddress": "8843e1d6f054", + "ifHardType": null, + "ifLastChange": "169494485", + "ifVlan": "1", + "ifTrunk": "dot1Q", + "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": "4569544083", + "ifOutUcastPkts_prev": "0", + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": "2", + "ifInErrors_prev": "0", + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": "0", + "ifOutErrors_prev": "0", + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": "4566", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "1260089912396", + "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": "28", + "ifInDiscards_prev": "0", + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": "20513525", + "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": "3183317007", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "0", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "603472510", + "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": "GigabitEthernet6/6", + "ifName": "Gi6/6", + "portName": null, + "ifIndex": "661", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet6/6", + "ifPhysAddress": "8843e1d6f055", + "ifHardType": null, + "ifLastChange": "169494212", + "ifVlan": "1", + "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": "159", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "67", + "ifOutUcastPkts_prev": "0", + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": "1", + "ifInErrors_prev": "0", + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": "0", + "ifOutErrors_prev": "0", + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": "5040011607", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "1338391297", + "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": "67647999", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "1529897", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "3144990", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "11544097", + "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": "GigabitEthernet6/7", + "ifName": "Gi6/7", + "portName": null, + "ifIndex": "662", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet6/7", + "ifPhysAddress": "8843e1d6f056", + "ifHardType": null, + "ifLastChange": "25068", + "ifVlan": "310", + "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": "1479386691", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "8010493081", + "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": "219819293542", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "1935426457772", + "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": "399042", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "90889887", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "248926", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "52693488", + "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": "GigabitEthernet6/8", + "ifName": "Gi6/8", + "portName": null, + "ifIndex": "663", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet6/8", + "ifPhysAddress": "8843e1d6f057", + "ifHardType": null, + "ifLastChange": "2091603406", + "ifVlan": "310", + "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": "1810683", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "4543318346", + "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": "7869404561", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "948237617628", + "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": "91288664", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "121062054", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "49844541", + "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": "GigabitEthernet6/9", + "ifName": "Gi6/9", + "portName": null, + "ifIndex": "664", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet6/9", + "ifPhysAddress": "8843e1d6f058", + "ifHardType": null, + "ifLastChange": "169494568", + "ifVlan": "1", + "ifTrunk": "dot1Q", + "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": "113625552", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "4692714217", + "ifOutUcastPkts_prev": "0", + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": "1", + "ifInErrors_prev": "0", + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": "0", + "ifOutErrors_prev": "0", + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": "133566592782", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "1414896273093", + "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": "20514184", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "240715", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "3183076729", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "0", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "603472373", + "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": "GigabitEthernet6/10", + "ifName": "Gi6/10", + "portName": null, + "ifIndex": "665", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet6/10", + "ifPhysAddress": "8843e1d6f059", + "ifHardType": null, + "ifLastChange": "169494542", + "ifVlan": "1", + "ifTrunk": "dot1Q", + "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": "6160924474", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "7200002230", + "ifOutUcastPkts_prev": "0", + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": "1", + "ifInErrors_prev": "0", + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": "0", + "ifOutErrors_prev": "0", + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": "7988118694293", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "1898761968129", + "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": "20559667", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "7507111", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "3175811096", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "2500686", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "601147498", + "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": "GigabitEthernet6/11", + "ifName": "Gi6/11", + "portName": null, + "ifIndex": "666", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet6/11", + "ifPhysAddress": "8843e1d6f05a", + "ifHardType": null, + "ifLastChange": "25246", + "ifVlan": "310", + "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": "4541629672", + "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": "25276808", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "948127320795", + "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": "2", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "91288717", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "138120", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "49844485", + "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": "GigabitEthernet6/12", + "ifName": "Gi6/12", + "portName": null, + "ifIndex": "667", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet6/12", + "ifPhysAddress": "8843e1d6f05b", + "ifHardType": null, + "ifLastChange": "24979", + "ifVlan": "310", + "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": "151", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "4541630496", + "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": "7757555416", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "948127468029", + "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": "91288749", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "121211626", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "49844482", + "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": "GigabitEthernet6/13", + "ifName": "Gi6/13", + "portName": null, + "ifIndex": "668", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet6/13", + "ifPhysAddress": "8843e1d6f05c", + "ifHardType": null, + "ifLastChange": "24318", + "ifVlan": "901", + "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": "GigabitEthernet6/14", + "ifName": "Gi6/14", + "portName": null, + "ifIndex": "669", + "ifSpeed": "100000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet6/14", + "ifPhysAddress": "8843e1d6f05d", + "ifHardType": null, + "ifLastChange": "2086316497", + "ifVlan": "310", + "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": "19191219", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "4560220757", + "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": "4260361189", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "950134744517", + "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": "6356", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "40246", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "91244564", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "175516", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "51069054", + "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": "GigabitEthernet6/15", + "ifName": "Gi6/15", + "portName": null, + "ifIndex": "670", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet6/15", + "ifPhysAddress": "8843e1d6f05e", + "ifHardType": null, + "ifLastChange": "25367", + "ifVlan": "30", + "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": "3622", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "2102011", + "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": "29659798", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "147738442823", + "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": "47254", + "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": "2037339366", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "459601", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "110714159", + "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": "GigabitEthernet6/16", + "ifName": "Gi6/16", + "portName": null, + "ifIndex": "671", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet6/16", + "ifPhysAddress": "8843e1d6f05f", + "ifHardType": null, + "ifLastChange": "24318", + "ifVlan": "203", + "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": "GigabitEthernet6/17", + "ifName": "Gi6/17", + "portName": null, + "ifIndex": "672", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet6/17", + "ifPhysAddress": "8843e1d6f060", + "ifHardType": null, + "ifLastChange": "24332", + "ifVlan": "30", + "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": "GigabitEthernet6/18", + "ifName": "Gi6/18", + "portName": null, + "ifIndex": "673", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet6/18", + "ifPhysAddress": "8843e1d6f061", + "ifHardType": null, + "ifLastChange": "24355", + "ifVlan": "454", + "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": "GigabitEthernet6/19", + "ifName": "Gi6/19", + "portName": null, + "ifIndex": "674", + "ifSpeed": "100000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet6/19", + "ifPhysAddress": "8843e1d6f062", + "ifHardType": null, + "ifLastChange": "1500676320", + "ifVlan": "30", + "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": "2812884", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "6856741", + "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": "249189872", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "147172048634", + "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": "693573", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "95", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "2037315139", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "0", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "110713703", + "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": "GigabitEthernet6/20", + "ifName": "Gi6/20", + "portName": null, + "ifIndex": "675", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet6/20", + "ifPhysAddress": "8843e1d6f063", + "ifHardType": null, + "ifLastChange": "24402", + "ifVlan": "454", + "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": "GigabitEthernet6/21", + "ifName": "Gi6/21", + "portName": null, + "ifIndex": "676", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet6/21", + "ifPhysAddress": "8843e1d6f064", + "ifHardType": null, + "ifLastChange": "6261", + "ifVlan": "203", + "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": "2224236", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "2224236", + "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": "26479", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "26479", + "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": "GigabitEthernet6/22", + "ifName": "Gi6/22", + "portName": null, + "ifIndex": "677", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet6/22", + "ifPhysAddress": "8843e1d6f065", + "ifHardType": null, + "ifLastChange": "8531227", + "ifVlan": "912", + "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": "7361956", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "7051326", + "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": "1651932364", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "2128638262", + "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": "801", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "128397", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "309111", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "13490950", + "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": "GigabitEthernet6/23", + "ifName": "Gi6/23", + "portName": null, + "ifIndex": "678", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet6/23", + "ifPhysAddress": "8843e1d6f066", + "ifHardType": null, + "ifLastChange": "24512", + "ifVlan": "911", + "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": "GigabitEthernet6/24", + "ifName": "Gi6/24", + "portName": null, + "ifIndex": "679", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet6/24", + "ifPhysAddress": "8843e1d6f067", + "ifHardType": null, + "ifLastChange": "1750475603", + "ifVlan": "30", + "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": "105316189", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "52063540", + "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": "120677306742", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "164448139042", + "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": "47256", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "3621122", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "2033676195", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "0", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "110712158", + "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": "GigabitEthernet6/25", + "ifName": "Gi6/25", + "portName": null, + "ifIndex": "680", + "ifSpeed": "100000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet6/25", + "ifPhysAddress": "8843e1d6f068", + "ifHardType": null, + "ifLastChange": "25531", + "ifVlan": "30", + "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": "1454108", + "ifOutUcastPkts_prev": "0", + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": "1", + "ifInErrors_prev": "0", + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": "0", + "ifOutErrors_prev": "0", + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": "1128", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "146758252188", + "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": "693588", + "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": "2037339235", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "0", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "110714156", + "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": "GigabitEthernet6/26", + "ifName": "Gi6/26", + "portName": null, + "ifIndex": "681", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet6/26", + "ifPhysAddress": "8843e1d6f069", + "ifHardType": null, + "ifLastChange": "24556", + "ifVlan": "454", + "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": "GigabitEthernet6/27", + "ifName": "Gi6/27", + "portName": null, + "ifIndex": "682", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet6/27", + "ifPhysAddress": "8843e1d6f06a", + "ifHardType": null, + "ifLastChange": "6345", + "ifVlan": "454", + "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": "2224236", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "2224236", + "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": "26479", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "26479", + "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": "GigabitEthernet6/28", + "ifName": "Gi6/28", + "portName": null, + "ifIndex": "683", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet6/28", + "ifPhysAddress": "8843e1d6f06b", + "ifHardType": null, + "ifLastChange": "24566", + "ifVlan": "30", + "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": "GigabitEthernet6/29", + "ifName": "Gi6/29", + "portName": null, + "ifIndex": "684", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet6/29", + "ifPhysAddress": "8843e1d6f06c", + "ifHardType": null, + "ifLastChange": "24575", + "ifVlan": "902", + "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": "GigabitEthernet6/30", + "ifName": "Gi6/30", + "portName": null, + "ifIndex": "685", + "ifSpeed": "100000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet6/30", + "ifPhysAddress": "8843e1d6f06d", + "ifHardType": null, + "ifLastChange": "25561", + "ifVlan": "912", + "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": "1714730", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "1888495", + "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": "394358136", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "1942231111", + "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": "867", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "128336", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "133710", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "15063574", + "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": "GigabitEthernet6/31", + "ifName": "Gi6/31", + "portName": null, + "ifIndex": "686", + "ifSpeed": "100000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet6/31", + "ifPhysAddress": "8843e1d6f06e", + "ifHardType": null, + "ifLastChange": "2086601215", + "ifVlan": "310", + "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": "16214416", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "4557314074", + "ifOutUcastPkts_prev": "0", + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": "1", + "ifInErrors_prev": "0", + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": "0", + "ifOutErrors_prev": "0", + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": "3904121012", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "949850948049", + "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": "6380", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "40241", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "91242262", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "175433", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "51069053", + "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": "GigabitEthernet6/32", + "ifName": "Gi6/32", + "portName": null, + "ifIndex": "687", + "ifSpeed": "100000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet6/32", + "ifPhysAddress": "8843e1d6f06f", + "ifHardType": null, + "ifLastChange": "2086302114", + "ifVlan": "310", + "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": "16793164", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "4557424460", + "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": "3971759957", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "949815347755", + "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": "6354", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "40241", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "91238211", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "175456", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "51067103", + "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": "GigabitEthernet6/33", + "ifName": "Gi6/33", + "portName": null, + "ifIndex": "688", + "ifSpeed": "100000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet6/33", + "ifPhysAddress": "8843e1d6f070", + "ifHardType": null, + "ifLastChange": "2086599971", + "ifVlan": "310", + "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": "16214589", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "4557288416", + "ifOutUcastPkts_prev": "0", + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": "1", + "ifInErrors_prev": "0", + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": "0", + "ifOutErrors_prev": "0", + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": "3904220388", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "949845601254", + "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": "6362", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "40244", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "91242164", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "175432", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "51069076", + "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": "GigabitEthernet6/34", + "ifName": "Gi6/34", + "portName": null, + "ifIndex": "689", + "ifSpeed": "100000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet6/34", + "ifPhysAddress": "8843e1d6f071", + "ifHardType": null, + "ifLastChange": "2086301818", + "ifVlan": "310", + "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": "33655394", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "4574318006", + "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": "7970546548", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "951677359664", + "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": "6349", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "40240", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "91237707", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "175462", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "51066887", + "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": "GigabitEthernet6/35", + "ifName": "Gi6/35", + "portName": null, + "ifIndex": "690", + "ifSpeed": "100000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet6/35", + "ifPhysAddress": "8843e1d6f072", + "ifHardType": null, + "ifLastChange": "2086310788", + "ifVlan": "310", + "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": "16215096", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "4556953014", + "ifOutUcastPkts_prev": "0", + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": "2", + "ifInErrors_prev": "0", + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": "0", + "ifOutErrors_prev": "0", + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": "3904936807", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "949776134901", + "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": "6363", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "40161", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "91240393", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "175379", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "51067929", + "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": "GigabitEthernet6/36", + "ifName": "Gi6/36", + "portName": null, + "ifIndex": "691", + "ifSpeed": "100000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet6/36", + "ifPhysAddress": "8843e1d6f073", + "ifHardType": null, + "ifLastChange": "2086605470", + "ifVlan": "310", + "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": "16815815", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "4557996291", + "ifOutUcastPkts_prev": "0", + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": "2", + "ifInErrors_prev": "0", + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": "0", + "ifOutErrors_prev": "0", + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": "3979684356", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "949931124314", + "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": "6380", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "40245", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "91242600", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "175462", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "51069177", + "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": "GigabitEthernet6/37", + "ifName": "Gi6/37", + "portName": null, + "ifIndex": "692", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet6/37", + "ifPhysAddress": "8843e1d6f074", + "ifHardType": null, + "ifLastChange": "24682", + "ifVlan": "310", + "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": "GigabitEthernet6/38", + "ifName": "Gi6/38", + "portName": null, + "ifIndex": "693", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet6/38", + "ifPhysAddress": "8843e1d6f075", + "ifHardType": null, + "ifLastChange": "24696", + "ifVlan": "310", + "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": "GigabitEthernet6/39", + "ifName": "Gi6/39", + "portName": null, + "ifIndex": "694", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet6/39", + "ifPhysAddress": "8843e1d6f076", + "ifHardType": null, + "ifLastChange": "6651", + "ifVlan": "901", + "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": "GigabitEthernet6/40", + "ifName": "Gi6/40", + "portName": null, + "ifIndex": "695", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet6/40", + "ifPhysAddress": "8843e1d6f077", + "ifHardType": null, + "ifLastChange": "2054386518", + "ifVlan": "30", + "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": "1759573", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "8599955", + "ifOutUcastPkts_prev": "0", + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": "2", + "ifInErrors_prev": "0", + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": "0", + "ifOutErrors_prev": "0", + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": "346173973", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "18705889397", + "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": "44", + "ifInDiscards_prev": "0", + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": "2877", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "26717", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "94122272", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "34444", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "4316498", + "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": "GigabitEthernet6/41", + "ifName": "Gi6/41", + "portName": null, + "ifIndex": "696", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet6/41", + "ifPhysAddress": "8843e1d6f078", + "ifHardType": null, + "ifLastChange": "25728", + "ifVlan": "1", + "ifTrunk": "dot1Q", + "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": "45203295018", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "64863470586", + "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": "14915138056755", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "27651749381026", + "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": "84348", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "109409", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "2612396680", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "99263679", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "448852899", + "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": "GigabitEthernet6/42", + "ifName": "Gi6/42", + "portName": null, + "ifIndex": "697", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet6/42", + "ifPhysAddress": "8843e1d6f079", + "ifHardType": null, + "ifLastChange": "25728", + "ifVlan": "1", + "ifTrunk": "dot1Q", + "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": "9360127487", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "12879901397", + "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": "935226067957", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "3742173412082", + "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": "1270224", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "819705", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "7810545", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "20866634", + "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": "GigabitEthernet6/43", + "ifName": "Gi6/43", + "portName": null, + "ifIndex": "698", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet6/43", + "ifPhysAddress": "8843e1d6f07a", + "ifHardType": null, + "ifLastChange": "24742", + "ifVlan": "454", + "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": "GigabitEthernet6/44", + "ifName": "Gi6/44", + "portName": null, + "ifIndex": "699", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet6/44", + "ifPhysAddress": "8843e1d6f07b", + "ifHardType": null, + "ifLastChange": "24752", + "ifVlan": "454", + "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": "GigabitEthernet6/45", + "ifName": "Gi6/45", + "portName": null, + "ifIndex": "700", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet6/45", + "ifPhysAddress": "8843e1d6f07c", + "ifHardType": null, + "ifLastChange": "24764", + "ifVlan": "454", + "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": "GigabitEthernet6/46", + "ifName": "Gi6/46", + "portName": null, + "ifIndex": "701", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet6/46", + "ifPhysAddress": "8843e1d6f07d", + "ifHardType": null, + "ifLastChange": "6934", + "ifVlan": "454", + "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": "GigabitEthernet6/47", + "ifName": "Gi6/47", + "portName": null, + "ifIndex": "702", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet6/47", + "ifPhysAddress": "8843e1d6f07e", + "ifHardType": null, + "ifLastChange": "6980", + "ifVlan": "454", + "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": "GigabitEthernet6/48", + "ifName": "Gi6/48", + "portName": null, + "ifIndex": "703", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet6/48", + "ifPhysAddress": "8843e1d6f07f", + "ifHardType": null, + "ifLastChange": "7026", + "ifVlan": "454", + "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": "2224236", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "2224236", + "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": "26479", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "26479", + "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": "GigabitEthernet7/1", + "ifName": "Gi7/1", + "portName": null, + "ifIndex": "704", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet7/1", + "ifPhysAddress": "8843e1d6da00", + "ifHardType": null, + "ifLastChange": "23301", + "ifVlan": "1", + "ifTrunk": "dot1Q", + "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": "27843132", + "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": "720", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "288801849637", + "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": "17632261", + "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": "3067049029", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "0", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "515305600", + "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": "GigabitEthernet7/2", + "ifName": "Gi7/2", + "portName": null, + "ifIndex": "705", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet7/2", + "ifPhysAddress": "8843e1d6da01", + "ifHardType": null, + "ifLastChange": "22976", + "ifVlan": "1", + "ifTrunk": "dot1Q", + "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": "248890617", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "284533248", + "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": "294710111040", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "607967904283", + "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": "17617582", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "17855", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "3067031812", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "0", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "515305802", + "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": "GigabitEthernet7/3", + "ifName": "Gi7/3", + "portName": null, + "ifIndex": "706", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet7/3", + "ifPhysAddress": "8843e1d6da02", + "ifHardType": null, + "ifLastChange": "22976", + "ifVlan": "1", + "ifTrunk": "dot1Q", + "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": "201585625", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "213631648", + "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": "82118951400", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "348582918450", + "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": "17632035", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "12267441", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "3093957830", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "4026224", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "561719253", + "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": "GigabitEthernet7/4", + "ifName": "Gi7/4", + "portName": null, + "ifIndex": "707", + "ifSpeed": "100000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet7/4", + "ifPhysAddress": "8843e1d6da03", + "ifHardType": null, + "ifLastChange": "2086301327", + "ifVlan": "310", + "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": "16781224", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "4557352950", + "ifOutUcastPkts_prev": "0", + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": "2", + "ifInErrors_prev": "0", + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": "0", + "ifOutErrors_prev": "0", + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": "3968229785", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "949689904525", + "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": "6365", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "40251", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "91238013", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "175470", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "49665709", + "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": "GigabitEthernet7/5", + "ifName": "Gi7/5", + "portName": null, + "ifIndex": "708", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet7/5", + "ifPhysAddress": "8843e1d6da04", + "ifHardType": null, + "ifLastChange": "22977", + "ifVlan": "1", + "ifTrunk": "dot1Q", + "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": "4708179905", + "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": "720", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "1674331459308", + "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": "17633877", + "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": "3839697480", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "0", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "3651743264", + "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": "GigabitEthernet7/6", + "ifName": "Gi7/6", + "portName": null, + "ifIndex": "709", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet7/6", + "ifPhysAddress": "8843e1d6da05", + "ifHardType": null, + "ifLastChange": "22996", + "ifVlan": "1", + "ifTrunk": "dot1Q", + "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": "27847363", + "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": "720", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "288805594562", + "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": "17618872", + "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": "3067049428", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "0", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "515305715", + "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": "GigabitEthernet7/7", + "ifName": "Gi7/7", + "portName": null, + "ifIndex": "710", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet7/7", + "ifPhysAddress": "8843e1d6da06", + "ifHardType": null, + "ifLastChange": "22998", + "ifVlan": "1", + "ifTrunk": "dot1Q", + "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": "27846762", + "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": "720", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "288805604063", + "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": "17619539", + "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": "3067049344", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "0", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "515305741", + "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": "GigabitEthernet7/8", + "ifName": "Gi7/8", + "portName": null, + "ifIndex": "711", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet7/8", + "ifPhysAddress": "8843e1d6da07", + "ifHardType": null, + "ifLastChange": "21978", + "ifVlan": "911", + "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": "GigabitEthernet7/9", + "ifName": "Gi7/9", + "portName": null, + "ifIndex": "712", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet7/9", + "ifPhysAddress": "8843e1d6da08", + "ifHardType": null, + "ifLastChange": "23037", + "ifVlan": "1", + "ifTrunk": "dot1Q", + "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": "7347534632", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "7584266303", + "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": "2216241083084", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "2193797785451", + "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": "17629676", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "37248309", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "3068976539", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "6825738", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "558954905", + "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": "GigabitEthernet7/10", + "ifName": "Gi7/10", + "portName": null, + "ifIndex": "713", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet7/10", + "ifPhysAddress": "8843e1d6da09", + "ifHardType": null, + "ifLastChange": "23045", + "ifVlan": "1", + "ifTrunk": "dot1Q", + "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": "28013245", + "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": "720", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "296740757324", + "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": "17620813", + "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": "3106224509", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "0", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "565743504", + "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": "GigabitEthernet7/11", + "ifName": "Gi7/11", + "portName": null, + "ifIndex": "714", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet7/11", + "ifPhysAddress": "8843e1d6da0a", + "ifHardType": null, + "ifLastChange": "23048", + "ifVlan": "1", + "ifTrunk": "dot1Q", + "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": "5880503294", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "5618192603", + "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": "3811617108319", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "2579829207347", + "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": "17632266", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "3506004", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "3102718783", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "1653796", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "564339562", + "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": "GigabitEthernet7/12", + "ifName": "Gi7/12", + "portName": null, + "ifIndex": "715", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet7/12", + "ifPhysAddress": "8843e1d6da0b", + "ifHardType": null, + "ifLastChange": "7505", + "ifVlan": "454", + "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": "2214240", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "2214240", + "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": "26360", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "26360", + "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": "GigabitEthernet7/13", + "ifName": "Gi7/13", + "portName": null, + "ifIndex": "716", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet7/13", + "ifPhysAddress": "8843e1d6da0c", + "ifHardType": null, + "ifLastChange": "7541", + "ifVlan": "30", + "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": "GigabitEthernet7/14", + "ifName": "Gi7/14", + "portName": null, + "ifIndex": "717", + "ifSpeed": "100000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet7/14", + "ifPhysAddress": "8843e1d6da0d", + "ifHardType": null, + "ifLastChange": "2086604254", + "ifVlan": "310", + "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": "16720627", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "4557851520", + "ifOutUcastPkts_prev": "0", + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": "4", + "ifInErrors_prev": "0", + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": "0", + "ifOutErrors_prev": "0", + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": "3687554185", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "949907644997", + "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": "6372", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "40236", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "91242904", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "175461", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "51069246", + "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": "GigabitEthernet7/15", + "ifName": "Gi7/15", + "portName": null, + "ifIndex": "718", + "ifSpeed": "100000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet7/15", + "ifPhysAddress": "8843e1d6da0e", + "ifHardType": null, + "ifLastChange": "2086308402", + "ifVlan": "310", + "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": "16144729", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "4556755436", + "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": "3625737690", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "949739792737", + "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": "6361", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "40236", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "91240011", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "175479", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "51067653", + "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": "GigabitEthernet7/16", + "ifName": "Gi7/16", + "portName": null, + "ifIndex": "719", + "ifSpeed": "100000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet7/16", + "ifPhysAddress": "8843e1d6da0f", + "ifHardType": null, + "ifLastChange": "22612", + "ifVlan": "310", + "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": "34970980", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "4576655380", + "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": "7253250398", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "951949153849", + "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": "6368", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "40236", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "91248900", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "175482", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "49669069", + "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": "GigabitEthernet7/17", + "ifName": "Gi7/17", + "portName": null, + "ifIndex": "720", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet7/17", + "ifPhysAddress": "8843e1d6da10", + "ifHardType": null, + "ifLastChange": "22048", + "ifVlan": "30", + "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": "GigabitEthernet7/18", + "ifName": "Gi7/18", + "portName": null, + "ifIndex": "721", + "ifSpeed": "100000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet7/18", + "ifPhysAddress": "8843e1d6da11", + "ifHardType": null, + "ifLastChange": "2086604821", + "ifVlan": "310", + "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": "16797313", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "4557967193", + "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": "3972732030", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "949926816615", + "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": "6359", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "40261", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "91242900", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "175461", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "51069167", + "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": "GigabitEthernet7/19", + "ifName": "Gi7/19", + "portName": null, + "ifIndex": "722", + "ifSpeed": "100000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet7/19", + "ifPhysAddress": "8843e1d6da12", + "ifHardType": null, + "ifLastChange": "23096", + "ifVlan": "30", + "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": "1469263", + "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": "1308", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "146766502972", + "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": "413305", + "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": "2037342166", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "0", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "110714322", + "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": "GigabitEthernet7/20", + "ifName": "Gi7/20", + "portName": null, + "ifIndex": "723", + "ifSpeed": "100000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet7/20", + "ifPhysAddress": "8843e1d6da13", + "ifHardType": null, + "ifLastChange": "618785344", + "ifVlan": "310", + "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": "4540465864", + "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": "2532", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "982666078801", + "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": "319227", + "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": "579433356", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "0", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "70511521", + "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": "GigabitEthernet7/21", + "ifName": "Gi7/21", + "portName": null, + "ifIndex": "724", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet7/21", + "ifPhysAddress": "8843e1d6da14", + "ifHardType": null, + "ifLastChange": "7131275", + "ifVlan": "30", + "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": "3467558834", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "3159896964", + "ifOutUcastPkts_prev": "0", + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": "2", + "ifInErrors_prev": "0", + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": "0", + "ifOutErrors_prev": "0", + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": "2437854742823", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "2476785152775", + "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": "27", + "ifInDiscards_prev": "0", + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": "47494", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "143986", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "2037180583", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "221724", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "115269598", + "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": "GigabitEthernet7/22", + "ifName": "Gi7/22", + "portName": null, + "ifIndex": "725", + "ifSpeed": "100000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet7/22", + "ifPhysAddress": "8843e1d6da15", + "ifHardType": null, + "ifLastChange": "2086309120", + "ifVlan": "310", + "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": "16221489", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "4556923308", + "ifOutUcastPkts_prev": "0", + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": "1", + "ifInErrors_prev": "0", + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": "0", + "ifOutErrors_prev": "0", + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": "3906327798", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "949769884436", + "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": "6375", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "40225", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "91240402", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "175428", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "51067842", + "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": "GigabitEthernet7/23", + "ifName": "Gi7/23", + "portName": null, + "ifIndex": "726", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet7/23", + "ifPhysAddress": "8843e1d6da16", + "ifHardType": null, + "ifLastChange": "7837", + "ifVlan": "30", + "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": "2214240", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "2214240", + "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": "26360", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "26360", + "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": "GigabitEthernet7/24", + "ifName": "Gi7/24", + "portName": null, + "ifIndex": "727", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet7/24", + "ifPhysAddress": "8843e1d6da17", + "ifHardType": null, + "ifLastChange": "250608525", + "ifVlan": "912", + "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": "6348002", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "6275697", + "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": "1172356005", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "2175380723", + "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": "825", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "128388", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "309223", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "14888028", + "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": "GigabitEthernet7/25", + "ifName": "Gi7/25", + "portName": null, + "ifIndex": "728", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet7/25", + "ifPhysAddress": "8843e1d6da18", + "ifHardType": null, + "ifLastChange": "7911", + "ifVlan": "1", + "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": "GigabitEthernet7/26", + "ifName": "Gi7/26", + "portName": null, + "ifIndex": "729", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet7/26", + "ifPhysAddress": "8843e1d6da19", + "ifHardType": null, + "ifLastChange": "23100", + "ifVlan": "310", + "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": "4541637199", + "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": "25273059", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "948129200682", + "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": "91289086", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "138101", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "49844531", + "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": "GigabitEthernet7/27", + "ifName": "Gi7/27", + "portName": null, + "ifIndex": "730", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet7/27", + "ifPhysAddress": "8843e1d6da1a", + "ifHardType": null, + "ifLastChange": "23123", + "ifVlan": "310", + "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": "3475790054", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "6027594135", + "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": "987891140493", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "1169290425966", + "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": "521696", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "90767546", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "248905", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "52693549", + "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": "GigabitEthernet7/28", + "ifName": "Gi7/28", + "portName": null, + "ifIndex": "731", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet7/28", + "ifPhysAddress": "8843e1d6da1b", + "ifHardType": null, + "ifLastChange": "2086622242", + "ifVlan": "991", + "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": "985102712", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "713885943", + "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": "959790203495", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "202302484227", + "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": "2623519", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "145", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "510483", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "11503048", + "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": "GigabitEthernet7/29", + "ifName": "Gi7/29", + "portName": null, + "ifIndex": "732", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet7/29", + "ifPhysAddress": "8843e1d6da1c", + "ifHardType": null, + "ifLastChange": "2086622242", + "ifVlan": "990", + "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": "729799668", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "1018004138", + "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": "203744715035", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "978554018253", + "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": "23481", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "188388498", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "546235", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "12693538", + "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": "GigabitEthernet7/30", + "ifName": "Gi7/30", + "portName": null, + "ifIndex": "733", + "ifSpeed": "100000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet7/30", + "ifPhysAddress": "8843e1d6da1d", + "ifHardType": null, + "ifLastChange": "2086622873", + "ifVlan": "1", + "ifTrunk": "dot1Q", + "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": "285514450", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "300051101", + "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": "63007057962", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "98381421395", + "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": "67", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "20218061", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "1585848", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "61176903", + "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": "GigabitEthernet7/31", + "ifName": "Gi7/31", + "portName": null, + "ifIndex": "734", + "ifSpeed": "100000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet7/31", + "ifPhysAddress": "8843e1d6da1e", + "ifHardType": null, + "ifLastChange": "432339084", + "ifVlan": "606", + "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": "14065", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "700010", + "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": "1359356564", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "685358110", + "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": "1", + "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": "135605", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "146", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "10845271", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "2720758", + "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": "GigabitEthernet7/32", + "ifName": "Gi7/32", + "portName": null, + "ifIndex": "735", + "ifSpeed": "100000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet7/32", + "ifPhysAddress": "8843e1d6da1f", + "ifHardType": null, + "ifLastChange": "2086622885", + "ifVlan": "1", + "ifTrunk": "dot1Q", + "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": "252231573", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "230594134", + "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": "92489617671", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "55364081298", + "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": "9", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "166", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "425128", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "12272872", + "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": "GigabitEthernet7/33", + "ifName": "Gi7/33", + "portName": null, + "ifIndex": "736", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet7/33", + "ifPhysAddress": "8843e1d6da20", + "ifHardType": null, + "ifLastChange": "2086783412", + "ifVlan": "1", + "ifTrunk": "dot1Q", + "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": "152996288", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "149683876", + "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": "42214030203", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "45681086307", + "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": "28", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "10264", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "390020", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "33111948", + "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": "GigabitEthernet7/34", + "ifName": "Gi7/34", + "portName": null, + "ifIndex": "737", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet7/34", + "ifPhysAddress": "8843e1d6da21", + "ifHardType": null, + "ifLastChange": "2086783333", + "ifVlan": "1", + "ifTrunk": "dot1Q", + "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": "180660838", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "179900577", + "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": "44153951009", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "32366818461", + "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": "26", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "8075400", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "2683293", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "37812665", + "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": "GigabitEthernet7/35", + "ifName": "Gi7/35", + "portName": null, + "ifIndex": "738", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet7/35", + "ifPhysAddress": "8843e1d6da22", + "ifHardType": null, + "ifLastChange": "8280", + "ifVlan": "454", + "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": "2214240", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "2214240", + "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": "26360", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "26360", + "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": "GigabitEthernet7/36", + "ifName": "Gi7/36", + "portName": null, + "ifIndex": "739", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet7/36", + "ifPhysAddress": "8843e1d6da23", + "ifHardType": null, + "ifLastChange": "2086283515", + "ifVlan": "318", + "ifTrunk": "dot1Q", + "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": "6875360", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "34263823", + "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": "5007291462", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "284039832896", + "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": "20505282", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "141", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "3062188473", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "21042329", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "452277883", + "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": "GigabitEthernet7/37", + "ifName": "Gi7/37", + "portName": null, + "ifIndex": "740", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet7/37", + "ifPhysAddress": "8843e1d6da24", + "ifHardType": null, + "ifLastChange": "2086749216", + "ifVlan": "99", + "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": "15507", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "106801973905", + "ifOutUcastPkts_prev": "0", + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": "3746444", + "ifInErrors_prev": "0", + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": "0", + "ifOutErrors_prev": "0", + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": "472327867", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "44247744094277", + "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": "112", + "ifInDiscards_prev": "0", + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": "6645733", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "539329", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "1304307040", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "3191701", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "376238551", + "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": "GigabitEthernet7/38", + "ifName": "Gi7/38", + "portName": null, + "ifIndex": "741", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet7/38", + "ifPhysAddress": "8843e1d6da25", + "ifHardType": null, + "ifLastChange": "22250", + "ifVlan": "99", + "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": "GigabitEthernet7/39", + "ifName": "Gi7/39", + "portName": null, + "ifIndex": "742", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet7/39", + "ifPhysAddress": "8843e1d6da26", + "ifHardType": null, + "ifLastChange": "2086749716", + "ifVlan": "30", + "ifTrunk": "dot1Q", + "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": "1267306069", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "2755959002", + "ifOutUcastPkts_prev": "0", + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": "8", + "ifInErrors_prev": "0", + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": "0", + "ifOutErrors_prev": "0", + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": "104951194773", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "1076884124675", + "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": "65", + "ifInDiscards_prev": "0", + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": "20505051", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "414043", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "3061447838", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "1448285", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "471938764", + "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": "GigabitEthernet7/40", + "ifName": "Gi7/40", + "portName": null, + "ifIndex": "743", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet7/40", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "22289", + "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": "GigabitEthernet7/41", + "ifName": "Gi7/41", + "portName": null, + "ifIndex": "744", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet7/41", + "ifPhysAddress": "8843e1d6da28", + "ifHardType": null, + "ifLastChange": "8517", + "ifVlan": "454", + "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": "GigabitEthernet7/42", + "ifName": "Gi7/42", + "portName": null, + "ifIndex": "745", + "ifSpeed": "100000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet7/42", + "ifPhysAddress": "8843e1d6da29", + "ifHardType": null, + "ifLastChange": "22998", + "ifVlan": "310", + "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": "18684874", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "4560355019", + "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": "3879265925", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "950137291803", + "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": "6351", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "40231", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "91248865", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "175447", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "49669046", + "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": "GigabitEthernet7/43", + "ifName": "Gi7/43", + "portName": null, + "ifIndex": "746", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet7/43", + "ifPhysAddress": "8843e1d6da2a", + "ifHardType": null, + "ifLastChange": "8590", + "ifVlan": "454", + "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": "GigabitEthernet7/44", + "ifName": "Gi7/44", + "portName": null, + "ifIndex": "747", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet7/44", + "ifPhysAddress": "8843e1d6da2b", + "ifHardType": null, + "ifLastChange": "8632", + "ifVlan": "454", + "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": "2214240", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "2214240", + "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": "26360", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "26360", + "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": "GigabitEthernet7/45", + "ifName": "Gi7/45", + "portName": null, + "ifIndex": "748", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet7/45", + "ifPhysAddress": "8843e1d6da2c", + "ifHardType": null, + "ifLastChange": "2086283546", + "ifVlan": "318", + "ifTrunk": "dot1Q", + "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": "742406070", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "733357504", + "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": "167682453661", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "436884750545", + "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": "20505052", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "5740", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "3062182736", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "21042329", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "452277840", + "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": "GigabitEthernet7/46", + "ifName": "Gi7/46", + "portName": null, + "ifIndex": "749", + "ifSpeed": "100000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet7/46", + "ifPhysAddress": "8843e1d6da2d", + "ifHardType": null, + "ifLastChange": "2086316681", + "ifVlan": "29", + "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": "44719780", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "51501775", + "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": "5703437324", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "7283381448", + "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": "13", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "2603265", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "0", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "11860722", + "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": "GigabitEthernet7/47", + "ifName": "Gi7/47", + "portName": null, + "ifIndex": "750", + "ifSpeed": "1000000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet7/47", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "23141", + "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": "5003584580", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "5448353812", + "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": "1968230518189", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "4241244782128", + "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": "287292", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "62", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "12", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "13874859", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "3411580", + "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": "GigabitEthernet7/48", + "ifName": "Gi7/48", + "portName": null, + "ifIndex": "751", + "ifSpeed": "100000000", + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": "100", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": "1500", + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet7/48", + "ifPhysAddress": "8843e1d6da2f", + "ifHardType": null, + "ifLastChange": "23366", + "ifVlan": "30", + "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": "68982018", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "69543361", + "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": "20567723193", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "153422004758", + "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": "693589", + "ifOutDiscards_prev": "0", + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": "0", + "ifInUnknownProtos_prev": "0", + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": "70129", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "2037271622", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "0", + "ifInMulticastPkts_prev": "0", + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": "110714312", + "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": "Vlan419", + "ifName": "Vl419", + "portName": null, + "ifIndex": "769", + "ifSpeed": "1000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Vlan419", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "15011", + "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": "41034712264", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "33689794533", + "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": "48628199967528", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "34872391622676", + "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": "1664", + "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": "48614766", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "0", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "12650", + "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": "Vlan422", + "ifName": "Vl422", + "portName": null, + "ifIndex": "770", + "ifSpeed": "1000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Vlan422", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "15017", + "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": "33825774644", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "41043506578", + "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": "35136503720753", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "48460040004218", + "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": "10801819", + "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": "Vlan430", + "ifName": "Vl430", + "portName": null, + "ifIndex": "774", + "ifSpeed": "1000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Vlan430", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "15017", + "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": "2881452907", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "9862636489", + "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": "508026185862", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "13287010883355", + "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": "10766522", + "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": "Vlan431", + "ifName": "Vl431", + "portName": null, + "ifIndex": "775", + "ifSpeed": "1000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Vlan431", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "15017", + "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": "9029564000", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "2619588304", + "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": "12149220041766", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "354556145381", + "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": "9947724", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "0", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "153", + "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": "Vlan432", + "ifName": "Vl432", + "portName": null, + "ifIndex": "776", + "ifSpeed": "1000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Vlan432", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "15013", + "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": "999645757", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "451925929", + "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": "1205558697204", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "168892675143", + "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": "9200242", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "0", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "422", + "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": "Vlan433", + "ifName": "Vl433", + "portName": null, + "ifIndex": "785", + "ifSpeed": "1000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Vlan433", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "15013", + "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": "1584", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "7813820", + "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": "562860846", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "484368692", + "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": "8550278", + "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": "Vlan434", + "ifName": "Vl434", + "portName": null, + "ifIndex": "792", + "ifSpeed": "1000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Vlan434", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "15012", + "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": "8280129601", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "35558250853", + "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": "1491405134539", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "48483085602312", + "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": "10822441", + "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": "Vlan435", + "ifName": "Vl435", + "portName": null, + "ifIndex": "793", + "ifSpeed": "1000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Vlan435", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "15012", + "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": "3276263710", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "4405868281", + "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": "2601515460713", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "3981414472520", + "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": "10899968", + "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": "Vlan436", + "ifName": "Vl436", + "portName": null, + "ifIndex": "794", + "ifSpeed": "1000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Vlan436", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "15017", + "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": "38427239488", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "9922439123", + "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": "52145430042737", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "2614112399682", + "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": "11003854", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "0", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "5099", + "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": "Vlan428", + "ifName": "Vl428", + "portName": null, + "ifIndex": "801", + "ifSpeed": "1000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Vlan428", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "15012", + "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": "11240132225", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "3782729705", + "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": "15005606797762", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "1844898956305", + "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": "10258059", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "0", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "18", + "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": "Vlan441", + "ifName": "Vl441", + "portName": null, + "ifIndex": "802", + "ifSpeed": "1000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Vlan441", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "15017", + "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": "10584007", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "31441506", + "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": "5537437547", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "26768688211", + "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": "9227598", + "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": "Vlan442", + "ifName": "Vl442", + "portName": null, + "ifIndex": "803", + "ifSpeed": "1000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Vlan442", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "15017", + "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": "3909829031", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "11363643389", + "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": "1898911515391", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "14988046542778", + "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": "13158784", + "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": "Vlan437", + "ifName": "Vl437", + "portName": null, + "ifIndex": "804", + "ifSpeed": "1000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Vlan437", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "15017", + "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": "767010880", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "1118622993", + "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": "205159736314", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "665984941077", + "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": "29389170", + "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": "Vlan438", + "ifName": "Vl438", + "portName": null, + "ifIndex": "805", + "ifSpeed": "1000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Vlan438", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "15017", + "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": "1489412480", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "556636178", + "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": "1840034736129", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "171526638597", + "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": "14416711", + "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": "Vlan439", + "ifName": "Vl439", + "portName": null, + "ifIndex": "806", + "ifSpeed": "1000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Vlan439", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "15017", + "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": "5594667900", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "2084412723", + "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": "6710987230566", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "492076902820", + "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": "23350589", + "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": "Vlan440", + "ifName": "Vl440", + "portName": null, + "ifIndex": "807", + "ifSpeed": "1000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Vlan440", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "15017", + "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": "1759958302", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "5882846373", + "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": "426903852857", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "7810866068183", + "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": "10766485", + "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": "Vlan443", + "ifName": "Vl443", + "portName": null, + "ifIndex": "810", + "ifSpeed": "1000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Vlan443", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "15012", + "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": "3641145", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "12976763", + "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": "3072389745", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "3174173686", + "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": "8605419", + "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": "Vlan444", + "ifName": "Vl444", + "portName": null, + "ifIndex": "811", + "ifSpeed": "1000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Vlan444", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "15012", + "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": "5402561", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "13805490", + "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": "3287855055", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "3059438529", + "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": "8550460", + "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": "Vlan446", + "ifName": "Vl446", + "portName": null, + "ifIndex": "814", + "ifSpeed": "1000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Vlan446", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "15017", + "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": "4726457906", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "3148748220", + "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": "3233215743143", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "1174349572255", + "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": "8663549", + "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": "Vlan445", + "ifName": "Vl445", + "portName": null, + "ifIndex": "815", + "ifSpeed": "1000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Vlan445", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "15017", + "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": "3142308425", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "4736937119", + "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": "1188731769857", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "3214612311856", + "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": "29396534", + "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": "Vlan448", + "ifName": "Vl448", + "portName": null, + "ifIndex": "818", + "ifSpeed": "1000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Vlan448", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "15017", + "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": "1245931256", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "1340320338", + "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": "171529492088", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "1077763603861", + "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": "8550250", + "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": "Vlan456", + "ifName": "Vl456", + "portName": null, + "ifIndex": "834", + "ifSpeed": "1000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Vlan456", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "15018", + "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": "35728360977", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "148988401483", + "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": "2361786072991", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "205814843716892", + "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": "13016510", + "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": "Vlan457", + "ifName": "Vl457", + "portName": null, + "ifIndex": "835", + "ifSpeed": "1000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Vlan457", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "15018", + "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": "151490768142", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "37724337653", + "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": "208532481432620", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "2713109256286", + "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": "147", + "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": "11364198", + "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": "Vlan458", + "ifName": "Vl458", + "portName": null, + "ifIndex": "836", + "ifSpeed": "1000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Vlan458", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "15018", + "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": "11638471", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "70390742", + "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": "3055600053", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "85575400674", + "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": "9407042", + "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": "Vlan462", + "ifName": "Vl462", + "portName": null, + "ifIndex": "838", + "ifSpeed": "1000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Vlan462", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "15018", + "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": "5032074", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "22637529", + "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": "3149020317", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "5728992318", + "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": "31842357", + "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": "Vlan464", + "ifName": "Vl464", + "portName": null, + "ifIndex": "848", + "ifSpeed": "1000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Vlan464", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "15018", + "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": "9600349070", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "3257514548", + "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": "12595881262967", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "1364645280379", + "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": "12215030", + "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": "Vlan465", + "ifName": "Vl465", + "portName": null, + "ifIndex": "849", + "ifSpeed": "1000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Vlan465", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "15019", + "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": "2438536928", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "8863239263", + "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": "569423246939", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "11961078908642", + "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": "13006873", + "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": "Vlan467", + "ifName": "Vl467", + "portName": null, + "ifIndex": "850", + "ifSpeed": "1000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Vlan467", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "15019", + "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": "1024780901", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "970747562", + "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": "971417141318", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "758146929121", + "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": "8550496", + "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": "Vlan480", + "ifName": "Vl480", + "portName": null, + "ifIndex": "854", + "ifSpeed": "1000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Vlan480", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "15019", + "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": "178074086", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "181611532", + "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": "43100901116", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "27010222353", + "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": "2293179", + "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": "Vlan483", + "ifName": "Vl483", + "portName": null, + "ifIndex": "871", + "ifSpeed": "1000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Vlan483", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "15123", + "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": "172516500", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "291521421", + "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": "104528803983", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "322641381592", + "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": "13005564", + "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": "Vlan485", + "ifName": "Vl485", + "portName": null, + "ifIndex": "872", + "ifSpeed": "1000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Vlan485", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "15124", + "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": "15833", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "10025160", + "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": "786725694", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "695600590", + "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": "10788818", + "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": "Vlan475", + "ifName": "Vl475", + "portName": null, + "ifIndex": "874", + "ifSpeed": "1000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Vlan475", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "15123", + "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": "140382979", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "188181008", + "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": "104040900266", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "153707302616", + "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": "11062080", + "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": "Vlan474", + "ifName": "Vl474", + "portName": null, + "ifIndex": "875", + "ifSpeed": "1000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Vlan474", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "15123", + "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": "8254187419", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "3266176415", + "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": "10474754431010", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "1517590841933", + "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": "13603307", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "0", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "1932", + "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": "Vlan472", + "ifName": "Vl472", + "portName": null, + "ifIndex": "876", + "ifSpeed": "1000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Vlan472", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "15122", + "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": "2192480772", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "7366735718", + "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": "440298222741", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "9910997317178", + "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": "10766967", + "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": "Vlan473", + "ifName": "Vl473", + "portName": null, + "ifIndex": "877", + "ifSpeed": "1000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Vlan473", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "15123", + "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": "1141679896", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "946123553", + "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": "1090671771396", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "478127917323", + "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": "31789108", + "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": "Vlan486", + "ifName": "Vl486", + "portName": null, + "ifIndex": "883", + "ifSpeed": "1000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Vlan486", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "15124", + "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": "321785931", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "199834115", + "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": "373464674680", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "115716734694", + "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": "12360509", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "0", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "457", + "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": "Vlan484", + "ifName": "Vl484", + "portName": null, + "ifIndex": "885", + "ifSpeed": "1000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Vlan484", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "65216368", + "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": "91418449", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "124473383", + "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": "47542238209", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "84175048799", + "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": "10791096", + "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": "Vlan603", + "ifName": "Vl603", + "portName": null, + "ifIndex": "907", + "ifSpeed": "1000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Vlan603", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "230765664", + "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": "480870169", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "3490685866", + "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": "98260700629", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "4073715485304", + "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": "28101750", + "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": "Vlan604", + "ifName": "Vl604", + "portName": null, + "ifIndex": "908", + "ifSpeed": "1000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Vlan604", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "249349844", + "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": "2137568363", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "3653510004", + "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": "621482225692", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "4403105621143", + "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": "7538440", + "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": "Vlan700", + "ifName": "Vl700", + "portName": null, + "ifIndex": "909", + "ifSpeed": "1000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Vlan700", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "230789812", + "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": "7129031819", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "2626617365", + "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": "8504831771996", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "707192404798", + "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": "7613680", + "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": "Vlan494", + "ifName": "Vl494", + "portName": null, + "ifIndex": "919", + "ifSpeed": "1000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Vlan494", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "1345572844", + "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": "2629128412", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "1111732737", + "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": "3523536372009", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "563973287975", + "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": "4192352", + "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": "Vlan495", + "ifName": "Vl495", + "portName": null, + "ifIndex": "920", + "ifSpeed": "1000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Vlan495", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "1345576364", + "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": "129483760", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "301121492", + "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": "81176889943", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "344328387017", + "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": "4044167", + "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": "Vlan493", + "ifName": "Vl493", + "portName": null, + "ifIndex": "921", + "ifSpeed": "1000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Vlan493", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "1345579474", + "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": "1129858199", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "2486509771", + "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": "585619724640", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "3266265704892", + "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": "4693789", + "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": "Vlan497", + "ifName": "Vl497", + "portName": null, + "ifIndex": "925", + "ifSpeed": "1000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Vlan497", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "1552228118", + "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": "508394833", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "201215128", + "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": "694147121733", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "19098360817", + "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": "2964199", + "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": "Vlan498", + "ifName": "Vl498", + "portName": null, + "ifIndex": "926", + "ifSpeed": "1000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Vlan498", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "1552231830", + "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": "7644307", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "7578912", + "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": "7273135504", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "2124259578", + "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": "2838309", + "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": "Vlan496", + "ifName": "Vl496", + "portName": null, + "ifIndex": "927", + "ifSpeed": "1000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Vlan496", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "1552234623", + "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": "201790871", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "516971572", + "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": "21561831626", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "698754861052", + "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": "3411112", + "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": "Vlan610", + "ifName": "Vl610", + "portName": null, + "ifIndex": "938", + "ifSpeed": "1000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Vlan610", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "1820665028", + "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": "1128676", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "2549854", + "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": "308853917", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "667421756", + "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": "1465000", + "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": "Vlan611", + "ifName": "Vl611", + "portName": null, + "ifIndex": "939", + "ifSpeed": "1000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Vlan611", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "1820665171", + "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": "296303842", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "612028621", + "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": "88247723463", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "753109790265", + "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": "1464162", + "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": "Vlan250", + "ifName": "Vl250", + "portName": null, + "ifIndex": "940", + "ifSpeed": "1000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Vlan250", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "1820665600", + "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": "1194277", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "2488189", + "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": "684734371", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "292100913", + "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": "1466119", + "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": "Vlan251", + "ifName": "Vl251", + "portName": null, + "ifIndex": "941", + "ifSpeed": "1000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Vlan251", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "1820665745", + "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": "610981763", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "298513516", + "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": "755469316511", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "87108253556", + "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": "1720742", + "ifInBroadcastPkts_prev": "0", + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": "0", + "ifOutBroadcastPkts_prev": "0", + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": "104", + "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": "Vlan425", + "ifName": "Vl425", + "portName": null, + "ifIndex": "947", + "ifSpeed": "1000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Vlan425", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "1881067914", + "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": "822248", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "1190920", + "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": "140957231", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "74385762", + "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": "915391", + "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": "Vlan424", + "ifName": "Vl424", + "portName": null, + "ifIndex": "948", + "ifSpeed": "1000000000", + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": "1000", + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": "1500", + "ifType": "propVirtual", + "ifAlias": "Vlan424", + "ifPhysAddress": "0022910ac000", + "ifHardType": null, + "ifLastChange": "1882465778", + "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": "961457", + "ifInUcastPkts_prev": "0", + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": "1714050", + "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": "328605963", + "ifInOctets_prev": "0", + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": "188297736", + "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": "913462", + "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 + } + ] + } + }, + "vrf": { + "discovery": { + "vrfs": [ + { + "vrf_oid": "1", + "vrf_name": "20", + "mplsVpnVrfRouteDistinguisher": "", + "mplsVpnVrfDescription": "", + "ifIndices": "399" + }, + { + "vrf_oid": "2", + "vrf_name": "30", + "mplsVpnVrfRouteDistinguisher": "", + "mplsVpnVrfDescription": "", + "ifIndices": "398" + }, + { + "vrf_oid": "3", + "vrf_name": "40", + "mplsVpnVrfRouteDistinguisher": "", + "mplsVpnVrfDescription": "", + "ifIndices": "417" + }, + { + "vrf_oid": "4", + "vrf_name": "50", + "mplsVpnVrfRouteDistinguisher": "", + "mplsVpnVrfDescription": "", + "ifIndices": "418" + }, + { + "vrf_oid": "5", + "vrf_name": "CGN", + "mplsVpnVrfRouteDistinguisher": "", + "mplsVpnVrfDescription": "", + "ifIndices": "578,834,835,836" + }, + { + "vrf_oid": "6", + "vrf_name": "CFI", + "mplsVpnVrfRouteDistinguisher": "", + "mplsVpnVrfDescription": "", + "ifIndices": "848,849,850" + }, + { + "vrf_oid": "7", + "vrf_name": "Cne", + "mplsVpnVrfRouteDistinguisher": "", + "mplsVpnVrfDescription": "", + "ifIndices": "506,509,577,615" + }, + { + "vrf_oid": "8", + "vrf_name": "CED", + "mplsVpnVrfRouteDistinguisher": "", + "mplsVpnVrfDescription": "", + "ifIndices": "774,775,776" + }, + { + "vrf_oid": "9", + "vrf_name": "CID", + "mplsVpnVrfRouteDistinguisher": "", + "mplsVpnVrfDescription": "", + "ifIndices": "874,875,876,877" + }, + { + "vrf_oid": "10", + "vrf_name": "Crt", + "mplsVpnVrfRouteDistinguisher": "", + "mplsVpnVrfDescription": "", + "ifIndices": "535,536,538,750" + }, + { + "vrf_oid": "11", + "vrf_name": "CVA", + "mplsVpnVrfRouteDistinguisher": "", + "mplsVpnVrfDescription": "", + "ifIndices": "871,872,883,885" + }, + { + "vrf_oid": "12", + "vrf_name": "CDL", + "mplsVpnVrfRouteDistinguisher": "", + "mplsVpnVrfDescription": "", + "ifIndices": "542,543,544" + }, + { + "vrf_oid": "13", + "vrf_name": "Cte", + "mplsVpnVrfRouteDistinguisher": "", + "mplsVpnVrfDescription": "", + "ifIndices": "814,815" + }, + { + "vrf_oid": "14", + "vrf_name": "CHC", + "mplsVpnVrfRouteDistinguisher": "", + "mplsVpnVrfDescription": "", + "ifIndices": "804,805,806,807" + }, + { + "vrf_oid": "15", + "vrf_name": "CYV", + "mplsVpnVrfRouteDistinguisher": "", + "mplsVpnVrfDescription": "", + "ifIndices": "810,811" + }, + { + "vrf_oid": "16", + "vrf_name": "CTM", + "mplsVpnVrfRouteDistinguisher": "", + "mplsVpnVrfDescription": "", + "ifIndices": "792,793,794,818" + }, + { + "vrf_oid": "17", + "vrf_name": "CBE", + "mplsVpnVrfRouteDistinguisher": "", + "mplsVpnVrfDescription": "", + "ifIndices": "801,802,803,838,854" + }, + { + "vrf_oid": "18", + "vrf_name": "PIC", + "mplsVpnVrfRouteDistinguisher": "", + "mplsVpnVrfDescription": "", + "ifIndices": "769,770,785" + }, + { + "vrf_oid": "19", + "vrf_name": "O_Tit", + "mplsVpnVrfRouteDistinguisher": "", + "mplsVpnVrfDescription": "", + "ifIndices": "907,908,909" + }, + { + "vrf_oid": "20", + "vrf_name": "CCO", + "mplsVpnVrfRouteDistinguisher": "", + "mplsVpnVrfDescription": "", + "ifIndices": "919,920,921" + }, + { + "vrf_oid": "21", + "vrf_name": "CLF", + "mplsVpnVrfRouteDistinguisher": "", + "mplsVpnVrfDescription": "", + "ifIndices": "925,926,927" + }, + { + "vrf_oid": "22", + "vrf_name": "O_EXT", + "mplsVpnVrfRouteDistinguisher": "", + "mplsVpnVrfDescription": "", + "ifIndices": "938,940" + }, + { + "vrf_oid": "23", + "vrf_name": "O_INT", + "mplsVpnVrfRouteDistinguisher": "", + "mplsVpnVrfDescription": "", + "ifIndices": "939,941,947,948" + } + ] + } + } +} diff --git a/tests/data/konica.json b/tests/data/konica.json index 9dc59041b0..9322479a23 100644 --- a/tests/data/konica.json +++ b/tests/data/konica.json @@ -67,7 +67,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -173,7 +172,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -283,7 +281,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -389,7 +386,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", diff --git a/tests/data/mimosa.json b/tests/data/mimosa.json index 75b2848c8b..cd5650d2bd 100644 --- a/tests/data/mimosa.json +++ b/tests/data/mimosa.json @@ -29,7 +29,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -139,7 +138,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", diff --git a/tests/data/mimosa_b5.json b/tests/data/mimosa_b5.json index 2002d50a6c..40df87d0d1 100644 --- a/tests/data/mimosa_b5.json +++ b/tests/data/mimosa_b5.json @@ -67,7 +67,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -173,7 +172,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -279,7 +277,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -385,7 +382,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -491,7 +487,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -597,7 +592,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -703,7 +697,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -809,7 +802,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -915,7 +907,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1021,7 +1012,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1131,7 +1121,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1237,7 +1226,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1343,7 +1331,6 @@ "ifLastChange": "1526", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1449,7 +1436,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1555,7 +1541,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1661,7 +1646,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1767,7 +1751,6 @@ "ifLastChange": "13623", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1873,7 +1856,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1979,7 +1961,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2085,7 +2066,6 @@ "ifLastChange": "13927", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", diff --git a/tests/data/pmp_450.json b/tests/data/pmp_450.json index bc934683fb..f76df039fc 100644 --- a/tests/data/pmp_450.json +++ b/tests/data/pmp_450.json @@ -67,7 +67,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -173,7 +172,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -283,7 +281,6 @@ "ifLastChange": "13323925", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -389,7 +386,6 @@ "ifLastChange": "13323993", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", diff --git a/tests/data/pmp_450m.json b/tests/data/pmp_450m.json index e399fe5ec5..519384c8eb 100644 --- a/tests/data/pmp_450m.json +++ b/tests/data/pmp_450m.json @@ -67,7 +67,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -173,7 +172,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -283,7 +281,6 @@ "ifLastChange": "21205629", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -389,7 +386,6 @@ "ifLastChange": "21205629", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", diff --git a/tests/data/radlan.json b/tests/data/radlan.json index ebd9973df0..2b6ee6752a 100644 --- a/tests/data/radlan.json +++ b/tests/data/radlan.json @@ -41,7 +41,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -147,7 +146,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -253,7 +251,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -359,7 +356,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -465,7 +461,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -571,7 +566,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -677,7 +671,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -783,7 +776,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -889,7 +881,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -995,7 +986,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1101,7 +1091,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1207,7 +1196,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1313,7 +1301,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1419,7 +1406,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1525,7 +1511,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1631,7 +1616,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1737,7 +1721,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1843,7 +1826,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1949,7 +1931,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2055,7 +2036,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2161,7 +2141,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2267,7 +2246,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2373,7 +2351,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2479,7 +2456,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2585,7 +2561,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2691,7 +2666,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2797,7 +2771,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2903,7 +2876,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3009,7 +2981,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3115,7 +3086,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3221,7 +3191,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3327,7 +3296,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3433,7 +3401,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3539,7 +3506,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3645,7 +3611,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3751,7 +3716,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3857,7 +3821,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3963,7 +3926,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4069,7 +4031,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4175,7 +4136,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4281,7 +4241,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4387,7 +4346,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4493,7 +4451,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4599,7 +4556,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4705,7 +4661,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4811,7 +4766,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4917,7 +4871,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5023,7 +4976,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5129,7 +5081,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5235,7 +5186,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5341,7 +5291,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5447,7 +5396,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5553,7 +5501,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5659,7 +5606,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5765,7 +5711,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5871,7 +5816,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5977,7 +5921,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6083,7 +6026,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6189,7 +6131,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6295,7 +6236,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6401,7 +6341,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6507,7 +6446,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6613,7 +6551,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6719,7 +6656,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6825,7 +6761,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6931,7 +6866,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7037,7 +6971,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7143,7 +7076,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7249,7 +7181,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7359,7 +7290,6 @@ "ifLastChange": "2098", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7465,7 +7395,6 @@ "ifLastChange": "2100", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7571,7 +7500,6 @@ "ifLastChange": "2100", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7677,7 +7605,6 @@ "ifLastChange": "2102", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7783,7 +7710,6 @@ "ifLastChange": "2104", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7889,7 +7815,6 @@ "ifLastChange": "2106", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7995,7 +7920,6 @@ "ifLastChange": "2106", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8101,7 +8025,6 @@ "ifLastChange": "2108", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8207,7 +8130,6 @@ "ifLastChange": "2110", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8313,7 +8235,6 @@ "ifLastChange": "2110", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8419,7 +8340,6 @@ "ifLastChange": "2112", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8525,7 +8445,6 @@ "ifLastChange": "2114", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8631,7 +8550,6 @@ "ifLastChange": "2114", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8737,7 +8655,6 @@ "ifLastChange": "2116", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8843,7 +8760,6 @@ "ifLastChange": "2118", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8949,7 +8865,6 @@ "ifLastChange": "2118", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -9055,7 +8970,6 @@ "ifLastChange": "2120", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -9161,7 +9075,6 @@ "ifLastChange": "2122", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -9267,7 +9180,6 @@ "ifLastChange": "2122", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -9373,7 +9285,6 @@ "ifLastChange": "2124", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -9479,7 +9390,6 @@ "ifLastChange": "2126", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -9585,7 +9495,6 @@ "ifLastChange": "2126", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -9691,7 +9600,6 @@ "ifLastChange": "2128", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -9797,7 +9705,6 @@ "ifLastChange": "2130", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -9903,7 +9810,6 @@ "ifLastChange": "2632", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -10009,7 +9915,6 @@ "ifLastChange": "2636", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -10115,7 +10020,6 @@ "ifLastChange": "2638", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -10221,7 +10125,6 @@ "ifLastChange": "2640", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -10327,7 +10230,6 @@ "ifLastChange": "2644", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -10433,7 +10335,6 @@ "ifLastChange": "2646", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -10539,7 +10440,6 @@ "ifLastChange": "2648", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -10645,7 +10545,6 @@ "ifLastChange": "2650", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -10751,7 +10650,6 @@ "ifLastChange": "2654", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -10857,7 +10755,6 @@ "ifLastChange": "2656", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -10963,7 +10860,6 @@ "ifLastChange": "2658", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -11069,7 +10965,6 @@ "ifLastChange": "2662", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -11175,7 +11070,6 @@ "ifLastChange": "2664", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -11281,7 +11175,6 @@ "ifLastChange": "2666", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -11387,7 +11280,6 @@ "ifLastChange": "2670", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -11493,7 +11385,6 @@ "ifLastChange": "2672", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -11599,7 +11490,6 @@ "ifLastChange": "2674", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -11705,7 +11595,6 @@ "ifLastChange": "2676", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -11811,7 +11700,6 @@ "ifLastChange": "2680", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -11917,7 +11805,6 @@ "ifLastChange": "2682", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -12023,7 +11910,6 @@ "ifLastChange": "2684", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -12129,7 +12015,6 @@ "ifLastChange": "2688", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -12235,7 +12120,6 @@ "ifLastChange": "2690", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -12341,7 +12225,6 @@ "ifLastChange": "2694", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -12447,7 +12330,6 @@ "ifLastChange": "2134", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -12553,7 +12435,6 @@ "ifLastChange": "2136", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -12659,7 +12540,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -12765,7 +12645,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -12871,7 +12750,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -12977,7 +12855,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -13083,7 +12960,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -13189,7 +13065,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -13295,7 +13170,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -13401,7 +13275,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -13507,7 +13380,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -13613,7 +13485,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -13719,7 +13590,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -13825,7 +13695,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -13931,7 +13800,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -14037,7 +13905,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -14143,7 +14010,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -14249,7 +14115,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -14355,7 +14220,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -14461,7 +14325,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -14567,7 +14430,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", diff --git a/tests/data/routeros.json b/tests/data/routeros.json index 95ecb12828..29f9480318 100644 --- a/tests/data/routeros.json +++ b/tests/data/routeros.json @@ -153,7 +153,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -259,7 +258,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -365,7 +363,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -471,7 +468,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -577,7 +573,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -683,7 +678,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -789,7 +783,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -895,7 +888,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1001,7 +993,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1107,7 +1098,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1213,7 +1203,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1323,7 +1312,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1429,7 +1417,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1535,7 +1522,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1641,7 +1627,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1747,7 +1732,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1853,7 +1837,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1959,7 +1942,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2065,7 +2047,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2171,7 +2152,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2277,7 +2257,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2383,7 +2362,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", diff --git a/tests/data/screenos.json b/tests/data/screenos.json index 69e84c60b2..b1fc32c0a2 100644 --- a/tests/data/screenos.json +++ b/tests/data/screenos.json @@ -67,7 +67,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -173,7 +172,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -279,7 +277,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -385,7 +382,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -491,7 +487,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -597,7 +592,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -703,7 +697,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -809,7 +802,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -915,7 +907,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1021,7 +1012,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1127,7 +1117,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1233,7 +1222,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1339,7 +1327,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1445,7 +1432,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1551,7 +1537,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1657,7 +1642,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1763,7 +1747,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1869,7 +1852,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1975,7 +1957,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2085,7 +2066,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2191,7 +2171,6 @@ "ifLastChange": "500", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2297,7 +2276,6 @@ "ifLastChange": "500", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2403,7 +2381,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2509,7 +2486,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2615,7 +2591,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2721,7 +2696,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2827,7 +2801,6 @@ "ifLastChange": "500", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2933,7 +2906,6 @@ "ifLastChange": "500", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3039,7 +3011,6 @@ "ifLastChange": "500", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3145,7 +3116,6 @@ "ifLastChange": "500", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3251,7 +3221,6 @@ "ifLastChange": "500", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3357,7 +3326,6 @@ "ifLastChange": "500", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3463,7 +3431,6 @@ "ifLastChange": "500", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3569,7 +3536,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3675,7 +3641,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3781,7 +3746,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3887,7 +3851,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3993,7 +3956,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", diff --git a/tests/data/sixnet.json b/tests/data/sixnet.json index 02020f14b1..85834af49a 100644 --- a/tests/data/sixnet.json +++ b/tests/data/sixnet.json @@ -67,7 +67,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -173,7 +172,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -279,7 +277,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -385,7 +382,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -491,7 +487,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -597,7 +592,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -703,7 +697,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -809,7 +802,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -915,7 +907,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1021,7 +1012,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1127,7 +1117,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1233,7 +1222,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1339,7 +1327,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1445,7 +1432,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1551,7 +1537,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1657,7 +1642,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1763,7 +1747,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1869,7 +1852,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1979,7 +1961,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2085,7 +2066,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2191,7 +2171,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2297,7 +2276,6 @@ "ifLastChange": "8675", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2403,7 +2381,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2509,7 +2486,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2615,7 +2591,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2721,7 +2696,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2827,7 +2801,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2933,7 +2906,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3039,7 +3011,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3145,7 +3116,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3251,7 +3221,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3357,7 +3326,6 @@ "ifLastChange": "8675", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3463,7 +3431,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3569,7 +3536,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3675,7 +3641,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3781,7 +3746,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", diff --git a/tests/data/sslvis.json b/tests/data/sslvis.json index a5eac2e7ed..88d8aa6309 100644 --- a/tests/data/sslvis.json +++ b/tests/data/sslvis.json @@ -67,7 +67,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -173,7 +172,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -279,7 +277,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -385,7 +382,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -491,7 +487,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -597,7 +592,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -703,7 +697,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -809,7 +802,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -919,7 +911,6 @@ "ifLastChange": "226600", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1025,7 +1016,6 @@ "ifLastChange": "226600", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1131,7 +1121,6 @@ "ifLastChange": "226600", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1237,7 +1226,6 @@ "ifLastChange": "223500", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1343,7 +1331,6 @@ "ifLastChange": "178200", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1449,7 +1436,6 @@ "ifLastChange": "477089900", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1555,7 +1541,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1661,7 +1646,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", diff --git a/tests/data/stoneos.json b/tests/data/stoneos.json index 73e879af26..7dc82fa1cd 100644 --- a/tests/data/stoneos.json +++ b/tests/data/stoneos.json @@ -109,7 +109,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -215,7 +214,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -321,7 +319,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -427,7 +424,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -533,7 +529,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -639,7 +634,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -745,7 +739,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -851,7 +844,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -957,7 +949,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1063,7 +1054,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1169,7 +1159,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1275,7 +1264,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1381,7 +1369,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1487,7 +1474,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1593,7 +1579,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1699,7 +1684,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1805,7 +1789,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1911,7 +1894,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2021,7 +2003,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2127,7 +2108,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2233,7 +2213,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2339,7 +2318,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2445,7 +2423,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2551,7 +2528,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2657,7 +2633,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2763,7 +2738,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2869,7 +2843,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2975,7 +2948,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3081,7 +3053,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3187,7 +3158,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3293,7 +3263,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3399,7 +3368,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3505,7 +3473,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3611,7 +3578,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3717,7 +3683,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3823,7 +3788,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", diff --git a/tests/data/vivotek.json b/tests/data/vivotek.json index ad67071cab..f943cca87a 100644 --- a/tests/data/vivotek.json +++ b/tests/data/vivotek.json @@ -29,7 +29,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -135,7 +134,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -245,7 +243,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -351,7 +348,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", diff --git a/tests/data/voss_8404c.json b/tests/data/voss_8404c.json index a9cdd80bb8..e06a9d8391 100644 --- a/tests/data/voss_8404c.json +++ b/tests/data/voss_8404c.json @@ -67,7 +67,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -173,7 +172,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -279,7 +277,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -385,7 +382,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -491,7 +487,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -597,7 +592,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -703,7 +697,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -809,7 +802,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -915,7 +907,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1021,7 +1012,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1127,7 +1117,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1233,7 +1222,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1339,7 +1327,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1445,7 +1432,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1551,7 +1537,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1657,7 +1642,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1763,7 +1747,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1869,7 +1852,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1975,7 +1957,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2081,7 +2062,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2187,7 +2167,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2293,7 +2272,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2399,7 +2377,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2505,7 +2482,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2611,7 +2587,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2717,7 +2692,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2823,7 +2797,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2929,7 +2902,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3035,7 +3007,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3141,7 +3112,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3247,7 +3217,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3353,7 +3322,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3459,7 +3427,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3565,7 +3532,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3671,7 +3637,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3777,7 +3742,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3883,7 +3847,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3989,7 +3952,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4095,7 +4057,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4201,7 +4162,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4307,7 +4267,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4413,7 +4372,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4519,7 +4477,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4625,7 +4582,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4731,7 +4687,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4837,7 +4792,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4943,7 +4897,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5049,7 +5002,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5155,7 +5107,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5261,7 +5212,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5367,7 +5317,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5473,7 +5422,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5579,7 +5527,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5685,7 +5632,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5791,7 +5737,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5897,7 +5842,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6003,7 +5947,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6109,7 +6052,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6215,7 +6157,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6321,7 +6262,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6427,7 +6367,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6533,7 +6472,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6639,7 +6577,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6745,7 +6682,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6851,7 +6787,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6957,7 +6892,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7063,7 +6997,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7169,7 +7102,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7275,7 +7207,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7385,7 +7316,6 @@ "ifLastChange": "10300", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7491,7 +7421,6 @@ "ifLastChange": "168746600", "ifVlan": "0", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7597,7 +7526,6 @@ "ifLastChange": "168725000", "ifVlan": "0", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7703,7 +7631,6 @@ "ifLastChange": "163215700", "ifVlan": "0", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7809,7 +7736,6 @@ "ifLastChange": "101481100", "ifVlan": "0", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7915,7 +7841,6 @@ "ifLastChange": "101595600", "ifVlan": "0", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8021,7 +7946,6 @@ "ifLastChange": "101848400", "ifVlan": "0", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8127,7 +8051,6 @@ "ifLastChange": "102075800", "ifVlan": "0", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8233,7 +8156,6 @@ "ifLastChange": "109681000", "ifVlan": "0", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8339,7 +8261,6 @@ "ifLastChange": "102245200", "ifVlan": "0", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8445,7 +8366,6 @@ "ifLastChange": "102967900", "ifVlan": "0", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8551,7 +8471,6 @@ "ifLastChange": "103196800", "ifVlan": "0", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8657,7 +8576,6 @@ "ifLastChange": "111015500", "ifVlan": "0", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8763,7 +8681,6 @@ "ifLastChange": "103767100", "ifVlan": "0", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8869,7 +8786,6 @@ "ifLastChange": "67345400", "ifVlan": "0", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8975,7 +8891,6 @@ "ifLastChange": "102764700", "ifVlan": "0", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -9081,7 +8996,6 @@ "ifLastChange": "112816900", "ifVlan": "0", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -9187,7 +9101,6 @@ "ifLastChange": "16100", "ifVlan": "0", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -9293,7 +9206,6 @@ "ifLastChange": "15800", "ifVlan": "0", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -9399,7 +9311,6 @@ "ifLastChange": "102885900", "ifVlan": "0", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -9505,7 +9416,6 @@ "ifLastChange": "121213300", "ifVlan": "0", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -9611,7 +9521,6 @@ "ifLastChange": "110117900", "ifVlan": "0", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -9717,7 +9626,6 @@ "ifLastChange": "162246600", "ifVlan": "0", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -9823,7 +9731,6 @@ "ifLastChange": "172061200", "ifVlan": "0", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -9929,7 +9836,6 @@ "ifLastChange": "137386400", "ifVlan": "0", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -10035,7 +9941,6 @@ "ifLastChange": "137304500", "ifVlan": "0", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -10141,7 +10046,6 @@ "ifLastChange": "155577400", "ifVlan": "0", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -10247,7 +10151,6 @@ "ifLastChange": "137075400", "ifVlan": "0", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -10353,7 +10256,6 @@ "ifLastChange": "136983300", "ifVlan": "0", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -10459,7 +10361,6 @@ "ifLastChange": "136591000", "ifVlan": "0", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -10565,7 +10466,6 @@ "ifLastChange": "136292500", "ifVlan": "0", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -10671,7 +10571,6 @@ "ifLastChange": "136071600", "ifVlan": "0", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -10777,7 +10676,6 @@ "ifLastChange": "136000200", "ifVlan": "0", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -10883,7 +10781,6 @@ "ifLastChange": "135918400", "ifVlan": "0", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -10989,7 +10886,6 @@ "ifLastChange": "128528700", "ifVlan": "0", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -11095,7 +10991,6 @@ "ifLastChange": "128467800", "ifVlan": "0", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -11201,7 +11096,6 @@ "ifLastChange": "128235300", "ifVlan": "0", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -11307,7 +11201,6 @@ "ifLastChange": "127693600", "ifVlan": "0", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -11413,7 +11306,6 @@ "ifLastChange": "127444200", "ifVlan": "0", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -11519,7 +11411,6 @@ "ifLastChange": "127766900", "ifVlan": "0", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -11625,7 +11516,6 @@ "ifLastChange": "111837000", "ifVlan": "0", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -11731,7 +11621,6 @@ "ifLastChange": "110329200", "ifVlan": "0", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -11837,7 +11726,6 @@ "ifLastChange": "111345100", "ifVlan": "0", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -11943,7 +11831,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -12049,7 +11936,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -12155,7 +12041,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -12261,7 +12146,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -12367,7 +12251,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -12473,7 +12356,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -12579,7 +12461,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -12685,7 +12566,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -12791,7 +12671,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -12897,7 +12776,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -13003,7 +12881,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -13109,7 +12986,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -13215,7 +13091,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -13321,7 +13196,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -13427,7 +13301,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -13533,7 +13406,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -13639,7 +13511,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -13745,7 +13616,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -13851,7 +13721,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -13957,7 +13826,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -14063,7 +13931,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -14169,7 +14036,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -14275,7 +14141,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -14381,7 +14246,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -14487,7 +14351,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -14593,7 +14456,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", diff --git a/tests/data/vrp_5720.json b/tests/data/vrp_5720.json index fff3ecf7eb..462a408b64 100644 --- a/tests/data/vrp_5720.json +++ b/tests/data/vrp_5720.json @@ -67,7 +67,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -173,7 +172,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -279,7 +277,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -385,7 +382,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -491,7 +487,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -597,7 +592,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -703,7 +697,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -809,7 +802,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -915,7 +907,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1021,7 +1012,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1127,7 +1117,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1233,7 +1222,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1339,7 +1327,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1445,7 +1432,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1551,7 +1537,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1657,7 +1642,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1763,7 +1747,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1869,7 +1852,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1975,7 +1957,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2081,7 +2062,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2187,7 +2167,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2293,7 +2272,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2399,7 +2377,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2505,7 +2482,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2611,7 +2587,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2717,7 +2692,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2823,7 +2797,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2929,7 +2902,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3035,7 +3007,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3141,7 +3112,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3247,7 +3217,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3353,7 +3322,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3459,7 +3427,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3565,7 +3532,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3671,7 +3637,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3777,7 +3742,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3883,7 +3847,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3989,7 +3952,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4095,7 +4057,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4201,7 +4162,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4307,7 +4267,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4413,7 +4372,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4519,7 +4477,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4625,7 +4582,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4731,7 +4687,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4837,7 +4792,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4943,7 +4897,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5049,7 +5002,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5155,7 +5107,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5261,7 +5212,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5367,7 +5317,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5473,7 +5422,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5579,7 +5527,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5685,7 +5632,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5791,7 +5737,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -5897,7 +5842,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6003,7 +5947,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6109,7 +6052,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6215,7 +6157,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6321,7 +6262,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6427,7 +6367,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6533,7 +6472,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6639,7 +6577,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6745,7 +6682,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6851,7 +6787,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -6957,7 +6892,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7063,7 +6997,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7169,7 +7102,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7275,7 +7207,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7381,7 +7312,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7487,7 +7417,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7593,7 +7522,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7699,7 +7627,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7805,7 +7732,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -7911,7 +7837,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8017,7 +7942,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8123,7 +8047,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8229,7 +8152,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8335,7 +8257,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8441,7 +8362,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8547,7 +8467,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8653,7 +8572,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8759,7 +8677,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8865,7 +8782,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -8971,7 +8887,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -9077,7 +8992,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -9183,7 +9097,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -9289,7 +9202,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -9395,7 +9307,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -9501,7 +9412,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -9607,7 +9517,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -9713,7 +9622,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -9819,7 +9727,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -9925,7 +9832,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -10031,7 +9937,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -10137,7 +10042,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -10243,7 +10147,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -10349,7 +10252,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -10455,7 +10357,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -10561,7 +10462,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -10667,7 +10567,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -10773,7 +10672,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -10879,7 +10777,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -10985,7 +10882,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -11091,7 +10987,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -11197,7 +11092,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -11303,7 +11197,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -11409,7 +11302,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -11515,7 +11407,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -11621,7 +11512,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -11727,7 +11617,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -11833,7 +11722,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -11939,7 +11827,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -12045,7 +11932,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -12151,7 +12037,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -12257,7 +12142,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -12363,7 +12247,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -12469,7 +12352,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -12575,7 +12457,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -12681,7 +12562,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -12787,7 +12667,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -12893,7 +12772,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -12999,7 +12877,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -13105,7 +12982,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -13211,7 +13087,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -13317,7 +13192,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -13423,7 +13297,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -13529,7 +13402,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -13635,7 +13507,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -13741,7 +13612,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -13847,7 +13717,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -13953,7 +13822,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -14059,7 +13927,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -14165,7 +14032,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -14271,7 +14137,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -14377,7 +14242,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -14483,7 +14347,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -14589,7 +14452,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -14695,7 +14557,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -14801,7 +14662,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -14907,7 +14767,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -15013,7 +14872,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -15119,7 +14977,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -15225,7 +15082,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -15331,7 +15187,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -15437,7 +15292,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -15543,7 +15397,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -15649,7 +15502,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -15755,7 +15607,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -15861,7 +15712,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -15967,7 +15817,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -16073,7 +15922,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -16179,7 +16027,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -16285,7 +16132,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -16391,7 +16237,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -16497,7 +16342,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -16603,7 +16447,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -16709,7 +16552,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -16815,7 +16657,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -16921,7 +16762,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -17027,7 +16867,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -17133,7 +16972,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -17239,7 +17077,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -17349,7 +17186,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -17455,7 +17291,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -17561,7 +17396,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -17667,7 +17501,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -17773,7 +17606,6 @@ "ifLastChange": "378518211", "ifVlan": "308", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -17879,7 +17711,6 @@ "ifLastChange": "507288778", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -17985,7 +17816,6 @@ "ifLastChange": "506630043", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -18091,7 +17921,6 @@ "ifLastChange": "483921554", "ifVlan": "308", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -18197,7 +18026,6 @@ "ifLastChange": "506736772", "ifVlan": "308", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -18303,7 +18131,6 @@ "ifLastChange": "506468616", "ifVlan": "304", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -18409,7 +18236,6 @@ "ifLastChange": "508527692", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -18515,7 +18341,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -18621,7 +18446,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -18727,7 +18551,6 @@ "ifLastChange": "506560995", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -18833,7 +18656,6 @@ "ifLastChange": "506472163", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -18939,7 +18761,6 @@ "ifLastChange": "506714112", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -19045,7 +18866,6 @@ "ifLastChange": "506539056", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -19151,7 +18971,6 @@ "ifLastChange": "454949256", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -19257,7 +19076,6 @@ "ifLastChange": "481795698", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -19363,7 +19181,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -19469,7 +19286,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -19575,7 +19391,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -19681,7 +19496,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -19787,7 +19601,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -19893,7 +19706,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -19999,7 +19811,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -20105,7 +19916,6 @@ "ifLastChange": "506568658", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -20211,7 +20021,6 @@ "ifLastChange": "506570392", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -20317,7 +20126,6 @@ "ifLastChange": "446194272", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -20423,7 +20231,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -20529,7 +20336,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -20635,7 +20441,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -20741,7 +20546,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -20847,7 +20651,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -20953,7 +20756,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -21059,7 +20861,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -21165,7 +20966,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -21271,7 +21071,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -21377,7 +21176,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -21483,7 +21281,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -21589,7 +21386,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -21695,7 +21491,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -21801,7 +21596,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -21907,7 +21701,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -22013,7 +21806,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -22119,7 +21911,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -22225,7 +22016,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -22331,7 +22121,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -22437,7 +22226,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -22543,7 +22331,6 @@ "ifLastChange": "0", "ifVlan": "0", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -22649,7 +22436,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -22755,7 +22541,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -22861,7 +22646,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -22967,7 +22751,6 @@ "ifLastChange": "234781254", "ifVlan": "308", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -23073,7 +22856,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -23179,7 +22961,6 @@ "ifLastChange": "0", "ifVlan": "308", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -23285,7 +23066,6 @@ "ifLastChange": "0", "ifVlan": "308", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -23391,7 +23171,6 @@ "ifLastChange": "473345618", "ifVlan": "391", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -23497,7 +23276,6 @@ "ifLastChange": "416436907", "ifVlan": "70", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -23603,7 +23381,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -23709,7 +23486,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -23815,7 +23591,6 @@ "ifLastChange": "140885332", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -23921,7 +23696,6 @@ "ifLastChange": "206904544", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -24027,7 +23801,6 @@ "ifLastChange": "473847813", "ifVlan": "308", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -24133,7 +23906,6 @@ "ifLastChange": "363517818", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -24239,7 +24011,6 @@ "ifLastChange": "0", "ifVlan": "312", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -24345,7 +24116,6 @@ "ifLastChange": "474032576", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -24451,7 +24221,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -24557,7 +24326,6 @@ "ifLastChange": "473687856", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -24663,7 +24431,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -24769,7 +24536,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -24875,7 +24641,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -24981,7 +24746,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -25087,7 +24851,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -25193,7 +24956,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -25299,7 +25061,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -25405,7 +25166,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -25511,7 +25271,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -25617,7 +25376,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -25723,7 +25481,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -25829,7 +25586,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -25935,7 +25691,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -26041,7 +25796,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -26147,7 +25901,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -26253,7 +26006,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -26359,7 +26111,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -26465,7 +26216,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -26571,7 +26321,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -26677,7 +26426,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -26783,7 +26531,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -26889,7 +26636,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -26995,7 +26741,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -27101,7 +26846,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -27207,7 +26951,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -27313,7 +27056,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -27419,7 +27161,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -27525,7 +27266,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -27631,7 +27371,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -27737,7 +27476,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -27843,7 +27581,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -27949,7 +27686,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -28055,7 +27791,6 @@ "ifLastChange": "0", "ifVlan": "0", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -28161,7 +27896,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -28267,7 +28001,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -28373,7 +28106,6 @@ "ifLastChange": "0", "ifVlan": "1", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -28479,7 +28211,6 @@ "ifLastChange": "201506400", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -28585,7 +28316,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -28691,7 +28421,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -28797,7 +28526,6 @@ "ifLastChange": "140328408", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -28903,7 +28631,6 @@ "ifLastChange": "201506423", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -29009,7 +28736,6 @@ "ifLastChange": "201506407", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -29115,7 +28841,6 @@ "ifLastChange": "473351255", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -29221,7 +28946,6 @@ "ifLastChange": "473734064", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -29327,7 +29051,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -29433,7 +29156,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -29539,7 +29261,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -29645,7 +29366,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -29751,7 +29471,6 @@ "ifLastChange": "475802492", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -29857,7 +29576,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -29963,7 +29681,6 @@ "ifLastChange": "242423041", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -30069,7 +29786,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -30175,7 +29891,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -30281,7 +29996,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -30387,7 +30101,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -30493,7 +30206,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -30599,7 +30311,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -30705,7 +30416,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -30811,7 +30521,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -30917,7 +30626,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -31023,7 +30731,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -31129,7 +30836,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -31235,7 +30941,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -31341,7 +31046,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -31447,7 +31151,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -31553,7 +31256,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -31659,7 +31361,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -31765,7 +31466,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -31871,7 +31571,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -31977,7 +31676,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -32083,7 +31781,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -32189,7 +31886,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -32295,7 +31991,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -32401,7 +32096,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -32507,7 +32201,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -32613,7 +32306,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -32719,7 +32411,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -32825,7 +32516,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -32931,7 +32621,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -33037,7 +32726,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -33143,7 +32831,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -33249,7 +32936,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -33355,7 +33041,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -33461,7 +33146,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -33567,7 +33251,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -33673,7 +33356,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -33779,7 +33461,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -33885,7 +33566,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -33991,7 +33671,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -34097,7 +33776,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -34203,7 +33881,6 @@ "ifLastChange": "201508548", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -34309,7 +33986,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -34415,7 +34091,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -34521,7 +34196,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", diff --git a/tests/data/xirrus_aos.json b/tests/data/xirrus_aos.json index a18c3c05b9..360a3d6090 100644 --- a/tests/data/xirrus_aos.json +++ b/tests/data/xirrus_aos.json @@ -67,7 +67,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -173,7 +172,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -279,7 +277,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -385,7 +382,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -491,7 +487,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -597,7 +592,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -703,7 +697,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -809,7 +802,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -915,7 +907,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1021,7 +1012,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1127,7 +1117,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1233,7 +1222,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1339,7 +1327,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1445,7 +1432,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1551,7 +1537,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1657,7 +1642,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1763,7 +1747,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1869,7 +1852,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -1975,7 +1957,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2081,7 +2062,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2187,7 +2167,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2297,7 +2276,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2403,7 +2381,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2509,7 +2486,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2615,7 +2591,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2721,7 +2696,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2827,7 +2801,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -2933,7 +2906,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3039,7 +3011,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3145,7 +3116,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3251,7 +3221,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3357,7 +3326,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3463,7 +3431,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3569,7 +3536,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3675,7 +3641,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3781,7 +3746,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3887,7 +3851,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -3993,7 +3956,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4099,7 +4061,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4205,7 +4166,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4311,7 +4271,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", @@ -4417,7 +4376,6 @@ "ifLastChange": "0", "ifVlan": "", "ifTrunk": null, - "ifVrf": "0", "counter_in": null, "counter_out": null, "ignore": "0", diff --git a/tests/module_tables.yaml b/tests/module_tables.yaml index 4299b49611..9b005706df 100644 --- a/tests/module_tables.yaml +++ b/tests/module_tables.yaml @@ -29,7 +29,7 @@ mempools: excluded_fields: [device_id, mempool_id] ports: ports: - excluded_fields: [device_id, port_id, poll_time, poll_period] + excluded_fields: [device_id, port_id, poll_time, poll_period, ifVrf] joins: - { left: ports.port_id, right: ports_statistics.port_id } order_by: ports.ifIndex, ports.ifDescr, ports.ifName @@ -70,9 +70,8 @@ vlans: vrf: vrfs: excluded_fields: [vrf_id, device_id] - ports: - included_fields: [ifIndex, ifVrf] - custom_where: device_id=? AND ifVrf!=0 + joins: + - { custom: "JOIN (SELECT ifVrf, GROUP_CONCAT(ifIndex ORDER BY ifIndex ASC SEPARATOR ',') as ifIndices FROM ports GROUP BY ifVrf) p ON p.ifVrf = vrfs.vrf_id", select: ["p.ifIndices"] } wireless: wireless_sensors: excluded_fields: [device_id, sensor_id, access_point_id, lastupdate] diff --git a/tests/snmpsim/ios_6500.snmprec b/tests/snmpsim/ios_6500.snmprec new file mode 100644 index 0000000000..9674e60243 --- /dev/null +++ b/tests/snmpsim/ios_6500.snmprec @@ -0,0 +1,14033 @@ +1.3.6.1.2.1.1.1.0|4x|436973636f20494f5320536f6674776172652c207337323033335f727020536f66747761726520287337323033335f72702d495053455256494345534b392d4d292c2056657273696f6e2031352e31283229535931302c2052454c4541534520534f4654574152452028666334290a546563686e6963616c20537570706f72743a20687474703a2f2f7777772e636973636f2e636f6d2f74656368737570706f72740d0a436f707972696768742028632920313938362d3230313720627920436973636f2053797374656d732c20496e632e0d0a436f6d70696c6564205475652032312d4665622d31372030323a30302062792070726f645f72656c5f2b +1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.9.1.283 +1.3.6.1.2.1.1.3.0|67|2106470012 +1.3.6.1.2.1.1.4.0|4| +1.3.6.1.2.1.1.5.0|4| +1.3.6.1.2.1.1.6.0|4| +1.3.6.1.2.1.2.2.1.2.251|4|Vlan1 +1.3.6.1.2.1.2.2.1.2.252|4|EOBC0/0 +1.3.6.1.2.1.2.2.1.2.253|4|Null0 +1.3.6.1.2.1.2.2.1.2.254|4|SPAN RP Interface +1.3.6.1.2.1.2.2.1.2.255|4|SPAN SP Interface +1.3.6.1.2.1.2.2.1.2.258|4|Vlan99 +1.3.6.1.2.1.2.2.1.2.259|4|Control Plane Interface +1.3.6.1.2.1.2.2.1.2.260|4|unrouted VLAN 1 +1.3.6.1.2.1.2.2.1.2.261|4|unrouted VLAN 1002 +1.3.6.1.2.1.2.2.1.2.262|4|unrouted VLAN 1004 +1.3.6.1.2.1.2.2.1.2.263|4|unrouted VLAN 1005 +1.3.6.1.2.1.2.2.1.2.264|4|unrouted VLAN 1003 +1.3.6.1.2.1.2.2.1.2.265|4|unrouted VLAN 20 +1.3.6.1.2.1.2.2.1.2.266|4|unrouted VLAN 30 +1.3.6.1.2.1.2.2.1.2.267|4|unrouted VLAN 40 +1.3.6.1.2.1.2.2.1.2.268|4|unrouted VLAN 50 +1.3.6.1.2.1.2.2.1.2.269|4|unrouted VLAN 99 +1.3.6.1.2.1.2.2.1.2.270|4|Port-channel100 +1.3.6.1.2.1.2.2.1.2.273|4|Port-channel200 +1.3.6.1.2.1.2.2.1.2.274|4|Port-channel2 +1.3.6.1.2.1.2.2.1.2.275|4|unrouted VLAN 901 +1.3.6.1.2.1.2.2.1.2.276|4|unrouted VLAN 902 +1.3.6.1.2.1.2.2.1.2.277|4|Port-channel3 +1.3.6.1.2.1.2.2.1.2.278|4|Port-channel22 +1.3.6.1.2.1.2.2.1.2.280|4|Port-channel23 +1.3.6.1.2.1.2.2.1.2.281|4|Port-channel4 +1.3.6.1.2.1.2.2.1.2.282|4|Port-channel5 +1.3.6.1.2.1.2.2.1.2.283|4|Port-channel24 +1.3.6.1.2.1.2.2.1.2.284|4|Port-channel25 +1.3.6.1.2.1.2.2.1.2.285|4|Port-channel6 +1.3.6.1.2.1.2.2.1.2.286|4|Port-channel26 +1.3.6.1.2.1.2.2.1.2.287|4|Port-channel7 +1.3.6.1.2.1.2.2.1.2.288|4|Port-channel27 +1.3.6.1.2.1.2.2.1.2.291|4|unrouted VLAN 60 +1.3.6.1.2.1.2.2.1.2.292|4|unrouted VLAN 70 +1.3.6.1.2.1.2.2.1.2.293|4|unrouted VLAN 201 +1.3.6.1.2.1.2.2.1.2.294|4|unrouted VLAN 202 +1.3.6.1.2.1.2.2.1.2.295|4|unrouted VLAN 203 +1.3.6.1.2.1.2.2.1.2.395|4|Port-channel51 +1.3.6.1.2.1.2.2.1.2.396|4|Port-channel40 +1.3.6.1.2.1.2.2.1.2.398|4|Vlan30 +1.3.6.1.2.1.2.2.1.2.399|4|Vlan20 +1.3.6.1.2.1.2.2.1.2.414|4|unrouted VLAN 106 +1.3.6.1.2.1.2.2.1.2.415|4|Loopback0 +1.3.6.1.2.1.2.2.1.2.417|4|Vlan40 +1.3.6.1.2.1.2.2.1.2.418|4|Vlan50 +1.3.6.1.2.1.2.2.1.2.438|4|unrouted VLAN 300 +1.3.6.1.2.1.2.2.1.2.439|4|unrouted VLAN 301 +1.3.6.1.2.1.2.2.1.2.440|4|unrouted VLAN 302 +1.3.6.1.2.1.2.2.1.2.441|4|unrouted VLAN 303 +1.3.6.1.2.1.2.2.1.2.442|4|unrouted VLAN 304 +1.3.6.1.2.1.2.2.1.2.443|4|unrouted VLAN 311 +1.3.6.1.2.1.2.2.1.2.444|4|unrouted VLAN 312 +1.3.6.1.2.1.2.2.1.2.445|4|unrouted VLAN 321 +1.3.6.1.2.1.2.2.1.2.446|4|unrouted VLAN 322 +1.3.6.1.2.1.2.2.1.2.447|4|unrouted VLAN 331 +1.3.6.1.2.1.2.2.1.2.448|4|unrouted VLAN 332 +1.3.6.1.2.1.2.2.1.2.449|4|unrouted VLAN 341 +1.3.6.1.2.1.2.2.1.2.450|4|unrouted VLAN 342 +1.3.6.1.2.1.2.2.1.2.451|4|unrouted VLAN 351 +1.3.6.1.2.1.2.2.1.2.452|4|unrouted VLAN 352 +1.3.6.1.2.1.2.2.1.2.453|4|unrouted VLAN 361 +1.3.6.1.2.1.2.2.1.2.454|4|unrouted VLAN 362 +1.3.6.1.2.1.2.2.1.2.455|4|unrouted VLAN 371 +1.3.6.1.2.1.2.2.1.2.456|4|unrouted VLAN 372 +1.3.6.1.2.1.2.2.1.2.457|4|unrouted VLAN 307 +1.3.6.1.2.1.2.2.1.2.462|4|unrouted VLAN 305 +1.3.6.1.2.1.2.2.1.2.464|4|Port-channel52 +1.3.6.1.2.1.2.2.1.2.465|4|Port-channel53 +1.3.6.1.2.1.2.2.1.2.467|4|unrouted VLAN 80 +1.3.6.1.2.1.2.2.1.2.468|4|unrouted VLAN 306 +1.3.6.1.2.1.2.2.1.2.474|4|unrouted VLAN 313 +1.3.6.1.2.1.2.2.1.2.475|4|unrouted VLAN 308 +1.3.6.1.2.1.2.2.1.2.476|4|unrouted VLAN 314 +1.3.6.1.2.1.2.2.1.2.477|4|Port-channel54 +1.3.6.1.2.1.2.2.1.2.478|4|unrouted VLAN 315 +1.3.6.1.2.1.2.2.1.2.487|4|Port-channel60 +1.3.6.1.2.1.2.2.1.2.489|4|unrouted VLAN 316 +1.3.6.1.2.1.2.2.1.2.490|4|unrouted VLAN 317 +1.3.6.1.2.1.2.2.1.2.493|4|unrouted VLAN 318 +1.3.6.1.2.1.2.2.1.2.494|4|Port-channel55 +1.3.6.1.2.1.2.2.1.2.495|4|Port-channel56 +1.3.6.1.2.1.2.2.1.2.496|4|Port-channel31 +1.3.6.1.2.1.2.2.1.2.497|4|Port-channel32 +1.3.6.1.2.1.2.2.1.2.502|4|unrouted VLAN 400 +1.3.6.1.2.1.2.2.1.2.503|4|unrouted VLAN 401 +1.3.6.1.2.1.2.2.1.2.504|4|unrouted VLAN 402 +1.3.6.1.2.1.2.2.1.2.505|4|unrouted VLAN 403 +1.3.6.1.2.1.2.2.1.2.506|4|Vlan400 +1.3.6.1.2.1.2.2.1.2.509|4|Vlan402 +1.3.6.1.2.1.2.2.1.2.510|4|unrouted VLAN 404 +1.3.6.1.2.1.2.2.1.2.511|4|unrouted VLAN 406 +1.3.6.1.2.1.2.2.1.2.513|4|unrouted VLAN 405 +1.3.6.1.2.1.2.2.1.2.514|4|Port-channel57 +1.3.6.1.2.1.2.2.1.2.515|4|Port-channel58 +1.3.6.1.2.1.2.2.1.2.516|4|unrouted VLAN 310 +1.3.6.1.2.1.2.2.1.2.517|4|unrouted VLAN 407 +1.3.6.1.2.1.2.2.1.2.518|4|Port-channel70 +1.3.6.1.2.1.2.2.1.2.519|4|Port-channel1 +1.3.6.1.2.1.2.2.1.2.520|4|Port-channel71 +1.3.6.1.2.1.2.2.1.2.523|4|unrouted VLAN 911 +1.3.6.1.2.1.2.2.1.2.524|4|unrouted VLAN 912 +1.3.6.1.2.1.2.2.1.2.525|4|unrouted VLAN 409 +1.3.6.1.2.1.2.2.1.2.526|4|unrouted VLAN 410 +1.3.6.1.2.1.2.2.1.2.527|4|unrouted VLAN 411 +1.3.6.1.2.1.2.2.1.2.528|4|unrouted VLAN 412 +1.3.6.1.2.1.2.2.1.2.529|4|unrouted VLAN 413 +1.3.6.1.2.1.2.2.1.2.530|4|unrouted VLAN 414 +1.3.6.1.2.1.2.2.1.2.531|4|unrouted VLAN 415 +1.3.6.1.2.1.2.2.1.2.532|4|unrouted VLAN 416 +1.3.6.1.2.1.2.2.1.2.533|4|unrouted VLAN 417 +1.3.6.1.2.1.2.2.1.2.534|4|unrouted VLAN 418 +1.3.6.1.2.1.2.2.1.2.535|4|Vlan409 +1.3.6.1.2.1.2.2.1.2.536|4|Vlan410 +1.3.6.1.2.1.2.2.1.2.538|4|Vlan412 +1.3.6.1.2.1.2.2.1.2.540|4|unrouted VLAN 419 +1.3.6.1.2.1.2.2.1.2.541|4|unrouted VLAN 29 +1.3.6.1.2.1.2.2.1.2.542|4|Vlan416 +1.3.6.1.2.1.2.2.1.2.543|4|Vlan415 +1.3.6.1.2.1.2.2.1.2.544|4|Vlan420 +1.3.6.1.2.1.2.2.1.2.545|4|unrouted VLAN 420 +1.3.6.1.2.1.2.2.1.2.546|4|unrouted VLAN 421 +1.3.6.1.2.1.2.2.1.2.547|4|TenGigabitEthernet1/1 +1.3.6.1.2.1.2.2.1.2.548|4|TenGigabitEthernet1/2 +1.3.6.1.2.1.2.2.1.2.549|4|TenGigabitEthernet1/3 +1.3.6.1.2.1.2.2.1.2.550|4|TenGigabitEthernet1/4 +1.3.6.1.2.1.2.2.1.2.551|4|TenGigabitEthernet1/5 +1.3.6.1.2.1.2.2.1.2.552|4|TenGigabitEthernet1/6 +1.3.6.1.2.1.2.2.1.2.553|4|TenGigabitEthernet1/7 +1.3.6.1.2.1.2.2.1.2.554|4|TenGigabitEthernet1/8 +1.3.6.1.2.1.2.2.1.2.555|4|GigabitEthernet3/1 +1.3.6.1.2.1.2.2.1.2.556|4|GigabitEthernet3/2 +1.3.6.1.2.1.2.2.1.2.557|4|GigabitEthernet3/3 +1.3.6.1.2.1.2.2.1.2.558|4|GigabitEthernet3/4 +1.3.6.1.2.1.2.2.1.2.559|4|GigabitEthernet3/5 +1.3.6.1.2.1.2.2.1.2.560|4|GigabitEthernet3/6 +1.3.6.1.2.1.2.2.1.2.561|4|GigabitEthernet3/7 +1.3.6.1.2.1.2.2.1.2.562|4|GigabitEthernet3/8 +1.3.6.1.2.1.2.2.1.2.563|4|GigabitEthernet3/9 +1.3.6.1.2.1.2.2.1.2.564|4|GigabitEthernet3/10 +1.3.6.1.2.1.2.2.1.2.565|4|GigabitEthernet3/11 +1.3.6.1.2.1.2.2.1.2.566|4|GigabitEthernet3/12 +1.3.6.1.2.1.2.2.1.2.567|4|GigabitEthernet3/13 +1.3.6.1.2.1.2.2.1.2.568|4|GigabitEthernet3/14 +1.3.6.1.2.1.2.2.1.2.569|4|GigabitEthernet3/15 +1.3.6.1.2.1.2.2.1.2.570|4|GigabitEthernet3/16 +1.3.6.1.2.1.2.2.1.2.571|4|GigabitEthernet3/17 +1.3.6.1.2.1.2.2.1.2.572|4|GigabitEthernet3/18 +1.3.6.1.2.1.2.2.1.2.573|4|GigabitEthernet3/19 +1.3.6.1.2.1.2.2.1.2.574|4|GigabitEthernet3/20 +1.3.6.1.2.1.2.2.1.2.575|4|GigabitEthernet3/21 +1.3.6.1.2.1.2.2.1.2.576|4|GigabitEthernet3/22 +1.3.6.1.2.1.2.2.1.2.577|4|GigabitEthernet3/23 +1.3.6.1.2.1.2.2.1.2.578|4|GigabitEthernet3/24 +1.3.6.1.2.1.2.2.1.2.579|4|GigabitEthernet3/25 +1.3.6.1.2.1.2.2.1.2.580|4|GigabitEthernet3/26 +1.3.6.1.2.1.2.2.1.2.581|4|GigabitEthernet3/27 +1.3.6.1.2.1.2.2.1.2.582|4|GigabitEthernet3/28 +1.3.6.1.2.1.2.2.1.2.583|4|GigabitEthernet3/29 +1.3.6.1.2.1.2.2.1.2.584|4|GigabitEthernet3/30 +1.3.6.1.2.1.2.2.1.2.585|4|GigabitEthernet3/31 +1.3.6.1.2.1.2.2.1.2.586|4|GigabitEthernet3/32 +1.3.6.1.2.1.2.2.1.2.587|4|GigabitEthernet3/33 +1.3.6.1.2.1.2.2.1.2.588|4|GigabitEthernet3/34 +1.3.6.1.2.1.2.2.1.2.589|4|GigabitEthernet3/35 +1.3.6.1.2.1.2.2.1.2.590|4|GigabitEthernet3/36 +1.3.6.1.2.1.2.2.1.2.591|4|GigabitEthernet3/37 +1.3.6.1.2.1.2.2.1.2.592|4|GigabitEthernet3/38 +1.3.6.1.2.1.2.2.1.2.593|4|GigabitEthernet3/39 +1.3.6.1.2.1.2.2.1.2.594|4|GigabitEthernet3/40 +1.3.6.1.2.1.2.2.1.2.595|4|GigabitEthernet3/41 +1.3.6.1.2.1.2.2.1.2.596|4|GigabitEthernet3/42 +1.3.6.1.2.1.2.2.1.2.597|4|GigabitEthernet3/43 +1.3.6.1.2.1.2.2.1.2.598|4|GigabitEthernet3/44 +1.3.6.1.2.1.2.2.1.2.599|4|GigabitEthernet3/45 +1.3.6.1.2.1.2.2.1.2.600|4|GigabitEthernet3/46 +1.3.6.1.2.1.2.2.1.2.601|4|GigabitEthernet3/47 +1.3.6.1.2.1.2.2.1.2.602|4|GigabitEthernet3/48 +1.3.6.1.2.1.2.2.1.2.603|4|GigabitEthernet4/1 +1.3.6.1.2.1.2.2.1.2.604|4|GigabitEthernet4/2 +1.3.6.1.2.1.2.2.1.2.605|4|GigabitEthernet4/3 +1.3.6.1.2.1.2.2.1.2.606|4|GigabitEthernet4/4 +1.3.6.1.2.1.2.2.1.2.607|4|GigabitEthernet4/5 +1.3.6.1.2.1.2.2.1.2.608|4|GigabitEthernet4/6 +1.3.6.1.2.1.2.2.1.2.609|4|GigabitEthernet4/7 +1.3.6.1.2.1.2.2.1.2.610|4|GigabitEthernet4/8 +1.3.6.1.2.1.2.2.1.2.611|4|GigabitEthernet4/9 +1.3.6.1.2.1.2.2.1.2.612|4|GigabitEthernet4/10 +1.3.6.1.2.1.2.2.1.2.613|4|GigabitEthernet4/11 +1.3.6.1.2.1.2.2.1.2.614|4|GigabitEthernet4/12 +1.3.6.1.2.1.2.2.1.2.615|4|GigabitEthernet4/13 +1.3.6.1.2.1.2.2.1.2.616|4|GigabitEthernet4/14 +1.3.6.1.2.1.2.2.1.2.617|4|GigabitEthernet4/15 +1.3.6.1.2.1.2.2.1.2.618|4|GigabitEthernet4/16 +1.3.6.1.2.1.2.2.1.2.619|4|GigabitEthernet4/17 +1.3.6.1.2.1.2.2.1.2.620|4|GigabitEthernet4/18 +1.3.6.1.2.1.2.2.1.2.621|4|GigabitEthernet4/19 +1.3.6.1.2.1.2.2.1.2.622|4|GigabitEthernet4/20 +1.3.6.1.2.1.2.2.1.2.623|4|GigabitEthernet4/21 +1.3.6.1.2.1.2.2.1.2.624|4|GigabitEthernet4/22 +1.3.6.1.2.1.2.2.1.2.625|4|GigabitEthernet4/23 +1.3.6.1.2.1.2.2.1.2.626|4|GigabitEthernet4/24 +1.3.6.1.2.1.2.2.1.2.627|4|GigabitEthernet4/25 +1.3.6.1.2.1.2.2.1.2.628|4|GigabitEthernet4/26 +1.3.6.1.2.1.2.2.1.2.629|4|GigabitEthernet4/27 +1.3.6.1.2.1.2.2.1.2.630|4|GigabitEthernet4/28 +1.3.6.1.2.1.2.2.1.2.631|4|GigabitEthernet4/29 +1.3.6.1.2.1.2.2.1.2.632|4|GigabitEthernet4/30 +1.3.6.1.2.1.2.2.1.2.633|4|GigabitEthernet4/31 +1.3.6.1.2.1.2.2.1.2.634|4|GigabitEthernet4/32 +1.3.6.1.2.1.2.2.1.2.635|4|GigabitEthernet4/33 +1.3.6.1.2.1.2.2.1.2.636|4|GigabitEthernet4/34 +1.3.6.1.2.1.2.2.1.2.637|4|GigabitEthernet4/35 +1.3.6.1.2.1.2.2.1.2.638|4|GigabitEthernet4/36 +1.3.6.1.2.1.2.2.1.2.639|4|GigabitEthernet4/37 +1.3.6.1.2.1.2.2.1.2.640|4|GigabitEthernet4/38 +1.3.6.1.2.1.2.2.1.2.641|4|GigabitEthernet4/39 +1.3.6.1.2.1.2.2.1.2.642|4|GigabitEthernet4/40 +1.3.6.1.2.1.2.2.1.2.643|4|GigabitEthernet4/41 +1.3.6.1.2.1.2.2.1.2.644|4|GigabitEthernet4/42 +1.3.6.1.2.1.2.2.1.2.645|4|GigabitEthernet4/43 +1.3.6.1.2.1.2.2.1.2.646|4|GigabitEthernet4/44 +1.3.6.1.2.1.2.2.1.2.647|4|GigabitEthernet4/45 +1.3.6.1.2.1.2.2.1.2.648|4|GigabitEthernet4/46 +1.3.6.1.2.1.2.2.1.2.649|4|GigabitEthernet4/47 +1.3.6.1.2.1.2.2.1.2.650|4|GigabitEthernet4/48 +1.3.6.1.2.1.2.2.1.2.651|4|GigabitEthernet5/1 +1.3.6.1.2.1.2.2.1.2.652|4|GigabitEthernet5/2 +1.3.6.1.2.1.2.2.1.2.653|4|GigabitEthernet5/3 +1.3.6.1.2.1.2.2.1.2.654|4|TenGigabitEthernet5/4 +1.3.6.1.2.1.2.2.1.2.655|4|TenGigabitEthernet5/5 +1.3.6.1.2.1.2.2.1.2.656|4|GigabitEthernet6/1 +1.3.6.1.2.1.2.2.1.2.657|4|GigabitEthernet6/2 +1.3.6.1.2.1.2.2.1.2.658|4|GigabitEthernet6/3 +1.3.6.1.2.1.2.2.1.2.659|4|GigabitEthernet6/4 +1.3.6.1.2.1.2.2.1.2.660|4|GigabitEthernet6/5 +1.3.6.1.2.1.2.2.1.2.661|4|GigabitEthernet6/6 +1.3.6.1.2.1.2.2.1.2.662|4|GigabitEthernet6/7 +1.3.6.1.2.1.2.2.1.2.663|4|GigabitEthernet6/8 +1.3.6.1.2.1.2.2.1.2.664|4|GigabitEthernet6/9 +1.3.6.1.2.1.2.2.1.2.665|4|GigabitEthernet6/10 +1.3.6.1.2.1.2.2.1.2.666|4|GigabitEthernet6/11 +1.3.6.1.2.1.2.2.1.2.667|4|GigabitEthernet6/12 +1.3.6.1.2.1.2.2.1.2.668|4|GigabitEthernet6/13 +1.3.6.1.2.1.2.2.1.2.669|4|GigabitEthernet6/14 +1.3.6.1.2.1.2.2.1.2.670|4|GigabitEthernet6/15 +1.3.6.1.2.1.2.2.1.2.671|4|GigabitEthernet6/16 +1.3.6.1.2.1.2.2.1.2.672|4|GigabitEthernet6/17 +1.3.6.1.2.1.2.2.1.2.673|4|GigabitEthernet6/18 +1.3.6.1.2.1.2.2.1.2.674|4|GigabitEthernet6/19 +1.3.6.1.2.1.2.2.1.2.675|4|GigabitEthernet6/20 +1.3.6.1.2.1.2.2.1.2.676|4|GigabitEthernet6/21 +1.3.6.1.2.1.2.2.1.2.677|4|GigabitEthernet6/22 +1.3.6.1.2.1.2.2.1.2.678|4|GigabitEthernet6/23 +1.3.6.1.2.1.2.2.1.2.679|4|GigabitEthernet6/24 +1.3.6.1.2.1.2.2.1.2.680|4|GigabitEthernet6/25 +1.3.6.1.2.1.2.2.1.2.681|4|GigabitEthernet6/26 +1.3.6.1.2.1.2.2.1.2.682|4|GigabitEthernet6/27 +1.3.6.1.2.1.2.2.1.2.683|4|GigabitEthernet6/28 +1.3.6.1.2.1.2.2.1.2.684|4|GigabitEthernet6/29 +1.3.6.1.2.1.2.2.1.2.685|4|GigabitEthernet6/30 +1.3.6.1.2.1.2.2.1.2.686|4|GigabitEthernet6/31 +1.3.6.1.2.1.2.2.1.2.687|4|GigabitEthernet6/32 +1.3.6.1.2.1.2.2.1.2.688|4|GigabitEthernet6/33 +1.3.6.1.2.1.2.2.1.2.689|4|GigabitEthernet6/34 +1.3.6.1.2.1.2.2.1.2.690|4|GigabitEthernet6/35 +1.3.6.1.2.1.2.2.1.2.691|4|GigabitEthernet6/36 +1.3.6.1.2.1.2.2.1.2.692|4|GigabitEthernet6/37 +1.3.6.1.2.1.2.2.1.2.693|4|GigabitEthernet6/38 +1.3.6.1.2.1.2.2.1.2.694|4|GigabitEthernet6/39 +1.3.6.1.2.1.2.2.1.2.695|4|GigabitEthernet6/40 +1.3.6.1.2.1.2.2.1.2.696|4|GigabitEthernet6/41 +1.3.6.1.2.1.2.2.1.2.697|4|GigabitEthernet6/42 +1.3.6.1.2.1.2.2.1.2.698|4|GigabitEthernet6/43 +1.3.6.1.2.1.2.2.1.2.699|4|GigabitEthernet6/44 +1.3.6.1.2.1.2.2.1.2.700|4|GigabitEthernet6/45 +1.3.6.1.2.1.2.2.1.2.701|4|GigabitEthernet6/46 +1.3.6.1.2.1.2.2.1.2.702|4|GigabitEthernet6/47 +1.3.6.1.2.1.2.2.1.2.703|4|GigabitEthernet6/48 +1.3.6.1.2.1.2.2.1.2.704|4|GigabitEthernet7/1 +1.3.6.1.2.1.2.2.1.2.705|4|GigabitEthernet7/2 +1.3.6.1.2.1.2.2.1.2.706|4|GigabitEthernet7/3 +1.3.6.1.2.1.2.2.1.2.707|4|GigabitEthernet7/4 +1.3.6.1.2.1.2.2.1.2.708|4|GigabitEthernet7/5 +1.3.6.1.2.1.2.2.1.2.709|4|GigabitEthernet7/6 +1.3.6.1.2.1.2.2.1.2.710|4|GigabitEthernet7/7 +1.3.6.1.2.1.2.2.1.2.711|4|GigabitEthernet7/8 +1.3.6.1.2.1.2.2.1.2.712|4|GigabitEthernet7/9 +1.3.6.1.2.1.2.2.1.2.713|4|GigabitEthernet7/10 +1.3.6.1.2.1.2.2.1.2.714|4|GigabitEthernet7/11 +1.3.6.1.2.1.2.2.1.2.715|4|GigabitEthernet7/12 +1.3.6.1.2.1.2.2.1.2.716|4|GigabitEthernet7/13 +1.3.6.1.2.1.2.2.1.2.717|4|GigabitEthernet7/14 +1.3.6.1.2.1.2.2.1.2.718|4|GigabitEthernet7/15 +1.3.6.1.2.1.2.2.1.2.719|4|GigabitEthernet7/16 +1.3.6.1.2.1.2.2.1.2.720|4|GigabitEthernet7/17 +1.3.6.1.2.1.2.2.1.2.721|4|GigabitEthernet7/18 +1.3.6.1.2.1.2.2.1.2.722|4|GigabitEthernet7/19 +1.3.6.1.2.1.2.2.1.2.723|4|GigabitEthernet7/20 +1.3.6.1.2.1.2.2.1.2.724|4|GigabitEthernet7/21 +1.3.6.1.2.1.2.2.1.2.725|4|GigabitEthernet7/22 +1.3.6.1.2.1.2.2.1.2.726|4|GigabitEthernet7/23 +1.3.6.1.2.1.2.2.1.2.727|4|GigabitEthernet7/24 +1.3.6.1.2.1.2.2.1.2.728|4|GigabitEthernet7/25 +1.3.6.1.2.1.2.2.1.2.729|4|GigabitEthernet7/26 +1.3.6.1.2.1.2.2.1.2.730|4|GigabitEthernet7/27 +1.3.6.1.2.1.2.2.1.2.731|4|GigabitEthernet7/28 +1.3.6.1.2.1.2.2.1.2.732|4|GigabitEthernet7/29 +1.3.6.1.2.1.2.2.1.2.733|4|GigabitEthernet7/30 +1.3.6.1.2.1.2.2.1.2.734|4|GigabitEthernet7/31 +1.3.6.1.2.1.2.2.1.2.735|4|GigabitEthernet7/32 +1.3.6.1.2.1.2.2.1.2.736|4|GigabitEthernet7/33 +1.3.6.1.2.1.2.2.1.2.737|4|GigabitEthernet7/34 +1.3.6.1.2.1.2.2.1.2.738|4|GigabitEthernet7/35 +1.3.6.1.2.1.2.2.1.2.739|4|GigabitEthernet7/36 +1.3.6.1.2.1.2.2.1.2.740|4|GigabitEthernet7/37 +1.3.6.1.2.1.2.2.1.2.741|4|GigabitEthernet7/38 +1.3.6.1.2.1.2.2.1.2.742|4|GigabitEthernet7/39 +1.3.6.1.2.1.2.2.1.2.743|4|GigabitEthernet7/40 +1.3.6.1.2.1.2.2.1.2.744|4|GigabitEthernet7/41 +1.3.6.1.2.1.2.2.1.2.745|4|GigabitEthernet7/42 +1.3.6.1.2.1.2.2.1.2.746|4|GigabitEthernet7/43 +1.3.6.1.2.1.2.2.1.2.747|4|GigabitEthernet7/44 +1.3.6.1.2.1.2.2.1.2.748|4|GigabitEthernet7/45 +1.3.6.1.2.1.2.2.1.2.749|4|GigabitEthernet7/46 +1.3.6.1.2.1.2.2.1.2.750|4|GigabitEthernet7/47 +1.3.6.1.2.1.2.2.1.2.751|4|GigabitEthernet7/48 +1.3.6.1.2.1.2.2.1.2.768|4|unrouted VLAN 422 +1.3.6.1.2.1.2.2.1.2.769|4|Vlan419 +1.3.6.1.2.1.2.2.1.2.770|4|Vlan422 +1.3.6.1.2.1.2.2.1.2.771|4|unrouted VLAN 430 +1.3.6.1.2.1.2.2.1.2.772|4|unrouted VLAN 431 +1.3.6.1.2.1.2.2.1.2.773|4|unrouted VLAN 432 +1.3.6.1.2.1.2.2.1.2.774|4|Vlan430 +1.3.6.1.2.1.2.2.1.2.775|4|Vlan431 +1.3.6.1.2.1.2.2.1.2.776|4|Vlan432 +1.3.6.1.2.1.2.2.1.2.777|4|unrouted VLAN 423 +1.3.6.1.2.1.2.2.1.2.778|4|unrouted VLAN 424 +1.3.6.1.2.1.2.2.1.2.779|4|unrouted VLAN 425 +1.3.6.1.2.1.2.2.1.2.780|4|unrouted VLAN 390 +1.3.6.1.2.1.2.2.1.2.781|4|unrouted VLAN 391 +1.3.6.1.2.1.2.2.1.2.782|4|unrouted VLAN 500 +1.3.6.1.2.1.2.2.1.2.783|4|unrouted VLAN 392 +1.3.6.1.2.1.2.2.1.2.784|4|unrouted VLAN 433 +1.3.6.1.2.1.2.2.1.2.785|4|Vlan433 +1.3.6.1.2.1.2.2.1.2.786|4|unrouted VLAN 426 +1.3.6.1.2.1.2.2.1.2.787|4|unrouted VLAN 427 +1.3.6.1.2.1.2.2.1.2.788|4|unrouted VLAN 428 +1.3.6.1.2.1.2.2.1.2.789|4|unrouted VLAN 434 +1.3.6.1.2.1.2.2.1.2.790|4|unrouted VLAN 435 +1.3.6.1.2.1.2.2.1.2.791|4|unrouted VLAN 436 +1.3.6.1.2.1.2.2.1.2.792|4|Vlan434 +1.3.6.1.2.1.2.2.1.2.793|4|Vlan435 +1.3.6.1.2.1.2.2.1.2.794|4|Vlan436 +1.3.6.1.2.1.2.2.1.2.795|4|unrouted VLAN 437 +1.3.6.1.2.1.2.2.1.2.796|4|unrouted VLAN 438 +1.3.6.1.2.1.2.2.1.2.797|4|unrouted VLAN 439 +1.3.6.1.2.1.2.2.1.2.798|4|unrouted VLAN 441 +1.3.6.1.2.1.2.2.1.2.799|4|unrouted VLAN 442 +1.3.6.1.2.1.2.2.1.2.800|4|unrouted VLAN 440 +1.3.6.1.2.1.2.2.1.2.801|4|Vlan428 +1.3.6.1.2.1.2.2.1.2.802|4|Vlan441 +1.3.6.1.2.1.2.2.1.2.803|4|Vlan442 +1.3.6.1.2.1.2.2.1.2.804|4|Vlan437 +1.3.6.1.2.1.2.2.1.2.805|4|Vlan438 +1.3.6.1.2.1.2.2.1.2.806|4|Vlan439 +1.3.6.1.2.1.2.2.1.2.807|4|Vlan440 +1.3.6.1.2.1.2.2.1.2.808|4|unrouted VLAN 443 +1.3.6.1.2.1.2.2.1.2.809|4|unrouted VLAN 444 +1.3.6.1.2.1.2.2.1.2.810|4|Vlan443 +1.3.6.1.2.1.2.2.1.2.811|4|Vlan444 +1.3.6.1.2.1.2.2.1.2.812|4|unrouted VLAN 445 +1.3.6.1.2.1.2.2.1.2.813|4|unrouted VLAN 446 +1.3.6.1.2.1.2.2.1.2.814|4|Vlan446 +1.3.6.1.2.1.2.2.1.2.815|4|Vlan445 +1.3.6.1.2.1.2.2.1.2.816|4|unrouted VLAN 447 +1.3.6.1.2.1.2.2.1.2.817|4|unrouted VLAN 448 +1.3.6.1.2.1.2.2.1.2.818|4|Vlan448 +1.3.6.1.2.1.2.2.1.2.819|4|unrouted VLAN 51 +1.3.6.1.2.1.2.2.1.2.820|4|unrouted VLAN 449 +1.3.6.1.2.1.2.2.1.2.821|4|unrouted VLAN 450 +1.3.6.1.2.1.2.2.1.2.822|4|unrouted VLAN 451 +1.3.6.1.2.1.2.2.1.2.823|4|unrouted VLAN 452 +1.3.6.1.2.1.2.2.1.2.824|4|unrouted VLAN 601 +1.3.6.1.2.1.2.2.1.2.825|4|unrouted VLAN 453 +1.3.6.1.2.1.2.2.1.2.826|4|unrouted VLAN 454 +1.3.6.1.2.1.2.2.1.2.827|4|unrouted VLAN 455 +1.3.6.1.2.1.2.2.1.2.828|4|unrouted VLAN 459 +1.3.6.1.2.1.2.2.1.2.829|4|unrouted VLAN 460 +1.3.6.1.2.1.2.2.1.2.830|4|unrouted VLAN 461 +1.3.6.1.2.1.2.2.1.2.831|4|unrouted VLAN 457 +1.3.6.1.2.1.2.2.1.2.832|4|unrouted VLAN 458 +1.3.6.1.2.1.2.2.1.2.833|4|unrouted VLAN 456 +1.3.6.1.2.1.2.2.1.2.834|4|Vlan456 +1.3.6.1.2.1.2.2.1.2.835|4|Vlan457 +1.3.6.1.2.1.2.2.1.2.836|4|Vlan458 +1.3.6.1.2.1.2.2.1.2.837|4|unrouted VLAN 462 +1.3.6.1.2.1.2.2.1.2.838|4|Vlan462 +1.3.6.1.2.1.2.2.1.2.839|4|unrouted VLAN 204 +1.3.6.1.2.1.2.2.1.2.840|4|unrouted VLAN 205 +1.3.6.1.2.1.2.2.1.2.841|4|unrouted VLAN 463 +1.3.6.1.2.1.2.2.1.2.842|4|unrouted VLAN 464 +1.3.6.1.2.1.2.2.1.2.843|4|unrouted VLAN 466 +1.3.6.1.2.1.2.2.1.2.844|4|unrouted VLAN 290 +1.3.6.1.2.1.2.2.1.2.845|4|unrouted VLAN 291 +1.3.6.1.2.1.2.2.1.2.846|4|unrouted VLAN 467 +1.3.6.1.2.1.2.2.1.2.847|4|unrouted VLAN 465 +1.3.6.1.2.1.2.2.1.2.848|4|Vlan464 +1.3.6.1.2.1.2.2.1.2.849|4|Vlan465 +1.3.6.1.2.1.2.2.1.2.850|4|Vlan467 +1.3.6.1.2.1.2.2.1.2.851|4|unrouted VLAN 469 +1.3.6.1.2.1.2.2.1.2.852|4|unrouted VLAN 470 +1.3.6.1.2.1.2.2.1.2.853|4|unrouted VLAN 480 +1.3.6.1.2.1.2.2.1.2.854|4|Vlan480 +1.3.6.1.2.1.2.2.1.2.855|4|unrouted VLAN 319 +1.3.6.1.2.1.2.2.1.2.856|4|unrouted VLAN 476 +1.3.6.1.2.1.2.2.1.2.857|4|unrouted VLAN 477 +1.3.6.1.2.1.2.2.1.2.858|4|unrouted VLAN 478 +1.3.6.1.2.1.2.2.1.2.859|4|unrouted VLAN 479 +1.3.6.1.2.1.2.2.1.2.864|4|unrouted VLAN 471 +1.3.6.1.2.1.2.2.1.2.868|4|unrouted VLAN 292 +1.3.6.1.2.1.2.2.1.2.869|4|unrouted VLAN 483 +1.3.6.1.2.1.2.2.1.2.870|4|unrouted VLAN 485 +1.3.6.1.2.1.2.2.1.2.871|4|Vlan483 +1.3.6.1.2.1.2.2.1.2.872|4|Vlan485 +1.3.6.1.2.1.2.2.1.2.873|4|unrouted VLAN 487 +1.3.6.1.2.1.2.2.1.2.874|4|Vlan475 +1.3.6.1.2.1.2.2.1.2.875|4|Vlan474 +1.3.6.1.2.1.2.2.1.2.876|4|Vlan472 +1.3.6.1.2.1.2.2.1.2.877|4|Vlan473 +1.3.6.1.2.1.2.2.1.2.878|4|unrouted VLAN 472 +1.3.6.1.2.1.2.2.1.2.879|4|unrouted VLAN 473 +1.3.6.1.2.1.2.2.1.2.880|4|unrouted VLAN 474 +1.3.6.1.2.1.2.2.1.2.881|4|unrouted VLAN 475 +1.3.6.1.2.1.2.2.1.2.882|4|unrouted VLAN 486 +1.3.6.1.2.1.2.2.1.2.883|4|Vlan486 +1.3.6.1.2.1.2.2.1.2.884|4|unrouted VLAN 484 +1.3.6.1.2.1.2.2.1.2.885|4|Vlan484 +1.3.6.1.2.1.2.2.1.2.886|4|unrouted VLAN 481 +1.3.6.1.2.1.2.2.1.2.887|4|unrouted VLAN 482 +1.3.6.1.2.1.2.2.1.2.888|4|unrouted VLAN 990 +1.3.6.1.2.1.2.2.1.2.889|4|unrouted VLAN 991 +1.3.6.1.2.1.2.2.1.2.890|4|unrouted VLAN 992 +1.3.6.1.2.1.2.2.1.2.891|4|unrouted VLAN 700 +1.3.6.1.2.1.2.2.1.2.892|4|unrouted VLAN 701 +1.3.6.1.2.1.2.2.1.2.893|4|unrouted VLAN 710 +1.3.6.1.2.1.2.2.1.2.894|4|unrouted VLAN 711 +1.3.6.1.2.1.2.2.1.2.895|4|unrouted VLAN 712 +1.3.6.1.2.1.2.2.1.2.896|4|unrouted VLAN 713 +1.3.6.1.2.1.2.2.1.2.897|4|unrouted VLAN 714 +1.3.6.1.2.1.2.2.1.2.898|4|unrouted VLAN 715 +1.3.6.1.2.1.2.2.1.2.899|4|unrouted VLAN 602 +1.3.6.1.2.1.2.2.1.2.900|4|unrouted VLAN 603 +1.3.6.1.2.1.2.2.1.2.901|4|unrouted VLAN 604 +1.3.6.1.2.1.2.2.1.2.902|4|unrouted VLAN 488 +1.3.6.1.2.1.2.2.1.2.903|4|unrouted VLAN 489 +1.3.6.1.2.1.2.2.1.2.904|4|unrouted VLAN 490 +1.3.6.1.2.1.2.2.1.2.905|4|unrouted VLAN 491 +1.3.6.1.2.1.2.2.1.2.906|4|unrouted VLAN 605 +1.3.6.1.2.1.2.2.1.2.907|4|Vlan603 +1.3.6.1.2.1.2.2.1.2.908|4|Vlan604 +1.3.6.1.2.1.2.2.1.2.909|4|Vlan700 +1.3.6.1.2.1.2.2.1.2.910|4|unrouted VLAN 71 +1.3.6.1.2.1.2.2.1.2.911|4|unrouted VLAN 606 +1.3.6.1.2.1.2.2.1.2.912|4|unrouted VLAN 607 +1.3.6.1.2.1.2.2.1.2.913|4|unrouted VLAN 380 +1.3.6.1.2.1.2.2.1.2.914|4|unrouted VLAN 375 +1.3.6.1.2.1.2.2.1.2.915|4|unrouted VLAN 199 +1.3.6.1.2.1.2.2.1.2.916|4|unrouted VLAN 493 +1.3.6.1.2.1.2.2.1.2.917|4|unrouted VLAN 494 +1.3.6.1.2.1.2.2.1.2.918|4|unrouted VLAN 495 +1.3.6.1.2.1.2.2.1.2.919|4|Vlan494 +1.3.6.1.2.1.2.2.1.2.920|4|Vlan495 +1.3.6.1.2.1.2.2.1.2.921|4|Vlan493 +1.3.6.1.2.1.2.2.1.2.922|4|unrouted VLAN 496 +1.3.6.1.2.1.2.2.1.2.923|4|unrouted VLAN 497 +1.3.6.1.2.1.2.2.1.2.924|4|unrouted VLAN 498 +1.3.6.1.2.1.2.2.1.2.925|4|Vlan497 +1.3.6.1.2.1.2.2.1.2.926|4|Vlan498 +1.3.6.1.2.1.2.2.1.2.927|4|Vlan496 +1.3.6.1.2.1.2.2.1.2.928|4|unrouted VLAN 716 +1.3.6.1.2.1.2.2.1.2.929|4|unrouted VLAN 717 +1.3.6.1.2.1.2.2.1.2.930|4|unrouted VLAN 718 +1.3.6.1.2.1.2.2.1.2.931|4|unrouted VLAN 719 +1.3.6.1.2.1.2.2.1.2.932|4|unrouted VLAN 720 +1.3.6.1.2.1.2.2.1.2.933|4|unrouted VLAN 721 +1.3.6.1.2.1.2.2.1.2.934|4|unrouted VLAN 722 +1.3.6.1.2.1.2.2.1.2.935|4|unrouted VLAN 723 +1.3.6.1.2.1.2.2.1.2.936|4|unrouted VLAN 724 +1.3.6.1.2.1.2.2.1.2.937|4|unrouted VLAN 725 +1.3.6.1.2.1.2.2.1.2.938|4|Vlan610 +1.3.6.1.2.1.2.2.1.2.939|4|Vlan611 +1.3.6.1.2.1.2.2.1.2.940|4|Vlan250 +1.3.6.1.2.1.2.2.1.2.941|4|Vlan251 +1.3.6.1.2.1.2.2.1.2.942|4|unrouted VLAN 610 +1.3.6.1.2.1.2.2.1.2.943|4|unrouted VLAN 611 +1.3.6.1.2.1.2.2.1.2.944|4|unrouted VLAN 250 +1.3.6.1.2.1.2.2.1.2.945|4|unrouted VLAN 251 +1.3.6.1.2.1.2.2.1.2.946|4|unrouted VLAN 252 +1.3.6.1.2.1.2.2.1.2.947|4|Vlan425 +1.3.6.1.2.1.2.2.1.2.948|4|Vlan424 +1.3.6.1.2.1.2.2.1.2.949|4|unrouted VLAN 709 +1.3.6.1.2.1.2.2.1.3.251|2|53 +1.3.6.1.2.1.2.2.1.3.252|2|53 +1.3.6.1.2.1.2.2.1.3.253|2|1 +1.3.6.1.2.1.2.2.1.3.254|2|1 +1.3.6.1.2.1.2.2.1.3.255|2|1 +1.3.6.1.2.1.2.2.1.3.258|2|53 +1.3.6.1.2.1.2.2.1.3.259|2|1 +1.3.6.1.2.1.2.2.1.3.260|2|53 +1.3.6.1.2.1.2.2.1.3.261|2|53 +1.3.6.1.2.1.2.2.1.3.262|2|53 +1.3.6.1.2.1.2.2.1.3.263|2|53 +1.3.6.1.2.1.2.2.1.3.264|2|53 +1.3.6.1.2.1.2.2.1.3.265|2|53 +1.3.6.1.2.1.2.2.1.3.266|2|53 +1.3.6.1.2.1.2.2.1.3.267|2|53 +1.3.6.1.2.1.2.2.1.3.268|2|53 +1.3.6.1.2.1.2.2.1.3.269|2|53 +1.3.6.1.2.1.2.2.1.3.270|2|53 +1.3.6.1.2.1.2.2.1.3.273|2|53 +1.3.6.1.2.1.2.2.1.3.274|2|53 +1.3.6.1.2.1.2.2.1.3.275|2|53 +1.3.6.1.2.1.2.2.1.3.276|2|53 +1.3.6.1.2.1.2.2.1.3.277|2|53 +1.3.6.1.2.1.2.2.1.3.278|2|53 +1.3.6.1.2.1.2.2.1.3.280|2|53 +1.3.6.1.2.1.2.2.1.3.281|2|53 +1.3.6.1.2.1.2.2.1.3.282|2|53 +1.3.6.1.2.1.2.2.1.3.283|2|53 +1.3.6.1.2.1.2.2.1.3.284|2|53 +1.3.6.1.2.1.2.2.1.3.285|2|53 +1.3.6.1.2.1.2.2.1.3.286|2|53 +1.3.6.1.2.1.2.2.1.3.287|2|53 +1.3.6.1.2.1.2.2.1.3.288|2|53 +1.3.6.1.2.1.2.2.1.3.291|2|53 +1.3.6.1.2.1.2.2.1.3.292|2|53 +1.3.6.1.2.1.2.2.1.3.293|2|53 +1.3.6.1.2.1.2.2.1.3.294|2|53 +1.3.6.1.2.1.2.2.1.3.295|2|53 +1.3.6.1.2.1.2.2.1.3.395|2|53 +1.3.6.1.2.1.2.2.1.3.396|2|53 +1.3.6.1.2.1.2.2.1.3.398|2|53 +1.3.6.1.2.1.2.2.1.3.399|2|53 +1.3.6.1.2.1.2.2.1.3.414|2|53 +1.3.6.1.2.1.2.2.1.3.415|2|24 +1.3.6.1.2.1.2.2.1.3.417|2|53 +1.3.6.1.2.1.2.2.1.3.418|2|53 +1.3.6.1.2.1.2.2.1.3.438|2|53 +1.3.6.1.2.1.2.2.1.3.439|2|53 +1.3.6.1.2.1.2.2.1.3.440|2|53 +1.3.6.1.2.1.2.2.1.3.441|2|53 +1.3.6.1.2.1.2.2.1.3.442|2|53 +1.3.6.1.2.1.2.2.1.3.443|2|53 +1.3.6.1.2.1.2.2.1.3.444|2|53 +1.3.6.1.2.1.2.2.1.3.445|2|53 +1.3.6.1.2.1.2.2.1.3.446|2|53 +1.3.6.1.2.1.2.2.1.3.447|2|53 +1.3.6.1.2.1.2.2.1.3.448|2|53 +1.3.6.1.2.1.2.2.1.3.449|2|53 +1.3.6.1.2.1.2.2.1.3.450|2|53 +1.3.6.1.2.1.2.2.1.3.451|2|53 +1.3.6.1.2.1.2.2.1.3.452|2|53 +1.3.6.1.2.1.2.2.1.3.453|2|53 +1.3.6.1.2.1.2.2.1.3.454|2|53 +1.3.6.1.2.1.2.2.1.3.455|2|53 +1.3.6.1.2.1.2.2.1.3.456|2|53 +1.3.6.1.2.1.2.2.1.3.457|2|53 +1.3.6.1.2.1.2.2.1.3.462|2|53 +1.3.6.1.2.1.2.2.1.3.464|2|161 +1.3.6.1.2.1.2.2.1.3.465|2|53 +1.3.6.1.2.1.2.2.1.3.467|2|53 +1.3.6.1.2.1.2.2.1.3.468|2|53 +1.3.6.1.2.1.2.2.1.3.474|2|53 +1.3.6.1.2.1.2.2.1.3.475|2|53 +1.3.6.1.2.1.2.2.1.3.476|2|53 +1.3.6.1.2.1.2.2.1.3.477|2|53 +1.3.6.1.2.1.2.2.1.3.478|2|53 +1.3.6.1.2.1.2.2.1.3.487|2|161 +1.3.6.1.2.1.2.2.1.3.489|2|53 +1.3.6.1.2.1.2.2.1.3.490|2|53 +1.3.6.1.2.1.2.2.1.3.493|2|53 +1.3.6.1.2.1.2.2.1.3.494|2|53 +1.3.6.1.2.1.2.2.1.3.495|2|53 +1.3.6.1.2.1.2.2.1.3.496|2|53 +1.3.6.1.2.1.2.2.1.3.497|2|161 +1.3.6.1.2.1.2.2.1.3.502|2|53 +1.3.6.1.2.1.2.2.1.3.503|2|53 +1.3.6.1.2.1.2.2.1.3.504|2|53 +1.3.6.1.2.1.2.2.1.3.505|2|53 +1.3.6.1.2.1.2.2.1.3.506|2|53 +1.3.6.1.2.1.2.2.1.3.509|2|53 +1.3.6.1.2.1.2.2.1.3.510|2|53 +1.3.6.1.2.1.2.2.1.3.511|2|53 +1.3.6.1.2.1.2.2.1.3.513|2|53 +1.3.6.1.2.1.2.2.1.3.514|2|53 +1.3.6.1.2.1.2.2.1.3.515|2|53 +1.3.6.1.2.1.2.2.1.3.516|2|53 +1.3.6.1.2.1.2.2.1.3.517|2|53 +1.3.6.1.2.1.2.2.1.3.518|2|53 +1.3.6.1.2.1.2.2.1.3.519|2|53 +1.3.6.1.2.1.2.2.1.3.520|2|53 +1.3.6.1.2.1.2.2.1.3.523|2|53 +1.3.6.1.2.1.2.2.1.3.524|2|53 +1.3.6.1.2.1.2.2.1.3.525|2|53 +1.3.6.1.2.1.2.2.1.3.526|2|53 +1.3.6.1.2.1.2.2.1.3.527|2|53 +1.3.6.1.2.1.2.2.1.3.528|2|53 +1.3.6.1.2.1.2.2.1.3.529|2|53 +1.3.6.1.2.1.2.2.1.3.530|2|53 +1.3.6.1.2.1.2.2.1.3.531|2|53 +1.3.6.1.2.1.2.2.1.3.532|2|53 +1.3.6.1.2.1.2.2.1.3.533|2|53 +1.3.6.1.2.1.2.2.1.3.534|2|53 +1.3.6.1.2.1.2.2.1.3.535|2|53 +1.3.6.1.2.1.2.2.1.3.536|2|53 +1.3.6.1.2.1.2.2.1.3.538|2|53 +1.3.6.1.2.1.2.2.1.3.540|2|53 +1.3.6.1.2.1.2.2.1.3.541|2|53 +1.3.6.1.2.1.2.2.1.3.542|2|53 +1.3.6.1.2.1.2.2.1.3.543|2|53 +1.3.6.1.2.1.2.2.1.3.544|2|53 +1.3.6.1.2.1.2.2.1.3.545|2|53 +1.3.6.1.2.1.2.2.1.3.546|2|53 +1.3.6.1.2.1.2.2.1.3.547|2|6 +1.3.6.1.2.1.2.2.1.3.548|2|6 +1.3.6.1.2.1.2.2.1.3.549|2|6 +1.3.6.1.2.1.2.2.1.3.550|2|6 +1.3.6.1.2.1.2.2.1.3.551|2|6 +1.3.6.1.2.1.2.2.1.3.552|2|6 +1.3.6.1.2.1.2.2.1.3.553|2|6 +1.3.6.1.2.1.2.2.1.3.554|2|6 +1.3.6.1.2.1.2.2.1.3.555|2|6 +1.3.6.1.2.1.2.2.1.3.556|2|6 +1.3.6.1.2.1.2.2.1.3.557|2|6 +1.3.6.1.2.1.2.2.1.3.558|2|6 +1.3.6.1.2.1.2.2.1.3.559|2|6 +1.3.6.1.2.1.2.2.1.3.560|2|6 +1.3.6.1.2.1.2.2.1.3.561|2|6 +1.3.6.1.2.1.2.2.1.3.562|2|6 +1.3.6.1.2.1.2.2.1.3.563|2|6 +1.3.6.1.2.1.2.2.1.3.564|2|6 +1.3.6.1.2.1.2.2.1.3.565|2|6 +1.3.6.1.2.1.2.2.1.3.566|2|6 +1.3.6.1.2.1.2.2.1.3.567|2|6 +1.3.6.1.2.1.2.2.1.3.568|2|6 +1.3.6.1.2.1.2.2.1.3.569|2|6 +1.3.6.1.2.1.2.2.1.3.570|2|6 +1.3.6.1.2.1.2.2.1.3.571|2|6 +1.3.6.1.2.1.2.2.1.3.572|2|6 +1.3.6.1.2.1.2.2.1.3.573|2|6 +1.3.6.1.2.1.2.2.1.3.574|2|6 +1.3.6.1.2.1.2.2.1.3.575|2|6 +1.3.6.1.2.1.2.2.1.3.576|2|6 +1.3.6.1.2.1.2.2.1.3.577|2|6 +1.3.6.1.2.1.2.2.1.3.578|2|6 +1.3.6.1.2.1.2.2.1.3.579|2|6 +1.3.6.1.2.1.2.2.1.3.580|2|6 +1.3.6.1.2.1.2.2.1.3.581|2|6 +1.3.6.1.2.1.2.2.1.3.582|2|6 +1.3.6.1.2.1.2.2.1.3.583|2|6 +1.3.6.1.2.1.2.2.1.3.584|2|6 +1.3.6.1.2.1.2.2.1.3.585|2|6 +1.3.6.1.2.1.2.2.1.3.586|2|6 +1.3.6.1.2.1.2.2.1.3.587|2|6 +1.3.6.1.2.1.2.2.1.3.588|2|6 +1.3.6.1.2.1.2.2.1.3.589|2|6 +1.3.6.1.2.1.2.2.1.3.590|2|6 +1.3.6.1.2.1.2.2.1.3.591|2|6 +1.3.6.1.2.1.2.2.1.3.592|2|6 +1.3.6.1.2.1.2.2.1.3.593|2|6 +1.3.6.1.2.1.2.2.1.3.594|2|6 +1.3.6.1.2.1.2.2.1.3.595|2|6 +1.3.6.1.2.1.2.2.1.3.596|2|6 +1.3.6.1.2.1.2.2.1.3.597|2|6 +1.3.6.1.2.1.2.2.1.3.598|2|6 +1.3.6.1.2.1.2.2.1.3.599|2|6 +1.3.6.1.2.1.2.2.1.3.600|2|6 +1.3.6.1.2.1.2.2.1.3.601|2|6 +1.3.6.1.2.1.2.2.1.3.602|2|6 +1.3.6.1.2.1.2.2.1.3.603|2|6 +1.3.6.1.2.1.2.2.1.3.604|2|6 +1.3.6.1.2.1.2.2.1.3.605|2|6 +1.3.6.1.2.1.2.2.1.3.606|2|6 +1.3.6.1.2.1.2.2.1.3.607|2|6 +1.3.6.1.2.1.2.2.1.3.608|2|6 +1.3.6.1.2.1.2.2.1.3.609|2|6 +1.3.6.1.2.1.2.2.1.3.610|2|6 +1.3.6.1.2.1.2.2.1.3.611|2|6 +1.3.6.1.2.1.2.2.1.3.612|2|6 +1.3.6.1.2.1.2.2.1.3.613|2|6 +1.3.6.1.2.1.2.2.1.3.614|2|6 +1.3.6.1.2.1.2.2.1.3.615|2|6 +1.3.6.1.2.1.2.2.1.3.616|2|6 +1.3.6.1.2.1.2.2.1.3.617|2|6 +1.3.6.1.2.1.2.2.1.3.618|2|6 +1.3.6.1.2.1.2.2.1.3.619|2|6 +1.3.6.1.2.1.2.2.1.3.620|2|6 +1.3.6.1.2.1.2.2.1.3.621|2|6 +1.3.6.1.2.1.2.2.1.3.622|2|6 +1.3.6.1.2.1.2.2.1.3.623|2|6 +1.3.6.1.2.1.2.2.1.3.624|2|6 +1.3.6.1.2.1.2.2.1.3.625|2|6 +1.3.6.1.2.1.2.2.1.3.626|2|6 +1.3.6.1.2.1.2.2.1.3.627|2|6 +1.3.6.1.2.1.2.2.1.3.628|2|6 +1.3.6.1.2.1.2.2.1.3.629|2|6 +1.3.6.1.2.1.2.2.1.3.630|2|6 +1.3.6.1.2.1.2.2.1.3.631|2|6 +1.3.6.1.2.1.2.2.1.3.632|2|6 +1.3.6.1.2.1.2.2.1.3.633|2|6 +1.3.6.1.2.1.2.2.1.3.634|2|6 +1.3.6.1.2.1.2.2.1.3.635|2|6 +1.3.6.1.2.1.2.2.1.3.636|2|6 +1.3.6.1.2.1.2.2.1.3.637|2|6 +1.3.6.1.2.1.2.2.1.3.638|2|6 +1.3.6.1.2.1.2.2.1.3.639|2|6 +1.3.6.1.2.1.2.2.1.3.640|2|6 +1.3.6.1.2.1.2.2.1.3.641|2|6 +1.3.6.1.2.1.2.2.1.3.642|2|6 +1.3.6.1.2.1.2.2.1.3.643|2|6 +1.3.6.1.2.1.2.2.1.3.644|2|6 +1.3.6.1.2.1.2.2.1.3.645|2|6 +1.3.6.1.2.1.2.2.1.3.646|2|6 +1.3.6.1.2.1.2.2.1.3.647|2|6 +1.3.6.1.2.1.2.2.1.3.648|2|6 +1.3.6.1.2.1.2.2.1.3.649|2|6 +1.3.6.1.2.1.2.2.1.3.650|2|6 +1.3.6.1.2.1.2.2.1.3.651|2|6 +1.3.6.1.2.1.2.2.1.3.652|2|6 +1.3.6.1.2.1.2.2.1.3.653|2|6 +1.3.6.1.2.1.2.2.1.3.654|2|6 +1.3.6.1.2.1.2.2.1.3.655|2|6 +1.3.6.1.2.1.2.2.1.3.656|2|6 +1.3.6.1.2.1.2.2.1.3.657|2|6 +1.3.6.1.2.1.2.2.1.3.658|2|6 +1.3.6.1.2.1.2.2.1.3.659|2|6 +1.3.6.1.2.1.2.2.1.3.660|2|6 +1.3.6.1.2.1.2.2.1.3.661|2|6 +1.3.6.1.2.1.2.2.1.3.662|2|6 +1.3.6.1.2.1.2.2.1.3.663|2|6 +1.3.6.1.2.1.2.2.1.3.664|2|6 +1.3.6.1.2.1.2.2.1.3.665|2|6 +1.3.6.1.2.1.2.2.1.3.666|2|6 +1.3.6.1.2.1.2.2.1.3.667|2|6 +1.3.6.1.2.1.2.2.1.3.668|2|6 +1.3.6.1.2.1.2.2.1.3.669|2|6 +1.3.6.1.2.1.2.2.1.3.670|2|6 +1.3.6.1.2.1.2.2.1.3.671|2|6 +1.3.6.1.2.1.2.2.1.3.672|2|6 +1.3.6.1.2.1.2.2.1.3.673|2|6 +1.3.6.1.2.1.2.2.1.3.674|2|6 +1.3.6.1.2.1.2.2.1.3.675|2|6 +1.3.6.1.2.1.2.2.1.3.676|2|6 +1.3.6.1.2.1.2.2.1.3.677|2|6 +1.3.6.1.2.1.2.2.1.3.678|2|6 +1.3.6.1.2.1.2.2.1.3.679|2|6 +1.3.6.1.2.1.2.2.1.3.680|2|6 +1.3.6.1.2.1.2.2.1.3.681|2|6 +1.3.6.1.2.1.2.2.1.3.682|2|6 +1.3.6.1.2.1.2.2.1.3.683|2|6 +1.3.6.1.2.1.2.2.1.3.684|2|6 +1.3.6.1.2.1.2.2.1.3.685|2|6 +1.3.6.1.2.1.2.2.1.3.686|2|6 +1.3.6.1.2.1.2.2.1.3.687|2|6 +1.3.6.1.2.1.2.2.1.3.688|2|6 +1.3.6.1.2.1.2.2.1.3.689|2|6 +1.3.6.1.2.1.2.2.1.3.690|2|6 +1.3.6.1.2.1.2.2.1.3.691|2|6 +1.3.6.1.2.1.2.2.1.3.692|2|6 +1.3.6.1.2.1.2.2.1.3.693|2|6 +1.3.6.1.2.1.2.2.1.3.694|2|6 +1.3.6.1.2.1.2.2.1.3.695|2|6 +1.3.6.1.2.1.2.2.1.3.696|2|6 +1.3.6.1.2.1.2.2.1.3.697|2|6 +1.3.6.1.2.1.2.2.1.3.698|2|6 +1.3.6.1.2.1.2.2.1.3.699|2|6 +1.3.6.1.2.1.2.2.1.3.700|2|6 +1.3.6.1.2.1.2.2.1.3.701|2|6 +1.3.6.1.2.1.2.2.1.3.702|2|6 +1.3.6.1.2.1.2.2.1.3.703|2|6 +1.3.6.1.2.1.2.2.1.3.704|2|6 +1.3.6.1.2.1.2.2.1.3.705|2|6 +1.3.6.1.2.1.2.2.1.3.706|2|6 +1.3.6.1.2.1.2.2.1.3.707|2|6 +1.3.6.1.2.1.2.2.1.3.708|2|6 +1.3.6.1.2.1.2.2.1.3.709|2|6 +1.3.6.1.2.1.2.2.1.3.710|2|6 +1.3.6.1.2.1.2.2.1.3.711|2|6 +1.3.6.1.2.1.2.2.1.3.712|2|6 +1.3.6.1.2.1.2.2.1.3.713|2|6 +1.3.6.1.2.1.2.2.1.3.714|2|6 +1.3.6.1.2.1.2.2.1.3.715|2|6 +1.3.6.1.2.1.2.2.1.3.716|2|6 +1.3.6.1.2.1.2.2.1.3.717|2|6 +1.3.6.1.2.1.2.2.1.3.718|2|6 +1.3.6.1.2.1.2.2.1.3.719|2|6 +1.3.6.1.2.1.2.2.1.3.720|2|6 +1.3.6.1.2.1.2.2.1.3.721|2|6 +1.3.6.1.2.1.2.2.1.3.722|2|6 +1.3.6.1.2.1.2.2.1.3.723|2|6 +1.3.6.1.2.1.2.2.1.3.724|2|6 +1.3.6.1.2.1.2.2.1.3.725|2|6 +1.3.6.1.2.1.2.2.1.3.726|2|6 +1.3.6.1.2.1.2.2.1.3.727|2|6 +1.3.6.1.2.1.2.2.1.3.728|2|6 +1.3.6.1.2.1.2.2.1.3.729|2|6 +1.3.6.1.2.1.2.2.1.3.730|2|6 +1.3.6.1.2.1.2.2.1.3.731|2|6 +1.3.6.1.2.1.2.2.1.3.732|2|6 +1.3.6.1.2.1.2.2.1.3.733|2|6 +1.3.6.1.2.1.2.2.1.3.734|2|6 +1.3.6.1.2.1.2.2.1.3.735|2|6 +1.3.6.1.2.1.2.2.1.3.736|2|6 +1.3.6.1.2.1.2.2.1.3.737|2|6 +1.3.6.1.2.1.2.2.1.3.738|2|6 +1.3.6.1.2.1.2.2.1.3.739|2|6 +1.3.6.1.2.1.2.2.1.3.740|2|6 +1.3.6.1.2.1.2.2.1.3.741|2|6 +1.3.6.1.2.1.2.2.1.3.742|2|6 +1.3.6.1.2.1.2.2.1.3.743|2|6 +1.3.6.1.2.1.2.2.1.3.744|2|6 +1.3.6.1.2.1.2.2.1.3.745|2|6 +1.3.6.1.2.1.2.2.1.3.746|2|6 +1.3.6.1.2.1.2.2.1.3.747|2|6 +1.3.6.1.2.1.2.2.1.3.748|2|6 +1.3.6.1.2.1.2.2.1.3.749|2|6 +1.3.6.1.2.1.2.2.1.3.750|2|6 +1.3.6.1.2.1.2.2.1.3.751|2|6 +1.3.6.1.2.1.2.2.1.3.768|2|53 +1.3.6.1.2.1.2.2.1.3.769|2|53 +1.3.6.1.2.1.2.2.1.3.770|2|53 +1.3.6.1.2.1.2.2.1.3.771|2|53 +1.3.6.1.2.1.2.2.1.3.772|2|53 +1.3.6.1.2.1.2.2.1.3.773|2|53 +1.3.6.1.2.1.2.2.1.3.774|2|53 +1.3.6.1.2.1.2.2.1.3.775|2|53 +1.3.6.1.2.1.2.2.1.3.776|2|53 +1.3.6.1.2.1.2.2.1.3.777|2|53 +1.3.6.1.2.1.2.2.1.3.778|2|53 +1.3.6.1.2.1.2.2.1.3.779|2|53 +1.3.6.1.2.1.2.2.1.3.780|2|53 +1.3.6.1.2.1.2.2.1.3.781|2|53 +1.3.6.1.2.1.2.2.1.3.782|2|53 +1.3.6.1.2.1.2.2.1.3.783|2|53 +1.3.6.1.2.1.2.2.1.3.784|2|53 +1.3.6.1.2.1.2.2.1.3.785|2|53 +1.3.6.1.2.1.2.2.1.3.786|2|53 +1.3.6.1.2.1.2.2.1.3.787|2|53 +1.3.6.1.2.1.2.2.1.3.788|2|53 +1.3.6.1.2.1.2.2.1.3.789|2|53 +1.3.6.1.2.1.2.2.1.3.790|2|53 +1.3.6.1.2.1.2.2.1.3.791|2|53 +1.3.6.1.2.1.2.2.1.3.792|2|53 +1.3.6.1.2.1.2.2.1.3.793|2|53 +1.3.6.1.2.1.2.2.1.3.794|2|53 +1.3.6.1.2.1.2.2.1.3.795|2|53 +1.3.6.1.2.1.2.2.1.3.796|2|53 +1.3.6.1.2.1.2.2.1.3.797|2|53 +1.3.6.1.2.1.2.2.1.3.798|2|53 +1.3.6.1.2.1.2.2.1.3.799|2|53 +1.3.6.1.2.1.2.2.1.3.800|2|53 +1.3.6.1.2.1.2.2.1.3.801|2|53 +1.3.6.1.2.1.2.2.1.3.802|2|53 +1.3.6.1.2.1.2.2.1.3.803|2|53 +1.3.6.1.2.1.2.2.1.3.804|2|53 +1.3.6.1.2.1.2.2.1.3.805|2|53 +1.3.6.1.2.1.2.2.1.3.806|2|53 +1.3.6.1.2.1.2.2.1.3.807|2|53 +1.3.6.1.2.1.2.2.1.3.808|2|53 +1.3.6.1.2.1.2.2.1.3.809|2|53 +1.3.6.1.2.1.2.2.1.3.810|2|53 +1.3.6.1.2.1.2.2.1.3.811|2|53 +1.3.6.1.2.1.2.2.1.3.812|2|53 +1.3.6.1.2.1.2.2.1.3.813|2|53 +1.3.6.1.2.1.2.2.1.3.814|2|53 +1.3.6.1.2.1.2.2.1.3.815|2|53 +1.3.6.1.2.1.2.2.1.3.816|2|53 +1.3.6.1.2.1.2.2.1.3.817|2|53 +1.3.6.1.2.1.2.2.1.3.818|2|53 +1.3.6.1.2.1.2.2.1.3.819|2|53 +1.3.6.1.2.1.2.2.1.3.820|2|53 +1.3.6.1.2.1.2.2.1.3.821|2|53 +1.3.6.1.2.1.2.2.1.3.822|2|53 +1.3.6.1.2.1.2.2.1.3.823|2|53 +1.3.6.1.2.1.2.2.1.3.824|2|53 +1.3.6.1.2.1.2.2.1.3.825|2|53 +1.3.6.1.2.1.2.2.1.3.826|2|53 +1.3.6.1.2.1.2.2.1.3.827|2|53 +1.3.6.1.2.1.2.2.1.3.828|2|53 +1.3.6.1.2.1.2.2.1.3.829|2|53 +1.3.6.1.2.1.2.2.1.3.830|2|53 +1.3.6.1.2.1.2.2.1.3.831|2|53 +1.3.6.1.2.1.2.2.1.3.832|2|53 +1.3.6.1.2.1.2.2.1.3.833|2|53 +1.3.6.1.2.1.2.2.1.3.834|2|53 +1.3.6.1.2.1.2.2.1.3.835|2|53 +1.3.6.1.2.1.2.2.1.3.836|2|53 +1.3.6.1.2.1.2.2.1.3.837|2|53 +1.3.6.1.2.1.2.2.1.3.838|2|53 +1.3.6.1.2.1.2.2.1.3.839|2|53 +1.3.6.1.2.1.2.2.1.3.840|2|53 +1.3.6.1.2.1.2.2.1.3.841|2|53 +1.3.6.1.2.1.2.2.1.3.842|2|53 +1.3.6.1.2.1.2.2.1.3.843|2|53 +1.3.6.1.2.1.2.2.1.3.844|2|53 +1.3.6.1.2.1.2.2.1.3.845|2|53 +1.3.6.1.2.1.2.2.1.3.846|2|53 +1.3.6.1.2.1.2.2.1.3.847|2|53 +1.3.6.1.2.1.2.2.1.3.848|2|53 +1.3.6.1.2.1.2.2.1.3.849|2|53 +1.3.6.1.2.1.2.2.1.3.850|2|53 +1.3.6.1.2.1.2.2.1.3.851|2|53 +1.3.6.1.2.1.2.2.1.3.852|2|53 +1.3.6.1.2.1.2.2.1.3.853|2|53 +1.3.6.1.2.1.2.2.1.3.854|2|53 +1.3.6.1.2.1.2.2.1.3.855|2|53 +1.3.6.1.2.1.2.2.1.3.856|2|53 +1.3.6.1.2.1.2.2.1.3.857|2|53 +1.3.6.1.2.1.2.2.1.3.858|2|53 +1.3.6.1.2.1.2.2.1.3.859|2|53 +1.3.6.1.2.1.2.2.1.3.864|2|53 +1.3.6.1.2.1.2.2.1.3.868|2|53 +1.3.6.1.2.1.2.2.1.3.869|2|53 +1.3.6.1.2.1.2.2.1.3.870|2|53 +1.3.6.1.2.1.2.2.1.3.871|2|53 +1.3.6.1.2.1.2.2.1.3.872|2|53 +1.3.6.1.2.1.2.2.1.3.873|2|53 +1.3.6.1.2.1.2.2.1.3.874|2|53 +1.3.6.1.2.1.2.2.1.3.875|2|53 +1.3.6.1.2.1.2.2.1.3.876|2|53 +1.3.6.1.2.1.2.2.1.3.877|2|53 +1.3.6.1.2.1.2.2.1.3.878|2|53 +1.3.6.1.2.1.2.2.1.3.879|2|53 +1.3.6.1.2.1.2.2.1.3.880|2|53 +1.3.6.1.2.1.2.2.1.3.881|2|53 +1.3.6.1.2.1.2.2.1.3.882|2|53 +1.3.6.1.2.1.2.2.1.3.883|2|53 +1.3.6.1.2.1.2.2.1.3.884|2|53 +1.3.6.1.2.1.2.2.1.3.885|2|53 +1.3.6.1.2.1.2.2.1.3.886|2|53 +1.3.6.1.2.1.2.2.1.3.887|2|53 +1.3.6.1.2.1.2.2.1.3.888|2|53 +1.3.6.1.2.1.2.2.1.3.889|2|53 +1.3.6.1.2.1.2.2.1.3.890|2|53 +1.3.6.1.2.1.2.2.1.3.891|2|53 +1.3.6.1.2.1.2.2.1.3.892|2|53 +1.3.6.1.2.1.2.2.1.3.893|2|53 +1.3.6.1.2.1.2.2.1.3.894|2|53 +1.3.6.1.2.1.2.2.1.3.895|2|53 +1.3.6.1.2.1.2.2.1.3.896|2|53 +1.3.6.1.2.1.2.2.1.3.897|2|53 +1.3.6.1.2.1.2.2.1.3.898|2|53 +1.3.6.1.2.1.2.2.1.3.899|2|53 +1.3.6.1.2.1.2.2.1.3.900|2|53 +1.3.6.1.2.1.2.2.1.3.901|2|53 +1.3.6.1.2.1.2.2.1.3.902|2|53 +1.3.6.1.2.1.2.2.1.3.903|2|53 +1.3.6.1.2.1.2.2.1.3.904|2|53 +1.3.6.1.2.1.2.2.1.3.905|2|53 +1.3.6.1.2.1.2.2.1.3.906|2|53 +1.3.6.1.2.1.2.2.1.3.907|2|53 +1.3.6.1.2.1.2.2.1.3.908|2|53 +1.3.6.1.2.1.2.2.1.3.909|2|53 +1.3.6.1.2.1.2.2.1.3.910|2|53 +1.3.6.1.2.1.2.2.1.3.911|2|53 +1.3.6.1.2.1.2.2.1.3.912|2|53 +1.3.6.1.2.1.2.2.1.3.913|2|53 +1.3.6.1.2.1.2.2.1.3.914|2|53 +1.3.6.1.2.1.2.2.1.3.915|2|53 +1.3.6.1.2.1.2.2.1.3.916|2|53 +1.3.6.1.2.1.2.2.1.3.917|2|53 +1.3.6.1.2.1.2.2.1.3.918|2|53 +1.3.6.1.2.1.2.2.1.3.919|2|53 +1.3.6.1.2.1.2.2.1.3.920|2|53 +1.3.6.1.2.1.2.2.1.3.921|2|53 +1.3.6.1.2.1.2.2.1.3.922|2|53 +1.3.6.1.2.1.2.2.1.3.923|2|53 +1.3.6.1.2.1.2.2.1.3.924|2|53 +1.3.6.1.2.1.2.2.1.3.925|2|53 +1.3.6.1.2.1.2.2.1.3.926|2|53 +1.3.6.1.2.1.2.2.1.3.927|2|53 +1.3.6.1.2.1.2.2.1.3.928|2|53 +1.3.6.1.2.1.2.2.1.3.929|2|53 +1.3.6.1.2.1.2.2.1.3.930|2|53 +1.3.6.1.2.1.2.2.1.3.931|2|53 +1.3.6.1.2.1.2.2.1.3.932|2|53 +1.3.6.1.2.1.2.2.1.3.933|2|53 +1.3.6.1.2.1.2.2.1.3.934|2|53 +1.3.6.1.2.1.2.2.1.3.935|2|53 +1.3.6.1.2.1.2.2.1.3.936|2|53 +1.3.6.1.2.1.2.2.1.3.937|2|53 +1.3.6.1.2.1.2.2.1.3.938|2|53 +1.3.6.1.2.1.2.2.1.3.939|2|53 +1.3.6.1.2.1.2.2.1.3.940|2|53 +1.3.6.1.2.1.2.2.1.3.941|2|53 +1.3.6.1.2.1.2.2.1.3.942|2|53 +1.3.6.1.2.1.2.2.1.3.943|2|53 +1.3.6.1.2.1.2.2.1.3.944|2|53 +1.3.6.1.2.1.2.2.1.3.945|2|53 +1.3.6.1.2.1.2.2.1.3.946|2|53 +1.3.6.1.2.1.2.2.1.3.947|2|53 +1.3.6.1.2.1.2.2.1.3.948|2|53 +1.3.6.1.2.1.2.2.1.3.949|2|53 +1.3.6.1.2.1.2.2.1.4.251|2|1500 +1.3.6.1.2.1.2.2.1.4.252|2|1500 +1.3.6.1.2.1.2.2.1.4.253|2|1500 +1.3.6.1.2.1.2.2.1.4.254|2|1514 +1.3.6.1.2.1.2.2.1.4.255|2|1514 +1.3.6.1.2.1.2.2.1.4.258|2|1500 +1.3.6.1.2.1.2.2.1.4.259|2|0 +1.3.6.1.2.1.2.2.1.4.260|2|1500 +1.3.6.1.2.1.2.2.1.4.261|2|1500 +1.3.6.1.2.1.2.2.1.4.262|2|1500 +1.3.6.1.2.1.2.2.1.4.263|2|1500 +1.3.6.1.2.1.2.2.1.4.264|2|1500 +1.3.6.1.2.1.2.2.1.4.265|2|1500 +1.3.6.1.2.1.2.2.1.4.266|2|1500 +1.3.6.1.2.1.2.2.1.4.267|2|1500 +1.3.6.1.2.1.2.2.1.4.268|2|1500 +1.3.6.1.2.1.2.2.1.4.269|2|1500 +1.3.6.1.2.1.2.2.1.4.270|2|1500 +1.3.6.1.2.1.2.2.1.4.273|2|1500 +1.3.6.1.2.1.2.2.1.4.274|2|1500 +1.3.6.1.2.1.2.2.1.4.275|2|1500 +1.3.6.1.2.1.2.2.1.4.276|2|1500 +1.3.6.1.2.1.2.2.1.4.277|2|1500 +1.3.6.1.2.1.2.2.1.4.278|2|1500 +1.3.6.1.2.1.2.2.1.4.280|2|1500 +1.3.6.1.2.1.2.2.1.4.281|2|1500 +1.3.6.1.2.1.2.2.1.4.282|2|1500 +1.3.6.1.2.1.2.2.1.4.283|2|1500 +1.3.6.1.2.1.2.2.1.4.284|2|1500 +1.3.6.1.2.1.2.2.1.4.285|2|1500 +1.3.6.1.2.1.2.2.1.4.286|2|1500 +1.3.6.1.2.1.2.2.1.4.287|2|1500 +1.3.6.1.2.1.2.2.1.4.288|2|1500 +1.3.6.1.2.1.2.2.1.4.291|2|1500 +1.3.6.1.2.1.2.2.1.4.292|2|1500 +1.3.6.1.2.1.2.2.1.4.293|2|1500 +1.3.6.1.2.1.2.2.1.4.294|2|1500 +1.3.6.1.2.1.2.2.1.4.295|2|1500 +1.3.6.1.2.1.2.2.1.4.395|2|1500 +1.3.6.1.2.1.2.2.1.4.396|2|1500 +1.3.6.1.2.1.2.2.1.4.398|2|1500 +1.3.6.1.2.1.2.2.1.4.399|2|1500 +1.3.6.1.2.1.2.2.1.4.414|2|1500 +1.3.6.1.2.1.2.2.1.4.415|2|1514 +1.3.6.1.2.1.2.2.1.4.417|2|1500 +1.3.6.1.2.1.2.2.1.4.418|2|1500 +1.3.6.1.2.1.2.2.1.4.438|2|1500 +1.3.6.1.2.1.2.2.1.4.439|2|1500 +1.3.6.1.2.1.2.2.1.4.440|2|1500 +1.3.6.1.2.1.2.2.1.4.441|2|1500 +1.3.6.1.2.1.2.2.1.4.442|2|1500 +1.3.6.1.2.1.2.2.1.4.443|2|1500 +1.3.6.1.2.1.2.2.1.4.444|2|1500 +1.3.6.1.2.1.2.2.1.4.445|2|1500 +1.3.6.1.2.1.2.2.1.4.446|2|1500 +1.3.6.1.2.1.2.2.1.4.447|2|1500 +1.3.6.1.2.1.2.2.1.4.448|2|1500 +1.3.6.1.2.1.2.2.1.4.449|2|1500 +1.3.6.1.2.1.2.2.1.4.450|2|1500 +1.3.6.1.2.1.2.2.1.4.451|2|1500 +1.3.6.1.2.1.2.2.1.4.452|2|1500 +1.3.6.1.2.1.2.2.1.4.453|2|1500 +1.3.6.1.2.1.2.2.1.4.454|2|1500 +1.3.6.1.2.1.2.2.1.4.455|2|1500 +1.3.6.1.2.1.2.2.1.4.456|2|1500 +1.3.6.1.2.1.2.2.1.4.457|2|1500 +1.3.6.1.2.1.2.2.1.4.462|2|1500 +1.3.6.1.2.1.2.2.1.4.464|2|1500 +1.3.6.1.2.1.2.2.1.4.465|2|1500 +1.3.6.1.2.1.2.2.1.4.467|2|1500 +1.3.6.1.2.1.2.2.1.4.468|2|1500 +1.3.6.1.2.1.2.2.1.4.474|2|1500 +1.3.6.1.2.1.2.2.1.4.475|2|1500 +1.3.6.1.2.1.2.2.1.4.476|2|1500 +1.3.6.1.2.1.2.2.1.4.477|2|1500 +1.3.6.1.2.1.2.2.1.4.478|2|1500 +1.3.6.1.2.1.2.2.1.4.487|2|1500 +1.3.6.1.2.1.2.2.1.4.489|2|1500 +1.3.6.1.2.1.2.2.1.4.490|2|1500 +1.3.6.1.2.1.2.2.1.4.493|2|1500 +1.3.6.1.2.1.2.2.1.4.494|2|1500 +1.3.6.1.2.1.2.2.1.4.495|2|1500 +1.3.6.1.2.1.2.2.1.4.496|2|1500 +1.3.6.1.2.1.2.2.1.4.497|2|1500 +1.3.6.1.2.1.2.2.1.4.502|2|1500 +1.3.6.1.2.1.2.2.1.4.503|2|1500 +1.3.6.1.2.1.2.2.1.4.504|2|1500 +1.3.6.1.2.1.2.2.1.4.505|2|1500 +1.3.6.1.2.1.2.2.1.4.506|2|1500 +1.3.6.1.2.1.2.2.1.4.509|2|1500 +1.3.6.1.2.1.2.2.1.4.510|2|1500 +1.3.6.1.2.1.2.2.1.4.511|2|1500 +1.3.6.1.2.1.2.2.1.4.513|2|1500 +1.3.6.1.2.1.2.2.1.4.514|2|1500 +1.3.6.1.2.1.2.2.1.4.515|2|1500 +1.3.6.1.2.1.2.2.1.4.516|2|1500 +1.3.6.1.2.1.2.2.1.4.517|2|1500 +1.3.6.1.2.1.2.2.1.4.518|2|1500 +1.3.6.1.2.1.2.2.1.4.519|2|1500 +1.3.6.1.2.1.2.2.1.4.520|2|1500 +1.3.6.1.2.1.2.2.1.4.523|2|1500 +1.3.6.1.2.1.2.2.1.4.524|2|1500 +1.3.6.1.2.1.2.2.1.4.525|2|1500 +1.3.6.1.2.1.2.2.1.4.526|2|1500 +1.3.6.1.2.1.2.2.1.4.527|2|1500 +1.3.6.1.2.1.2.2.1.4.528|2|1500 +1.3.6.1.2.1.2.2.1.4.529|2|1500 +1.3.6.1.2.1.2.2.1.4.530|2|1500 +1.3.6.1.2.1.2.2.1.4.531|2|1500 +1.3.6.1.2.1.2.2.1.4.532|2|1500 +1.3.6.1.2.1.2.2.1.4.533|2|1500 +1.3.6.1.2.1.2.2.1.4.534|2|1500 +1.3.6.1.2.1.2.2.1.4.535|2|1500 +1.3.6.1.2.1.2.2.1.4.536|2|1500 +1.3.6.1.2.1.2.2.1.4.538|2|1500 +1.3.6.1.2.1.2.2.1.4.540|2|1500 +1.3.6.1.2.1.2.2.1.4.541|2|1500 +1.3.6.1.2.1.2.2.1.4.542|2|1500 +1.3.6.1.2.1.2.2.1.4.543|2|1500 +1.3.6.1.2.1.2.2.1.4.544|2|1500 +1.3.6.1.2.1.2.2.1.4.545|2|1500 +1.3.6.1.2.1.2.2.1.4.546|2|1500 +1.3.6.1.2.1.2.2.1.4.547|2|1500 +1.3.6.1.2.1.2.2.1.4.548|2|1500 +1.3.6.1.2.1.2.2.1.4.549|2|1500 +1.3.6.1.2.1.2.2.1.4.550|2|1500 +1.3.6.1.2.1.2.2.1.4.551|2|1500 +1.3.6.1.2.1.2.2.1.4.552|2|1500 +1.3.6.1.2.1.2.2.1.4.553|2|1500 +1.3.6.1.2.1.2.2.1.4.554|2|1500 +1.3.6.1.2.1.2.2.1.4.555|2|1500 +1.3.6.1.2.1.2.2.1.4.556|2|1500 +1.3.6.1.2.1.2.2.1.4.557|2|1500 +1.3.6.1.2.1.2.2.1.4.558|2|1500 +1.3.6.1.2.1.2.2.1.4.559|2|1500 +1.3.6.1.2.1.2.2.1.4.560|2|1500 +1.3.6.1.2.1.2.2.1.4.561|2|1500 +1.3.6.1.2.1.2.2.1.4.562|2|1500 +1.3.6.1.2.1.2.2.1.4.563|2|1500 +1.3.6.1.2.1.2.2.1.4.564|2|1500 +1.3.6.1.2.1.2.2.1.4.565|2|1500 +1.3.6.1.2.1.2.2.1.4.566|2|1500 +1.3.6.1.2.1.2.2.1.4.567|2|1500 +1.3.6.1.2.1.2.2.1.4.568|2|1500 +1.3.6.1.2.1.2.2.1.4.569|2|1500 +1.3.6.1.2.1.2.2.1.4.570|2|1500 +1.3.6.1.2.1.2.2.1.4.571|2|1500 +1.3.6.1.2.1.2.2.1.4.572|2|1500 +1.3.6.1.2.1.2.2.1.4.573|2|1500 +1.3.6.1.2.1.2.2.1.4.574|2|1500 +1.3.6.1.2.1.2.2.1.4.575|2|1500 +1.3.6.1.2.1.2.2.1.4.576|2|1500 +1.3.6.1.2.1.2.2.1.4.577|2|1500 +1.3.6.1.2.1.2.2.1.4.578|2|1500 +1.3.6.1.2.1.2.2.1.4.579|2|1500 +1.3.6.1.2.1.2.2.1.4.580|2|1500 +1.3.6.1.2.1.2.2.1.4.581|2|1500 +1.3.6.1.2.1.2.2.1.4.582|2|1500 +1.3.6.1.2.1.2.2.1.4.583|2|1500 +1.3.6.1.2.1.2.2.1.4.584|2|1500 +1.3.6.1.2.1.2.2.1.4.585|2|1500 +1.3.6.1.2.1.2.2.1.4.586|2|1500 +1.3.6.1.2.1.2.2.1.4.587|2|1500 +1.3.6.1.2.1.2.2.1.4.588|2|1500 +1.3.6.1.2.1.2.2.1.4.589|2|1500 +1.3.6.1.2.1.2.2.1.4.590|2|1500 +1.3.6.1.2.1.2.2.1.4.591|2|1500 +1.3.6.1.2.1.2.2.1.4.592|2|1500 +1.3.6.1.2.1.2.2.1.4.593|2|1500 +1.3.6.1.2.1.2.2.1.4.594|2|1500 +1.3.6.1.2.1.2.2.1.4.595|2|1500 +1.3.6.1.2.1.2.2.1.4.596|2|1500 +1.3.6.1.2.1.2.2.1.4.597|2|1500 +1.3.6.1.2.1.2.2.1.4.598|2|1500 +1.3.6.1.2.1.2.2.1.4.599|2|1500 +1.3.6.1.2.1.2.2.1.4.600|2|1500 +1.3.6.1.2.1.2.2.1.4.601|2|1500 +1.3.6.1.2.1.2.2.1.4.602|2|1500 +1.3.6.1.2.1.2.2.1.4.603|2|1500 +1.3.6.1.2.1.2.2.1.4.604|2|1500 +1.3.6.1.2.1.2.2.1.4.605|2|1500 +1.3.6.1.2.1.2.2.1.4.606|2|1500 +1.3.6.1.2.1.2.2.1.4.607|2|1500 +1.3.6.1.2.1.2.2.1.4.608|2|1500 +1.3.6.1.2.1.2.2.1.4.609|2|1500 +1.3.6.1.2.1.2.2.1.4.610|2|1500 +1.3.6.1.2.1.2.2.1.4.611|2|1500 +1.3.6.1.2.1.2.2.1.4.612|2|1500 +1.3.6.1.2.1.2.2.1.4.613|2|1500 +1.3.6.1.2.1.2.2.1.4.614|2|1500 +1.3.6.1.2.1.2.2.1.4.615|2|1500 +1.3.6.1.2.1.2.2.1.4.616|2|1500 +1.3.6.1.2.1.2.2.1.4.617|2|1500 +1.3.6.1.2.1.2.2.1.4.618|2|1500 +1.3.6.1.2.1.2.2.1.4.619|2|1500 +1.3.6.1.2.1.2.2.1.4.620|2|1500 +1.3.6.1.2.1.2.2.1.4.621|2|1500 +1.3.6.1.2.1.2.2.1.4.622|2|1500 +1.3.6.1.2.1.2.2.1.4.623|2|1500 +1.3.6.1.2.1.2.2.1.4.624|2|1500 +1.3.6.1.2.1.2.2.1.4.625|2|1500 +1.3.6.1.2.1.2.2.1.4.626|2|1500 +1.3.6.1.2.1.2.2.1.4.627|2|1500 +1.3.6.1.2.1.2.2.1.4.628|2|1500 +1.3.6.1.2.1.2.2.1.4.629|2|1500 +1.3.6.1.2.1.2.2.1.4.630|2|1500 +1.3.6.1.2.1.2.2.1.4.631|2|1500 +1.3.6.1.2.1.2.2.1.4.632|2|1500 +1.3.6.1.2.1.2.2.1.4.633|2|1500 +1.3.6.1.2.1.2.2.1.4.634|2|1500 +1.3.6.1.2.1.2.2.1.4.635|2|1500 +1.3.6.1.2.1.2.2.1.4.636|2|1500 +1.3.6.1.2.1.2.2.1.4.637|2|1500 +1.3.6.1.2.1.2.2.1.4.638|2|1500 +1.3.6.1.2.1.2.2.1.4.639|2|1500 +1.3.6.1.2.1.2.2.1.4.640|2|1500 +1.3.6.1.2.1.2.2.1.4.641|2|1500 +1.3.6.1.2.1.2.2.1.4.642|2|1500 +1.3.6.1.2.1.2.2.1.4.643|2|1500 +1.3.6.1.2.1.2.2.1.4.644|2|1500 +1.3.6.1.2.1.2.2.1.4.645|2|1500 +1.3.6.1.2.1.2.2.1.4.646|2|1500 +1.3.6.1.2.1.2.2.1.4.647|2|1500 +1.3.6.1.2.1.2.2.1.4.648|2|1500 +1.3.6.1.2.1.2.2.1.4.649|2|1500 +1.3.6.1.2.1.2.2.1.4.650|2|1500 +1.3.6.1.2.1.2.2.1.4.651|2|1500 +1.3.6.1.2.1.2.2.1.4.652|2|1500 +1.3.6.1.2.1.2.2.1.4.653|2|1500 +1.3.6.1.2.1.2.2.1.4.654|2|1500 +1.3.6.1.2.1.2.2.1.4.655|2|1500 +1.3.6.1.2.1.2.2.1.4.656|2|1500 +1.3.6.1.2.1.2.2.1.4.657|2|1500 +1.3.6.1.2.1.2.2.1.4.658|2|1500 +1.3.6.1.2.1.2.2.1.4.659|2|1500 +1.3.6.1.2.1.2.2.1.4.660|2|1500 +1.3.6.1.2.1.2.2.1.4.661|2|1500 +1.3.6.1.2.1.2.2.1.4.662|2|1500 +1.3.6.1.2.1.2.2.1.4.663|2|1500 +1.3.6.1.2.1.2.2.1.4.664|2|1500 +1.3.6.1.2.1.2.2.1.4.665|2|1500 +1.3.6.1.2.1.2.2.1.4.666|2|1500 +1.3.6.1.2.1.2.2.1.4.667|2|1500 +1.3.6.1.2.1.2.2.1.4.668|2|1500 +1.3.6.1.2.1.2.2.1.4.669|2|1500 +1.3.6.1.2.1.2.2.1.4.670|2|1500 +1.3.6.1.2.1.2.2.1.4.671|2|1500 +1.3.6.1.2.1.2.2.1.4.672|2|1500 +1.3.6.1.2.1.2.2.1.4.673|2|1500 +1.3.6.1.2.1.2.2.1.4.674|2|1500 +1.3.6.1.2.1.2.2.1.4.675|2|1500 +1.3.6.1.2.1.2.2.1.4.676|2|1500 +1.3.6.1.2.1.2.2.1.4.677|2|1500 +1.3.6.1.2.1.2.2.1.4.678|2|1500 +1.3.6.1.2.1.2.2.1.4.679|2|1500 +1.3.6.1.2.1.2.2.1.4.680|2|1500 +1.3.6.1.2.1.2.2.1.4.681|2|1500 +1.3.6.1.2.1.2.2.1.4.682|2|1500 +1.3.6.1.2.1.2.2.1.4.683|2|1500 +1.3.6.1.2.1.2.2.1.4.684|2|1500 +1.3.6.1.2.1.2.2.1.4.685|2|1500 +1.3.6.1.2.1.2.2.1.4.686|2|1500 +1.3.6.1.2.1.2.2.1.4.687|2|1500 +1.3.6.1.2.1.2.2.1.4.688|2|1500 +1.3.6.1.2.1.2.2.1.4.689|2|1500 +1.3.6.1.2.1.2.2.1.4.690|2|1500 +1.3.6.1.2.1.2.2.1.4.691|2|1500 +1.3.6.1.2.1.2.2.1.4.692|2|1500 +1.3.6.1.2.1.2.2.1.4.693|2|1500 +1.3.6.1.2.1.2.2.1.4.694|2|1500 +1.3.6.1.2.1.2.2.1.4.695|2|1500 +1.3.6.1.2.1.2.2.1.4.696|2|1500 +1.3.6.1.2.1.2.2.1.4.697|2|1500 +1.3.6.1.2.1.2.2.1.4.698|2|1500 +1.3.6.1.2.1.2.2.1.4.699|2|1500 +1.3.6.1.2.1.2.2.1.4.700|2|1500 +1.3.6.1.2.1.2.2.1.4.701|2|1500 +1.3.6.1.2.1.2.2.1.4.702|2|1500 +1.3.6.1.2.1.2.2.1.4.703|2|1500 +1.3.6.1.2.1.2.2.1.4.704|2|1500 +1.3.6.1.2.1.2.2.1.4.705|2|1500 +1.3.6.1.2.1.2.2.1.4.706|2|1500 +1.3.6.1.2.1.2.2.1.4.707|2|1500 +1.3.6.1.2.1.2.2.1.4.708|2|1500 +1.3.6.1.2.1.2.2.1.4.709|2|1500 +1.3.6.1.2.1.2.2.1.4.710|2|1500 +1.3.6.1.2.1.2.2.1.4.711|2|1500 +1.3.6.1.2.1.2.2.1.4.712|2|1500 +1.3.6.1.2.1.2.2.1.4.713|2|1500 +1.3.6.1.2.1.2.2.1.4.714|2|1500 +1.3.6.1.2.1.2.2.1.4.715|2|1500 +1.3.6.1.2.1.2.2.1.4.716|2|1500 +1.3.6.1.2.1.2.2.1.4.717|2|1500 +1.3.6.1.2.1.2.2.1.4.718|2|1500 +1.3.6.1.2.1.2.2.1.4.719|2|1500 +1.3.6.1.2.1.2.2.1.4.720|2|1500 +1.3.6.1.2.1.2.2.1.4.721|2|1500 +1.3.6.1.2.1.2.2.1.4.722|2|1500 +1.3.6.1.2.1.2.2.1.4.723|2|1500 +1.3.6.1.2.1.2.2.1.4.724|2|1500 +1.3.6.1.2.1.2.2.1.4.725|2|1500 +1.3.6.1.2.1.2.2.1.4.726|2|1500 +1.3.6.1.2.1.2.2.1.4.727|2|1500 +1.3.6.1.2.1.2.2.1.4.728|2|1500 +1.3.6.1.2.1.2.2.1.4.729|2|1500 +1.3.6.1.2.1.2.2.1.4.730|2|1500 +1.3.6.1.2.1.2.2.1.4.731|2|1500 +1.3.6.1.2.1.2.2.1.4.732|2|1500 +1.3.6.1.2.1.2.2.1.4.733|2|1500 +1.3.6.1.2.1.2.2.1.4.734|2|1500 +1.3.6.1.2.1.2.2.1.4.735|2|1500 +1.3.6.1.2.1.2.2.1.4.736|2|1500 +1.3.6.1.2.1.2.2.1.4.737|2|1500 +1.3.6.1.2.1.2.2.1.4.738|2|1500 +1.3.6.1.2.1.2.2.1.4.739|2|1500 +1.3.6.1.2.1.2.2.1.4.740|2|1500 +1.3.6.1.2.1.2.2.1.4.741|2|1500 +1.3.6.1.2.1.2.2.1.4.742|2|1500 +1.3.6.1.2.1.2.2.1.4.743|2|1500 +1.3.6.1.2.1.2.2.1.4.744|2|1500 +1.3.6.1.2.1.2.2.1.4.745|2|1500 +1.3.6.1.2.1.2.2.1.4.746|2|1500 +1.3.6.1.2.1.2.2.1.4.747|2|1500 +1.3.6.1.2.1.2.2.1.4.748|2|1500 +1.3.6.1.2.1.2.2.1.4.749|2|1500 +1.3.6.1.2.1.2.2.1.4.750|2|1500 +1.3.6.1.2.1.2.2.1.4.751|2|1500 +1.3.6.1.2.1.2.2.1.4.768|2|1500 +1.3.6.1.2.1.2.2.1.4.769|2|1500 +1.3.6.1.2.1.2.2.1.4.770|2|1500 +1.3.6.1.2.1.2.2.1.4.771|2|1500 +1.3.6.1.2.1.2.2.1.4.772|2|1500 +1.3.6.1.2.1.2.2.1.4.773|2|1500 +1.3.6.1.2.1.2.2.1.4.774|2|1500 +1.3.6.1.2.1.2.2.1.4.775|2|1500 +1.3.6.1.2.1.2.2.1.4.776|2|1500 +1.3.6.1.2.1.2.2.1.4.777|2|1500 +1.3.6.1.2.1.2.2.1.4.778|2|1500 +1.3.6.1.2.1.2.2.1.4.779|2|1500 +1.3.6.1.2.1.2.2.1.4.780|2|1500 +1.3.6.1.2.1.2.2.1.4.781|2|1500 +1.3.6.1.2.1.2.2.1.4.782|2|1500 +1.3.6.1.2.1.2.2.1.4.783|2|1500 +1.3.6.1.2.1.2.2.1.4.784|2|1500 +1.3.6.1.2.1.2.2.1.4.785|2|1500 +1.3.6.1.2.1.2.2.1.4.786|2|1500 +1.3.6.1.2.1.2.2.1.4.787|2|1500 +1.3.6.1.2.1.2.2.1.4.788|2|1500 +1.3.6.1.2.1.2.2.1.4.789|2|1500 +1.3.6.1.2.1.2.2.1.4.790|2|1500 +1.3.6.1.2.1.2.2.1.4.791|2|1500 +1.3.6.1.2.1.2.2.1.4.792|2|1500 +1.3.6.1.2.1.2.2.1.4.793|2|1500 +1.3.6.1.2.1.2.2.1.4.794|2|1500 +1.3.6.1.2.1.2.2.1.4.795|2|1500 +1.3.6.1.2.1.2.2.1.4.796|2|1500 +1.3.6.1.2.1.2.2.1.4.797|2|1500 +1.3.6.1.2.1.2.2.1.4.798|2|1500 +1.3.6.1.2.1.2.2.1.4.799|2|1500 +1.3.6.1.2.1.2.2.1.4.800|2|1500 +1.3.6.1.2.1.2.2.1.4.801|2|1500 +1.3.6.1.2.1.2.2.1.4.802|2|1500 +1.3.6.1.2.1.2.2.1.4.803|2|1500 +1.3.6.1.2.1.2.2.1.4.804|2|1500 +1.3.6.1.2.1.2.2.1.4.805|2|1500 +1.3.6.1.2.1.2.2.1.4.806|2|1500 +1.3.6.1.2.1.2.2.1.4.807|2|1500 +1.3.6.1.2.1.2.2.1.4.808|2|1500 +1.3.6.1.2.1.2.2.1.4.809|2|1500 +1.3.6.1.2.1.2.2.1.4.810|2|1500 +1.3.6.1.2.1.2.2.1.4.811|2|1500 +1.3.6.1.2.1.2.2.1.4.812|2|1500 +1.3.6.1.2.1.2.2.1.4.813|2|1500 +1.3.6.1.2.1.2.2.1.4.814|2|1500 +1.3.6.1.2.1.2.2.1.4.815|2|1500 +1.3.6.1.2.1.2.2.1.4.816|2|1500 +1.3.6.1.2.1.2.2.1.4.817|2|1500 +1.3.6.1.2.1.2.2.1.4.818|2|1500 +1.3.6.1.2.1.2.2.1.4.819|2|1500 +1.3.6.1.2.1.2.2.1.4.820|2|1500 +1.3.6.1.2.1.2.2.1.4.821|2|1500 +1.3.6.1.2.1.2.2.1.4.822|2|1500 +1.3.6.1.2.1.2.2.1.4.823|2|1500 +1.3.6.1.2.1.2.2.1.4.824|2|1500 +1.3.6.1.2.1.2.2.1.4.825|2|1500 +1.3.6.1.2.1.2.2.1.4.826|2|1500 +1.3.6.1.2.1.2.2.1.4.827|2|1500 +1.3.6.1.2.1.2.2.1.4.828|2|1500 +1.3.6.1.2.1.2.2.1.4.829|2|1500 +1.3.6.1.2.1.2.2.1.4.830|2|1500 +1.3.6.1.2.1.2.2.1.4.831|2|1500 +1.3.6.1.2.1.2.2.1.4.832|2|1500 +1.3.6.1.2.1.2.2.1.4.833|2|1500 +1.3.6.1.2.1.2.2.1.4.834|2|1500 +1.3.6.1.2.1.2.2.1.4.835|2|1500 +1.3.6.1.2.1.2.2.1.4.836|2|1500 +1.3.6.1.2.1.2.2.1.4.837|2|1500 +1.3.6.1.2.1.2.2.1.4.838|2|1500 +1.3.6.1.2.1.2.2.1.4.839|2|1500 +1.3.6.1.2.1.2.2.1.4.840|2|1500 +1.3.6.1.2.1.2.2.1.4.841|2|1500 +1.3.6.1.2.1.2.2.1.4.842|2|1500 +1.3.6.1.2.1.2.2.1.4.843|2|1500 +1.3.6.1.2.1.2.2.1.4.844|2|1500 +1.3.6.1.2.1.2.2.1.4.845|2|1500 +1.3.6.1.2.1.2.2.1.4.846|2|1500 +1.3.6.1.2.1.2.2.1.4.847|2|1500 +1.3.6.1.2.1.2.2.1.4.848|2|1500 +1.3.6.1.2.1.2.2.1.4.849|2|1500 +1.3.6.1.2.1.2.2.1.4.850|2|1500 +1.3.6.1.2.1.2.2.1.4.851|2|1500 +1.3.6.1.2.1.2.2.1.4.852|2|1500 +1.3.6.1.2.1.2.2.1.4.853|2|1500 +1.3.6.1.2.1.2.2.1.4.854|2|1500 +1.3.6.1.2.1.2.2.1.4.855|2|1500 +1.3.6.1.2.1.2.2.1.4.856|2|1500 +1.3.6.1.2.1.2.2.1.4.857|2|1500 +1.3.6.1.2.1.2.2.1.4.858|2|1500 +1.3.6.1.2.1.2.2.1.4.859|2|1500 +1.3.6.1.2.1.2.2.1.4.864|2|1500 +1.3.6.1.2.1.2.2.1.4.868|2|1500 +1.3.6.1.2.1.2.2.1.4.869|2|1500 +1.3.6.1.2.1.2.2.1.4.870|2|1500 +1.3.6.1.2.1.2.2.1.4.871|2|1500 +1.3.6.1.2.1.2.2.1.4.872|2|1500 +1.3.6.1.2.1.2.2.1.4.873|2|1500 +1.3.6.1.2.1.2.2.1.4.874|2|1500 +1.3.6.1.2.1.2.2.1.4.875|2|1500 +1.3.6.1.2.1.2.2.1.4.876|2|1500 +1.3.6.1.2.1.2.2.1.4.877|2|1500 +1.3.6.1.2.1.2.2.1.4.878|2|1500 +1.3.6.1.2.1.2.2.1.4.879|2|1500 +1.3.6.1.2.1.2.2.1.4.880|2|1500 +1.3.6.1.2.1.2.2.1.4.881|2|1500 +1.3.6.1.2.1.2.2.1.4.882|2|1500 +1.3.6.1.2.1.2.2.1.4.883|2|1500 +1.3.6.1.2.1.2.2.1.4.884|2|1500 +1.3.6.1.2.1.2.2.1.4.885|2|1500 +1.3.6.1.2.1.2.2.1.4.886|2|1500 +1.3.6.1.2.1.2.2.1.4.887|2|1500 +1.3.6.1.2.1.2.2.1.4.888|2|1500 +1.3.6.1.2.1.2.2.1.4.889|2|1500 +1.3.6.1.2.1.2.2.1.4.890|2|1500 +1.3.6.1.2.1.2.2.1.4.891|2|1500 +1.3.6.1.2.1.2.2.1.4.892|2|1500 +1.3.6.1.2.1.2.2.1.4.893|2|1500 +1.3.6.1.2.1.2.2.1.4.894|2|1500 +1.3.6.1.2.1.2.2.1.4.895|2|1500 +1.3.6.1.2.1.2.2.1.4.896|2|1500 +1.3.6.1.2.1.2.2.1.4.897|2|1500 +1.3.6.1.2.1.2.2.1.4.898|2|1500 +1.3.6.1.2.1.2.2.1.4.899|2|1500 +1.3.6.1.2.1.2.2.1.4.900|2|1500 +1.3.6.1.2.1.2.2.1.4.901|2|1500 +1.3.6.1.2.1.2.2.1.4.902|2|1500 +1.3.6.1.2.1.2.2.1.4.903|2|1500 +1.3.6.1.2.1.2.2.1.4.904|2|1500 +1.3.6.1.2.1.2.2.1.4.905|2|1500 +1.3.6.1.2.1.2.2.1.4.906|2|1500 +1.3.6.1.2.1.2.2.1.4.907|2|1500 +1.3.6.1.2.1.2.2.1.4.908|2|1500 +1.3.6.1.2.1.2.2.1.4.909|2|1500 +1.3.6.1.2.1.2.2.1.4.910|2|1500 +1.3.6.1.2.1.2.2.1.4.911|2|1500 +1.3.6.1.2.1.2.2.1.4.912|2|1500 +1.3.6.1.2.1.2.2.1.4.913|2|1500 +1.3.6.1.2.1.2.2.1.4.914|2|1500 +1.3.6.1.2.1.2.2.1.4.915|2|1500 +1.3.6.1.2.1.2.2.1.4.916|2|1500 +1.3.6.1.2.1.2.2.1.4.917|2|1500 +1.3.6.1.2.1.2.2.1.4.918|2|1500 +1.3.6.1.2.1.2.2.1.4.919|2|1500 +1.3.6.1.2.1.2.2.1.4.920|2|1500 +1.3.6.1.2.1.2.2.1.4.921|2|1500 +1.3.6.1.2.1.2.2.1.4.922|2|1500 +1.3.6.1.2.1.2.2.1.4.923|2|1500 +1.3.6.1.2.1.2.2.1.4.924|2|1500 +1.3.6.1.2.1.2.2.1.4.925|2|1500 +1.3.6.1.2.1.2.2.1.4.926|2|1500 +1.3.6.1.2.1.2.2.1.4.927|2|1500 +1.3.6.1.2.1.2.2.1.4.928|2|1500 +1.3.6.1.2.1.2.2.1.4.929|2|1500 +1.3.6.1.2.1.2.2.1.4.930|2|1500 +1.3.6.1.2.1.2.2.1.4.931|2|1500 +1.3.6.1.2.1.2.2.1.4.932|2|1500 +1.3.6.1.2.1.2.2.1.4.933|2|1500 +1.3.6.1.2.1.2.2.1.4.934|2|1500 +1.3.6.1.2.1.2.2.1.4.935|2|1500 +1.3.6.1.2.1.2.2.1.4.936|2|1500 +1.3.6.1.2.1.2.2.1.4.937|2|1500 +1.3.6.1.2.1.2.2.1.4.938|2|1500 +1.3.6.1.2.1.2.2.1.4.939|2|1500 +1.3.6.1.2.1.2.2.1.4.940|2|1500 +1.3.6.1.2.1.2.2.1.4.941|2|1500 +1.3.6.1.2.1.2.2.1.4.942|2|1500 +1.3.6.1.2.1.2.2.1.4.943|2|1500 +1.3.6.1.2.1.2.2.1.4.944|2|1500 +1.3.6.1.2.1.2.2.1.4.945|2|1500 +1.3.6.1.2.1.2.2.1.4.946|2|1500 +1.3.6.1.2.1.2.2.1.4.947|2|1500 +1.3.6.1.2.1.2.2.1.4.948|2|1500 +1.3.6.1.2.1.2.2.1.4.949|2|1500 +1.3.6.1.2.1.2.2.1.6.251|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.252|4x|000015000000 +1.3.6.1.2.1.2.2.1.6.253|4| +1.3.6.1.2.1.2.2.1.6.254|4| +1.3.6.1.2.1.2.2.1.6.255|4| +1.3.6.1.2.1.2.2.1.6.258|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.259|4x|000000000000 +1.3.6.1.2.1.2.2.1.6.260|4x|0022910AC001 +1.3.6.1.2.1.2.2.1.6.261|4x|0022910AC3EA +1.3.6.1.2.1.2.2.1.6.262|4x|0022910AC3EC +1.3.6.1.2.1.2.2.1.6.263|4x|0022910AC3ED +1.3.6.1.2.1.2.2.1.6.264|4x|0022910AC3EB +1.3.6.1.2.1.2.2.1.6.265|4x|0022910AC014 +1.3.6.1.2.1.2.2.1.6.266|4x|0022910AC01E +1.3.6.1.2.1.2.2.1.6.267|4x|0022910AC028 +1.3.6.1.2.1.2.2.1.6.268|4x|0022910AC032 +1.3.6.1.2.1.2.2.1.6.269|4x|0022910AC063 +1.3.6.1.2.1.2.2.1.6.270|4x|000000000000 +1.3.6.1.2.1.2.2.1.6.273|4x|000000000000 +1.3.6.1.2.1.2.2.1.6.274|4x|000000000000 +1.3.6.1.2.1.2.2.1.6.275|4x|0022910AC385 +1.3.6.1.2.1.2.2.1.6.276|4x|0022910AC386 +1.3.6.1.2.1.2.2.1.6.277|4x|000000000000 +1.3.6.1.2.1.2.2.1.6.278|4x|000000000000 +1.3.6.1.2.1.2.2.1.6.280|4x|000000000000 +1.3.6.1.2.1.2.2.1.6.281|4x|000000000000 +1.3.6.1.2.1.2.2.1.6.282|4x|000000000000 +1.3.6.1.2.1.2.2.1.6.283|4x|000000000000 +1.3.6.1.2.1.2.2.1.6.284|4x|000000000000 +1.3.6.1.2.1.2.2.1.6.285|4x|000000000000 +1.3.6.1.2.1.2.2.1.6.286|4x|000000000000 +1.3.6.1.2.1.2.2.1.6.287|4x|000000000000 +1.3.6.1.2.1.2.2.1.6.288|4x|000000000000 +1.3.6.1.2.1.2.2.1.6.291|4x|0022910AC03C +1.3.6.1.2.1.2.2.1.6.292|4x|0022910AC046 +1.3.6.1.2.1.2.2.1.6.293|4x|0022910AC0C9 +1.3.6.1.2.1.2.2.1.6.294|4x|0022910AC0CA +1.3.6.1.2.1.2.2.1.6.295|4x|0022910AC0CB +1.3.6.1.2.1.2.2.1.6.395|4x|000000000000 +1.3.6.1.2.1.2.2.1.6.396|4x|000000000000 +1.3.6.1.2.1.2.2.1.6.398|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.399|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.414|4x|0022910AC06A +1.3.6.1.2.1.2.2.1.6.415|4| +1.3.6.1.2.1.2.2.1.6.417|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.418|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.438|4x|0022910AC12C +1.3.6.1.2.1.2.2.1.6.439|4x|0022910AC12D +1.3.6.1.2.1.2.2.1.6.440|4x|0022910AC12E +1.3.6.1.2.1.2.2.1.6.441|4x|0022910AC12F +1.3.6.1.2.1.2.2.1.6.442|4x|0022910AC130 +1.3.6.1.2.1.2.2.1.6.443|4x|0022910AC137 +1.3.6.1.2.1.2.2.1.6.444|4x|0022910AC138 +1.3.6.1.2.1.2.2.1.6.445|4x|0022910AC141 +1.3.6.1.2.1.2.2.1.6.446|4x|0022910AC142 +1.3.6.1.2.1.2.2.1.6.447|4x|0022910AC14B +1.3.6.1.2.1.2.2.1.6.448|4x|0022910AC14C +1.3.6.1.2.1.2.2.1.6.449|4x|0022910AC155 +1.3.6.1.2.1.2.2.1.6.450|4x|0022910AC156 +1.3.6.1.2.1.2.2.1.6.451|4x|0022910AC15F +1.3.6.1.2.1.2.2.1.6.452|4x|0022910AC160 +1.3.6.1.2.1.2.2.1.6.453|4x|0022910AC169 +1.3.6.1.2.1.2.2.1.6.454|4x|0022910AC16A +1.3.6.1.2.1.2.2.1.6.455|4x|0022910AC173 +1.3.6.1.2.1.2.2.1.6.456|4x|0022910AC174 +1.3.6.1.2.1.2.2.1.6.457|4x|0022910AC133 +1.3.6.1.2.1.2.2.1.6.462|4x|0022910AC131 +1.3.6.1.2.1.2.2.1.6.464|4x|8843E1D6DA18 +1.3.6.1.2.1.2.2.1.6.465|4x|000000000000 +1.3.6.1.2.1.2.2.1.6.467|4x|0022910AC050 +1.3.6.1.2.1.2.2.1.6.468|4x|0022910AC132 +1.3.6.1.2.1.2.2.1.6.474|4x|0022910AC139 +1.3.6.1.2.1.2.2.1.6.475|4x|0022910AC134 +1.3.6.1.2.1.2.2.1.6.476|4x|0022910AC13A +1.3.6.1.2.1.2.2.1.6.477|4x|0021D872228B +1.3.6.1.2.1.2.2.1.6.478|4x|0022910AC13B +1.3.6.1.2.1.2.2.1.6.487|4x|FC99473655D8 +1.3.6.1.2.1.2.2.1.6.489|4x|0022910AC13C +1.3.6.1.2.1.2.2.1.6.490|4x|0022910AC13D +1.3.6.1.2.1.2.2.1.6.493|4x|0022910AC13E +1.3.6.1.2.1.2.2.1.6.494|4x|000000000000 +1.3.6.1.2.1.2.2.1.6.495|4x|000000000000 +1.3.6.1.2.1.2.2.1.6.496|4x|000000000000 +1.3.6.1.2.1.2.2.1.6.497|4x|0021D8BE116E +1.3.6.1.2.1.2.2.1.6.502|4x|0022910AC190 +1.3.6.1.2.1.2.2.1.6.503|4x|0022910AC191 +1.3.6.1.2.1.2.2.1.6.504|4x|0022910AC192 +1.3.6.1.2.1.2.2.1.6.505|4x|0022910AC193 +1.3.6.1.2.1.2.2.1.6.506|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.509|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.510|4x|0022910AC194 +1.3.6.1.2.1.2.2.1.6.511|4x|0022910AC196 +1.3.6.1.2.1.2.2.1.6.513|4x|0022910AC195 +1.3.6.1.2.1.2.2.1.6.514|4x|000000000000 +1.3.6.1.2.1.2.2.1.6.515|4x|000000000000 +1.3.6.1.2.1.2.2.1.6.516|4x|0022910AC136 +1.3.6.1.2.1.2.2.1.6.517|4x|0022910AC197 +1.3.6.1.2.1.2.2.1.6.518|4x|000000000000 +1.3.6.1.2.1.2.2.1.6.519|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.520|4x|000000000000 +1.3.6.1.2.1.2.2.1.6.523|4x|0022910AC38F +1.3.6.1.2.1.2.2.1.6.524|4x|0022910AC390 +1.3.6.1.2.1.2.2.1.6.525|4x|0022910AC199 +1.3.6.1.2.1.2.2.1.6.526|4x|0022910AC19A +1.3.6.1.2.1.2.2.1.6.527|4x|0022910AC19B +1.3.6.1.2.1.2.2.1.6.528|4x|0022910AC19C +1.3.6.1.2.1.2.2.1.6.529|4x|0022910AC19D +1.3.6.1.2.1.2.2.1.6.530|4x|0022910AC19E +1.3.6.1.2.1.2.2.1.6.531|4x|0022910AC19F +1.3.6.1.2.1.2.2.1.6.532|4x|0022910AC1A0 +1.3.6.1.2.1.2.2.1.6.533|4x|0022910AC1A1 +1.3.6.1.2.1.2.2.1.6.534|4x|0022910AC1A2 +1.3.6.1.2.1.2.2.1.6.535|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.536|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.538|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.540|4x|0022910AC1A3 +1.3.6.1.2.1.2.2.1.6.541|4x|0022910AC01D +1.3.6.1.2.1.2.2.1.6.542|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.543|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.544|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.545|4x|0022910AC1A4 +1.3.6.1.2.1.2.2.1.6.546|4x|0022910AC1A5 +1.3.6.1.2.1.2.2.1.6.547|4x|FC99473655D8 +1.3.6.1.2.1.2.2.1.6.548|4x|FC99473655D9 +1.3.6.1.2.1.2.2.1.6.549|4x|FC99473655DA +1.3.6.1.2.1.2.2.1.6.550|4x|FC99473655DB +1.3.6.1.2.1.2.2.1.6.551|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.552|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.553|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.554|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.555|4x|0021D8722260 +1.3.6.1.2.1.2.2.1.6.556|4x|0021D8722261 +1.3.6.1.2.1.2.2.1.6.557|4x|0021D8722262 +1.3.6.1.2.1.2.2.1.6.558|4x|0021D8722263 +1.3.6.1.2.1.2.2.1.6.559|4x|0021D8722264 +1.3.6.1.2.1.2.2.1.6.560|4x|0021D8722265 +1.3.6.1.2.1.2.2.1.6.561|4x|0021D8722266 +1.3.6.1.2.1.2.2.1.6.562|4x|0021D8722267 +1.3.6.1.2.1.2.2.1.6.563|4x|0021D8722268 +1.3.6.1.2.1.2.2.1.6.564|4x|0021D8722269 +1.3.6.1.2.1.2.2.1.6.565|4x|0021D872226A +1.3.6.1.2.1.2.2.1.6.566|4x|0021D872226B +1.3.6.1.2.1.2.2.1.6.567|4x|0021D872226C +1.3.6.1.2.1.2.2.1.6.568|4x|0021D872226D +1.3.6.1.2.1.2.2.1.6.569|4x|0021D872226E +1.3.6.1.2.1.2.2.1.6.570|4x|0021D872226F +1.3.6.1.2.1.2.2.1.6.571|4x|0021D8722270 +1.3.6.1.2.1.2.2.1.6.572|4x|0021D8722271 +1.3.6.1.2.1.2.2.1.6.573|4x|0021D8722272 +1.3.6.1.2.1.2.2.1.6.574|4x|0021D8722273 +1.3.6.1.2.1.2.2.1.6.575|4x|0021D8722274 +1.3.6.1.2.1.2.2.1.6.576|4x|0021D8722275 +1.3.6.1.2.1.2.2.1.6.577|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.578|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.579|4x|0021D8722278 +1.3.6.1.2.1.2.2.1.6.580|4x|0021D8722279 +1.3.6.1.2.1.2.2.1.6.581|4x|0021D872227A +1.3.6.1.2.1.2.2.1.6.582|4x|0021D872227B +1.3.6.1.2.1.2.2.1.6.583|4x|0021D872227C +1.3.6.1.2.1.2.2.1.6.584|4x|0021D872227D +1.3.6.1.2.1.2.2.1.6.585|4x|0021D872227E +1.3.6.1.2.1.2.2.1.6.586|4x|0021D872227F +1.3.6.1.2.1.2.2.1.6.587|4x|0021D8722280 +1.3.6.1.2.1.2.2.1.6.588|4x|0021D8722281 +1.3.6.1.2.1.2.2.1.6.589|4x|0021D8722282 +1.3.6.1.2.1.2.2.1.6.590|4x|0021D8722283 +1.3.6.1.2.1.2.2.1.6.591|4x|0021D8722284 +1.3.6.1.2.1.2.2.1.6.592|4x|0021D8722285 +1.3.6.1.2.1.2.2.1.6.593|4x|0021D8722286 +1.3.6.1.2.1.2.2.1.6.594|4x|0021D8722287 +1.3.6.1.2.1.2.2.1.6.595|4x|0021D8722288 +1.3.6.1.2.1.2.2.1.6.596|4x|0021D8722289 +1.3.6.1.2.1.2.2.1.6.597|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.598|4x|0021D872228B +1.3.6.1.2.1.2.2.1.6.599|4x|0021D872228C +1.3.6.1.2.1.2.2.1.6.600|4x|0021D872228D +1.3.6.1.2.1.2.2.1.6.601|4x|0021D872228E +1.3.6.1.2.1.2.2.1.6.602|4x|0021D872228F +1.3.6.1.2.1.2.2.1.6.603|4x|0021D8BE1150 +1.3.6.1.2.1.2.2.1.6.604|4x|0021D8BE1151 +1.3.6.1.2.1.2.2.1.6.605|4x|0021D8BE1152 +1.3.6.1.2.1.2.2.1.6.606|4x|0021D8BE1153 +1.3.6.1.2.1.2.2.1.6.607|4x|0021D8BE1154 +1.3.6.1.2.1.2.2.1.6.608|4x|0021D8BE1155 +1.3.6.1.2.1.2.2.1.6.609|4x|0021D8BE1156 +1.3.6.1.2.1.2.2.1.6.610|4x|0021D8BE1157 +1.3.6.1.2.1.2.2.1.6.611|4x|0021D8BE1158 +1.3.6.1.2.1.2.2.1.6.612|4x|0021D8BE1159 +1.3.6.1.2.1.2.2.1.6.613|4x|0021D8BE115A +1.3.6.1.2.1.2.2.1.6.614|4x|0021D8BE115B +1.3.6.1.2.1.2.2.1.6.615|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.616|4x|0021D8BE115D +1.3.6.1.2.1.2.2.1.6.617|4x|0021D8BE115E +1.3.6.1.2.1.2.2.1.6.618|4x|0021D8BE115F +1.3.6.1.2.1.2.2.1.6.619|4x|0021D8BE1160 +1.3.6.1.2.1.2.2.1.6.620|4x|0021D8BE1161 +1.3.6.1.2.1.2.2.1.6.621|4x|0021D8BE1162 +1.3.6.1.2.1.2.2.1.6.622|4x|0021D8BE1163 +1.3.6.1.2.1.2.2.1.6.623|4x|0021D8BE1164 +1.3.6.1.2.1.2.2.1.6.624|4x|0021D8BE1165 +1.3.6.1.2.1.2.2.1.6.625|4x|0021D8BE1166 +1.3.6.1.2.1.2.2.1.6.626|4x|0021D8BE1167 +1.3.6.1.2.1.2.2.1.6.627|4x|0021D8BE1168 +1.3.6.1.2.1.2.2.1.6.628|4x|0021D8BE1169 +1.3.6.1.2.1.2.2.1.6.629|4x|0021D8BE116A +1.3.6.1.2.1.2.2.1.6.630|4x|0021D8BE116B +1.3.6.1.2.1.2.2.1.6.631|4x|0021D8BE116C +1.3.6.1.2.1.2.2.1.6.632|4x|0021D8BE116D +1.3.6.1.2.1.2.2.1.6.633|4x|0021D8BE116E +1.3.6.1.2.1.2.2.1.6.634|4x|0021D8BE116F +1.3.6.1.2.1.2.2.1.6.635|4x|0021D8BE1170 +1.3.6.1.2.1.2.2.1.6.636|4x|0021D8BE1171 +1.3.6.1.2.1.2.2.1.6.637|4x|0021D8BE1172 +1.3.6.1.2.1.2.2.1.6.638|4x|0021D8BE1173 +1.3.6.1.2.1.2.2.1.6.639|4x|0021D8BE1174 +1.3.6.1.2.1.2.2.1.6.640|4x|0021D8BE1175 +1.3.6.1.2.1.2.2.1.6.641|4x|0021D8BE1176 +1.3.6.1.2.1.2.2.1.6.642|4x|0021D8BE1177 +1.3.6.1.2.1.2.2.1.6.643|4x|0021D8BE1178 +1.3.6.1.2.1.2.2.1.6.644|4x|0021D8BE1179 +1.3.6.1.2.1.2.2.1.6.645|4x|0021D8BE117A +1.3.6.1.2.1.2.2.1.6.646|4x|0021D8BE117B +1.3.6.1.2.1.2.2.1.6.647|4x|0021D8BE117C +1.3.6.1.2.1.2.2.1.6.648|4x|0021D8BE117D +1.3.6.1.2.1.2.2.1.6.649|4x|0021D8BE117E +1.3.6.1.2.1.2.2.1.6.650|4x|0021D8BE117F +1.3.6.1.2.1.2.2.1.6.651|4x|001E7A589938 +1.3.6.1.2.1.2.2.1.6.652|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.653|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.654|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.655|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.656|4x|8843E1D6F050 +1.3.6.1.2.1.2.2.1.6.657|4x|8843E1D6F051 +1.3.6.1.2.1.2.2.1.6.658|4x|8843E1D6F052 +1.3.6.1.2.1.2.2.1.6.659|4x|8843E1D6F053 +1.3.6.1.2.1.2.2.1.6.660|4x|8843E1D6F054 +1.3.6.1.2.1.2.2.1.6.661|4x|8843E1D6F055 +1.3.6.1.2.1.2.2.1.6.662|4x|8843E1D6F056 +1.3.6.1.2.1.2.2.1.6.663|4x|8843E1D6F057 +1.3.6.1.2.1.2.2.1.6.664|4x|8843E1D6F058 +1.3.6.1.2.1.2.2.1.6.665|4x|8843E1D6F059 +1.3.6.1.2.1.2.2.1.6.666|4x|8843E1D6F05A +1.3.6.1.2.1.2.2.1.6.667|4x|8843E1D6F05B +1.3.6.1.2.1.2.2.1.6.668|4x|8843E1D6F05C +1.3.6.1.2.1.2.2.1.6.669|4x|8843E1D6F05D +1.3.6.1.2.1.2.2.1.6.670|4x|8843E1D6F05E +1.3.6.1.2.1.2.2.1.6.671|4x|8843E1D6F05F +1.3.6.1.2.1.2.2.1.6.672|4x|8843E1D6F060 +1.3.6.1.2.1.2.2.1.6.673|4x|8843E1D6F061 +1.3.6.1.2.1.2.2.1.6.674|4x|8843E1D6F062 +1.3.6.1.2.1.2.2.1.6.675|4x|8843E1D6F063 +1.3.6.1.2.1.2.2.1.6.676|4x|8843E1D6F064 +1.3.6.1.2.1.2.2.1.6.677|4x|8843E1D6F065 +1.3.6.1.2.1.2.2.1.6.678|4x|8843E1D6F066 +1.3.6.1.2.1.2.2.1.6.679|4x|8843E1D6F067 +1.3.6.1.2.1.2.2.1.6.680|4x|8843E1D6F068 +1.3.6.1.2.1.2.2.1.6.681|4x|8843E1D6F069 +1.3.6.1.2.1.2.2.1.6.682|4x|8843E1D6F06A +1.3.6.1.2.1.2.2.1.6.683|4x|8843E1D6F06B +1.3.6.1.2.1.2.2.1.6.684|4x|8843E1D6F06C +1.3.6.1.2.1.2.2.1.6.685|4x|8843E1D6F06D +1.3.6.1.2.1.2.2.1.6.686|4x|8843E1D6F06E +1.3.6.1.2.1.2.2.1.6.687|4x|8843E1D6F06F +1.3.6.1.2.1.2.2.1.6.688|4x|8843E1D6F070 +1.3.6.1.2.1.2.2.1.6.689|4x|8843E1D6F071 +1.3.6.1.2.1.2.2.1.6.690|4x|8843E1D6F072 +1.3.6.1.2.1.2.2.1.6.691|4x|8843E1D6F073 +1.3.6.1.2.1.2.2.1.6.692|4x|8843E1D6F074 +1.3.6.1.2.1.2.2.1.6.693|4x|8843E1D6F075 +1.3.6.1.2.1.2.2.1.6.694|4x|8843E1D6F076 +1.3.6.1.2.1.2.2.1.6.695|4x|8843E1D6F077 +1.3.6.1.2.1.2.2.1.6.696|4x|8843E1D6F078 +1.3.6.1.2.1.2.2.1.6.697|4x|8843E1D6F079 +1.3.6.1.2.1.2.2.1.6.698|4x|8843E1D6F07A +1.3.6.1.2.1.2.2.1.6.699|4x|8843E1D6F07B +1.3.6.1.2.1.2.2.1.6.700|4x|8843E1D6F07C +1.3.6.1.2.1.2.2.1.6.701|4x|8843E1D6F07D +1.3.6.1.2.1.2.2.1.6.702|4x|8843E1D6F07E +1.3.6.1.2.1.2.2.1.6.703|4x|8843E1D6F07F +1.3.6.1.2.1.2.2.1.6.704|4x|8843E1D6DA00 +1.3.6.1.2.1.2.2.1.6.705|4x|8843E1D6DA01 +1.3.6.1.2.1.2.2.1.6.706|4x|8843E1D6DA02 +1.3.6.1.2.1.2.2.1.6.707|4x|8843E1D6DA03 +1.3.6.1.2.1.2.2.1.6.708|4x|8843E1D6DA04 +1.3.6.1.2.1.2.2.1.6.709|4x|8843E1D6DA05 +1.3.6.1.2.1.2.2.1.6.710|4x|8843E1D6DA06 +1.3.6.1.2.1.2.2.1.6.711|4x|8843E1D6DA07 +1.3.6.1.2.1.2.2.1.6.712|4x|8843E1D6DA08 +1.3.6.1.2.1.2.2.1.6.713|4x|8843E1D6DA09 +1.3.6.1.2.1.2.2.1.6.714|4x|8843E1D6DA0A +1.3.6.1.2.1.2.2.1.6.715|4x|8843E1D6DA0B +1.3.6.1.2.1.2.2.1.6.716|4x|8843E1D6DA0C +1.3.6.1.2.1.2.2.1.6.717|4x|8843E1D6DA0D +1.3.6.1.2.1.2.2.1.6.718|4x|8843E1D6DA0E +1.3.6.1.2.1.2.2.1.6.719|4x|8843E1D6DA0F +1.3.6.1.2.1.2.2.1.6.720|4x|8843E1D6DA10 +1.3.6.1.2.1.2.2.1.6.721|4x|8843E1D6DA11 +1.3.6.1.2.1.2.2.1.6.722|4x|8843E1D6DA12 +1.3.6.1.2.1.2.2.1.6.723|4x|8843E1D6DA13 +1.3.6.1.2.1.2.2.1.6.724|4x|8843E1D6DA14 +1.3.6.1.2.1.2.2.1.6.725|4x|8843E1D6DA15 +1.3.6.1.2.1.2.2.1.6.726|4x|8843E1D6DA16 +1.3.6.1.2.1.2.2.1.6.727|4x|8843E1D6DA17 +1.3.6.1.2.1.2.2.1.6.728|4x|8843E1D6DA18 +1.3.6.1.2.1.2.2.1.6.729|4x|8843E1D6DA19 +1.3.6.1.2.1.2.2.1.6.730|4x|8843E1D6DA1A +1.3.6.1.2.1.2.2.1.6.731|4x|8843E1D6DA1B +1.3.6.1.2.1.2.2.1.6.732|4x|8843E1D6DA1C +1.3.6.1.2.1.2.2.1.6.733|4x|8843E1D6DA1D +1.3.6.1.2.1.2.2.1.6.734|4x|8843E1D6DA1E +1.3.6.1.2.1.2.2.1.6.735|4x|8843E1D6DA1F +1.3.6.1.2.1.2.2.1.6.736|4x|8843E1D6DA20 +1.3.6.1.2.1.2.2.1.6.737|4x|8843E1D6DA21 +1.3.6.1.2.1.2.2.1.6.738|4x|8843E1D6DA22 +1.3.6.1.2.1.2.2.1.6.739|4x|8843E1D6DA23 +1.3.6.1.2.1.2.2.1.6.740|4x|8843E1D6DA24 +1.3.6.1.2.1.2.2.1.6.741|4x|8843E1D6DA25 +1.3.6.1.2.1.2.2.1.6.742|4x|8843E1D6DA26 +1.3.6.1.2.1.2.2.1.6.743|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.744|4x|8843E1D6DA28 +1.3.6.1.2.1.2.2.1.6.745|4x|8843E1D6DA29 +1.3.6.1.2.1.2.2.1.6.746|4x|8843E1D6DA2A +1.3.6.1.2.1.2.2.1.6.747|4x|8843E1D6DA2B +1.3.6.1.2.1.2.2.1.6.748|4x|8843E1D6DA2C +1.3.6.1.2.1.2.2.1.6.749|4x|8843E1D6DA2D +1.3.6.1.2.1.2.2.1.6.750|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.751|4x|8843E1D6DA2F +1.3.6.1.2.1.2.2.1.6.768|4x|0022910AC1A6 +1.3.6.1.2.1.2.2.1.6.769|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.770|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.771|4x|0022910AC1AE +1.3.6.1.2.1.2.2.1.6.772|4x|0022910AC1AF +1.3.6.1.2.1.2.2.1.6.773|4x|0022910AC1B0 +1.3.6.1.2.1.2.2.1.6.774|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.775|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.776|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.777|4x|0022910AC1A7 +1.3.6.1.2.1.2.2.1.6.778|4x|0022910AC1A8 +1.3.6.1.2.1.2.2.1.6.779|4x|0022910AC1A9 +1.3.6.1.2.1.2.2.1.6.780|4x|0022910AC186 +1.3.6.1.2.1.2.2.1.6.781|4x|0022910AC187 +1.3.6.1.2.1.2.2.1.6.782|4x|0022910AC1F4 +1.3.6.1.2.1.2.2.1.6.783|4x|0022910AC188 +1.3.6.1.2.1.2.2.1.6.784|4x|0022910AC1B1 +1.3.6.1.2.1.2.2.1.6.785|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.786|4x|0022910AC1AA +1.3.6.1.2.1.2.2.1.6.787|4x|0022910AC1AB +1.3.6.1.2.1.2.2.1.6.788|4x|0022910AC1AC +1.3.6.1.2.1.2.2.1.6.789|4x|0022910AC1B2 +1.3.6.1.2.1.2.2.1.6.790|4x|0022910AC1B3 +1.3.6.1.2.1.2.2.1.6.791|4x|0022910AC1B4 +1.3.6.1.2.1.2.2.1.6.792|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.793|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.794|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.795|4x|0022910AC1B5 +1.3.6.1.2.1.2.2.1.6.796|4x|0022910AC1B6 +1.3.6.1.2.1.2.2.1.6.797|4x|0022910AC1B7 +1.3.6.1.2.1.2.2.1.6.798|4x|0022910AC1B9 +1.3.6.1.2.1.2.2.1.6.799|4x|0022910AC1BA +1.3.6.1.2.1.2.2.1.6.800|4x|0022910AC1B8 +1.3.6.1.2.1.2.2.1.6.801|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.802|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.803|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.804|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.805|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.806|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.807|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.808|4x|0022910AC1BB +1.3.6.1.2.1.2.2.1.6.809|4x|0022910AC1BC +1.3.6.1.2.1.2.2.1.6.810|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.811|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.812|4x|0022910AC1BD +1.3.6.1.2.1.2.2.1.6.813|4x|0022910AC1BE +1.3.6.1.2.1.2.2.1.6.814|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.815|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.816|4x|0022910AC1BF +1.3.6.1.2.1.2.2.1.6.817|4x|0022910AC1C0 +1.3.6.1.2.1.2.2.1.6.818|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.819|4x|0022910AC033 +1.3.6.1.2.1.2.2.1.6.820|4x|0022910AC1C1 +1.3.6.1.2.1.2.2.1.6.821|4x|0022910AC1C2 +1.3.6.1.2.1.2.2.1.6.822|4x|0022910AC1C3 +1.3.6.1.2.1.2.2.1.6.823|4x|0022910AC1C4 +1.3.6.1.2.1.2.2.1.6.824|4x|0022910AC259 +1.3.6.1.2.1.2.2.1.6.825|4x|0022910AC1C5 +1.3.6.1.2.1.2.2.1.6.826|4x|0022910AC1C6 +1.3.6.1.2.1.2.2.1.6.827|4x|0022910AC1C7 +1.3.6.1.2.1.2.2.1.6.828|4x|0022910AC1CB +1.3.6.1.2.1.2.2.1.6.829|4x|0022910AC1CC +1.3.6.1.2.1.2.2.1.6.830|4x|0022910AC1CD +1.3.6.1.2.1.2.2.1.6.831|4x|0022910AC1C9 +1.3.6.1.2.1.2.2.1.6.832|4x|0022910AC1CA +1.3.6.1.2.1.2.2.1.6.833|4x|0022910AC1C8 +1.3.6.1.2.1.2.2.1.6.834|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.835|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.836|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.837|4x|0022910AC1CE +1.3.6.1.2.1.2.2.1.6.838|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.839|4x|0022910AC0CC +1.3.6.1.2.1.2.2.1.6.840|4x|0022910AC0CD +1.3.6.1.2.1.2.2.1.6.841|4x|0022910AC1CF +1.3.6.1.2.1.2.2.1.6.842|4x|0022910AC1D0 +1.3.6.1.2.1.2.2.1.6.843|4x|0022910AC1D2 +1.3.6.1.2.1.2.2.1.6.844|4x|0022910AC122 +1.3.6.1.2.1.2.2.1.6.845|4x|0022910AC123 +1.3.6.1.2.1.2.2.1.6.846|4x|0022910AC1D3 +1.3.6.1.2.1.2.2.1.6.847|4x|0022910AC1D1 +1.3.6.1.2.1.2.2.1.6.848|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.849|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.850|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.851|4x|0022910AC1D5 +1.3.6.1.2.1.2.2.1.6.852|4x|0022910AC1D6 +1.3.6.1.2.1.2.2.1.6.853|4x|0022910AC1E0 +1.3.6.1.2.1.2.2.1.6.854|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.855|4x|0022910AC13F +1.3.6.1.2.1.2.2.1.6.856|4x|0022910AC1DC +1.3.6.1.2.1.2.2.1.6.857|4x|0022910AC1DD +1.3.6.1.2.1.2.2.1.6.858|4x|0022910AC1DE +1.3.6.1.2.1.2.2.1.6.859|4x|0022910AC1DF +1.3.6.1.2.1.2.2.1.6.864|4x|0022910AC1D7 +1.3.6.1.2.1.2.2.1.6.868|4x|0022910AC124 +1.3.6.1.2.1.2.2.1.6.869|4x|0022910AC1E3 +1.3.6.1.2.1.2.2.1.6.870|4x|0022910AC1E5 +1.3.6.1.2.1.2.2.1.6.871|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.872|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.873|4x|0022910AC1E7 +1.3.6.1.2.1.2.2.1.6.874|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.875|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.876|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.877|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.878|4x|0022910AC1D8 +1.3.6.1.2.1.2.2.1.6.879|4x|0022910AC1D9 +1.3.6.1.2.1.2.2.1.6.880|4x|0022910AC1DA +1.3.6.1.2.1.2.2.1.6.881|4x|0022910AC1DB +1.3.6.1.2.1.2.2.1.6.882|4x|0022910AC1E6 +1.3.6.1.2.1.2.2.1.6.883|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.884|4x|0022910AC1E4 +1.3.6.1.2.1.2.2.1.6.885|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.886|4x|0022910AC1E1 +1.3.6.1.2.1.2.2.1.6.887|4x|0022910AC1E2 +1.3.6.1.2.1.2.2.1.6.888|4x|0022910AC3DE +1.3.6.1.2.1.2.2.1.6.889|4x|0022910AC3DF +1.3.6.1.2.1.2.2.1.6.890|4x|0022910AC3E0 +1.3.6.1.2.1.2.2.1.6.891|4x|0022910AC2BC +1.3.6.1.2.1.2.2.1.6.892|4x|0022910AC2BD +1.3.6.1.2.1.2.2.1.6.893|4x|0022910AC2C6 +1.3.6.1.2.1.2.2.1.6.894|4x|0022910AC2C7 +1.3.6.1.2.1.2.2.1.6.895|4x|0022910AC2C8 +1.3.6.1.2.1.2.2.1.6.896|4x|0022910AC2C9 +1.3.6.1.2.1.2.2.1.6.897|4x|0022910AC2CA +1.3.6.1.2.1.2.2.1.6.898|4x|0022910AC2CB +1.3.6.1.2.1.2.2.1.6.899|4x|0022910AC25A +1.3.6.1.2.1.2.2.1.6.900|4x|0022910AC25B +1.3.6.1.2.1.2.2.1.6.901|4x|0022910AC25C +1.3.6.1.2.1.2.2.1.6.902|4x|0022910AC1E8 +1.3.6.1.2.1.2.2.1.6.903|4x|0022910AC1E9 +1.3.6.1.2.1.2.2.1.6.904|4x|0022910AC1EA +1.3.6.1.2.1.2.2.1.6.905|4x|0022910AC1EB +1.3.6.1.2.1.2.2.1.6.906|4x|0022910AC25D +1.3.6.1.2.1.2.2.1.6.907|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.908|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.909|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.910|4x|0022910AC047 +1.3.6.1.2.1.2.2.1.6.911|4x|0022910AC25E +1.3.6.1.2.1.2.2.1.6.912|4x|0022910AC25F +1.3.6.1.2.1.2.2.1.6.913|4x|0022910AC17C +1.3.6.1.2.1.2.2.1.6.914|4x|0022910AC177 +1.3.6.1.2.1.2.2.1.6.915|4x|0022910AC0C7 +1.3.6.1.2.1.2.2.1.6.916|4x|0022910AC1ED +1.3.6.1.2.1.2.2.1.6.917|4x|0022910AC1EE +1.3.6.1.2.1.2.2.1.6.918|4x|0022910AC1EF +1.3.6.1.2.1.2.2.1.6.919|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.920|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.921|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.922|4x|0022910AC1F0 +1.3.6.1.2.1.2.2.1.6.923|4x|0022910AC1F1 +1.3.6.1.2.1.2.2.1.6.924|4x|0022910AC1F2 +1.3.6.1.2.1.2.2.1.6.925|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.926|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.927|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.928|4x|0022910AC2CC +1.3.6.1.2.1.2.2.1.6.929|4x|0022910AC2CD +1.3.6.1.2.1.2.2.1.6.930|4x|0022910AC2CE +1.3.6.1.2.1.2.2.1.6.931|4x|0022910AC2CF +1.3.6.1.2.1.2.2.1.6.932|4x|0022910AC2D0 +1.3.6.1.2.1.2.2.1.6.933|4x|0022910AC2D1 +1.3.6.1.2.1.2.2.1.6.934|4x|0022910AC2D2 +1.3.6.1.2.1.2.2.1.6.935|4x|0022910AC2D3 +1.3.6.1.2.1.2.2.1.6.936|4x|0022910AC2D4 +1.3.6.1.2.1.2.2.1.6.937|4x|0022910AC2D5 +1.3.6.1.2.1.2.2.1.6.938|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.939|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.940|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.941|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.942|4x|0022910AC262 +1.3.6.1.2.1.2.2.1.6.943|4x|0022910AC263 +1.3.6.1.2.1.2.2.1.6.944|4x|0022910AC0FA +1.3.6.1.2.1.2.2.1.6.945|4x|0022910AC0FB +1.3.6.1.2.1.2.2.1.6.946|4x|0022910AC0FC +1.3.6.1.2.1.2.2.1.6.947|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.948|4x|0022910AC000 +1.3.6.1.2.1.2.2.1.6.949|4x|0022910AC2C5 +1.3.6.1.2.1.2.2.1.7.251|2|2 +1.3.6.1.2.1.2.2.1.7.252|2|1 +1.3.6.1.2.1.2.2.1.7.253|2|1 +1.3.6.1.2.1.2.2.1.7.254|2|1 +1.3.6.1.2.1.2.2.1.7.255|2|1 +1.3.6.1.2.1.2.2.1.7.258|2|1 +1.3.6.1.2.1.2.2.1.7.259|2|1 +1.3.6.1.2.1.2.2.1.7.260|2|1 +1.3.6.1.2.1.2.2.1.7.261|2|1 +1.3.6.1.2.1.2.2.1.7.262|2|1 +1.3.6.1.2.1.2.2.1.7.263|2|1 +1.3.6.1.2.1.2.2.1.7.264|2|1 +1.3.6.1.2.1.2.2.1.7.265|2|1 +1.3.6.1.2.1.2.2.1.7.266|2|1 +1.3.6.1.2.1.2.2.1.7.267|2|1 +1.3.6.1.2.1.2.2.1.7.268|2|1 +1.3.6.1.2.1.2.2.1.7.269|2|1 +1.3.6.1.2.1.2.2.1.7.270|2|2 +1.3.6.1.2.1.2.2.1.7.273|2|1 +1.3.6.1.2.1.2.2.1.7.274|2|1 +1.3.6.1.2.1.2.2.1.7.275|2|1 +1.3.6.1.2.1.2.2.1.7.276|2|1 +1.3.6.1.2.1.2.2.1.7.277|2|1 +1.3.6.1.2.1.2.2.1.7.278|2|1 +1.3.6.1.2.1.2.2.1.7.280|2|1 +1.3.6.1.2.1.2.2.1.7.281|2|1 +1.3.6.1.2.1.2.2.1.7.282|2|1 +1.3.6.1.2.1.2.2.1.7.283|2|1 +1.3.6.1.2.1.2.2.1.7.284|2|1 +1.3.6.1.2.1.2.2.1.7.285|2|1 +1.3.6.1.2.1.2.2.1.7.286|2|1 +1.3.6.1.2.1.2.2.1.7.287|2|1 +1.3.6.1.2.1.2.2.1.7.288|2|1 +1.3.6.1.2.1.2.2.1.7.291|2|1 +1.3.6.1.2.1.2.2.1.7.292|2|1 +1.3.6.1.2.1.2.2.1.7.293|2|1 +1.3.6.1.2.1.2.2.1.7.294|2|1 +1.3.6.1.2.1.2.2.1.7.295|2|1 +1.3.6.1.2.1.2.2.1.7.395|2|1 +1.3.6.1.2.1.2.2.1.7.396|2|1 +1.3.6.1.2.1.2.2.1.7.398|2|1 +1.3.6.1.2.1.2.2.1.7.399|2|1 +1.3.6.1.2.1.2.2.1.7.414|2|1 +1.3.6.1.2.1.2.2.1.7.415|2|1 +1.3.6.1.2.1.2.2.1.7.417|2|1 +1.3.6.1.2.1.2.2.1.7.418|2|1 +1.3.6.1.2.1.2.2.1.7.438|2|1 +1.3.6.1.2.1.2.2.1.7.439|2|1 +1.3.6.1.2.1.2.2.1.7.440|2|1 +1.3.6.1.2.1.2.2.1.7.441|2|1 +1.3.6.1.2.1.2.2.1.7.442|2|1 +1.3.6.1.2.1.2.2.1.7.443|2|1 +1.3.6.1.2.1.2.2.1.7.444|2|1 +1.3.6.1.2.1.2.2.1.7.445|2|1 +1.3.6.1.2.1.2.2.1.7.446|2|1 +1.3.6.1.2.1.2.2.1.7.447|2|1 +1.3.6.1.2.1.2.2.1.7.448|2|1 +1.3.6.1.2.1.2.2.1.7.449|2|1 +1.3.6.1.2.1.2.2.1.7.450|2|1 +1.3.6.1.2.1.2.2.1.7.451|2|1 +1.3.6.1.2.1.2.2.1.7.452|2|1 +1.3.6.1.2.1.2.2.1.7.453|2|1 +1.3.6.1.2.1.2.2.1.7.454|2|1 +1.3.6.1.2.1.2.2.1.7.455|2|1 +1.3.6.1.2.1.2.2.1.7.456|2|1 +1.3.6.1.2.1.2.2.1.7.457|2|1 +1.3.6.1.2.1.2.2.1.7.462|2|1 +1.3.6.1.2.1.2.2.1.7.464|2|1 +1.3.6.1.2.1.2.2.1.7.465|2|1 +1.3.6.1.2.1.2.2.1.7.467|2|1 +1.3.6.1.2.1.2.2.1.7.468|2|1 +1.3.6.1.2.1.2.2.1.7.474|2|1 +1.3.6.1.2.1.2.2.1.7.475|2|1 +1.3.6.1.2.1.2.2.1.7.476|2|1 +1.3.6.1.2.1.2.2.1.7.477|2|1 +1.3.6.1.2.1.2.2.1.7.478|2|1 +1.3.6.1.2.1.2.2.1.7.487|2|1 +1.3.6.1.2.1.2.2.1.7.489|2|1 +1.3.6.1.2.1.2.2.1.7.490|2|1 +1.3.6.1.2.1.2.2.1.7.493|2|1 +1.3.6.1.2.1.2.2.1.7.494|2|1 +1.3.6.1.2.1.2.2.1.7.495|2|1 +1.3.6.1.2.1.2.2.1.7.496|2|1 +1.3.6.1.2.1.2.2.1.7.497|2|1 +1.3.6.1.2.1.2.2.1.7.502|2|1 +1.3.6.1.2.1.2.2.1.7.503|2|1 +1.3.6.1.2.1.2.2.1.7.504|2|1 +1.3.6.1.2.1.2.2.1.7.505|2|1 +1.3.6.1.2.1.2.2.1.7.506|2|1 +1.3.6.1.2.1.2.2.1.7.509|2|1 +1.3.6.1.2.1.2.2.1.7.510|2|1 +1.3.6.1.2.1.2.2.1.7.511|2|1 +1.3.6.1.2.1.2.2.1.7.513|2|1 +1.3.6.1.2.1.2.2.1.7.514|2|1 +1.3.6.1.2.1.2.2.1.7.515|2|1 +1.3.6.1.2.1.2.2.1.7.516|2|1 +1.3.6.1.2.1.2.2.1.7.517|2|1 +1.3.6.1.2.1.2.2.1.7.518|2|1 +1.3.6.1.2.1.2.2.1.7.519|2|2 +1.3.6.1.2.1.2.2.1.7.520|2|1 +1.3.6.1.2.1.2.2.1.7.523|2|1 +1.3.6.1.2.1.2.2.1.7.524|2|1 +1.3.6.1.2.1.2.2.1.7.525|2|1 +1.3.6.1.2.1.2.2.1.7.526|2|1 +1.3.6.1.2.1.2.2.1.7.527|2|1 +1.3.6.1.2.1.2.2.1.7.528|2|1 +1.3.6.1.2.1.2.2.1.7.529|2|1 +1.3.6.1.2.1.2.2.1.7.530|2|1 +1.3.6.1.2.1.2.2.1.7.531|2|1 +1.3.6.1.2.1.2.2.1.7.532|2|1 +1.3.6.1.2.1.2.2.1.7.533|2|1 +1.3.6.1.2.1.2.2.1.7.534|2|1 +1.3.6.1.2.1.2.2.1.7.535|2|1 +1.3.6.1.2.1.2.2.1.7.536|2|1 +1.3.6.1.2.1.2.2.1.7.538|2|1 +1.3.6.1.2.1.2.2.1.7.540|2|1 +1.3.6.1.2.1.2.2.1.7.541|2|1 +1.3.6.1.2.1.2.2.1.7.542|2|1 +1.3.6.1.2.1.2.2.1.7.543|2|1 +1.3.6.1.2.1.2.2.1.7.544|2|1 +1.3.6.1.2.1.2.2.1.7.545|2|1 +1.3.6.1.2.1.2.2.1.7.546|2|1 +1.3.6.1.2.1.2.2.1.7.547|2|1 +1.3.6.1.2.1.2.2.1.7.548|2|2 +1.3.6.1.2.1.2.2.1.7.549|2|2 +1.3.6.1.2.1.2.2.1.7.550|2|1 +1.3.6.1.2.1.2.2.1.7.551|2|2 +1.3.6.1.2.1.2.2.1.7.552|2|2 +1.3.6.1.2.1.2.2.1.7.553|2|2 +1.3.6.1.2.1.2.2.1.7.554|2|2 +1.3.6.1.2.1.2.2.1.7.555|2|1 +1.3.6.1.2.1.2.2.1.7.556|2|1 +1.3.6.1.2.1.2.2.1.7.557|2|1 +1.3.6.1.2.1.2.2.1.7.558|2|1 +1.3.6.1.2.1.2.2.1.7.559|2|1 +1.3.6.1.2.1.2.2.1.7.560|2|1 +1.3.6.1.2.1.2.2.1.7.561|2|1 +1.3.6.1.2.1.2.2.1.7.562|2|2 +1.3.6.1.2.1.2.2.1.7.563|2|1 +1.3.6.1.2.1.2.2.1.7.564|2|1 +1.3.6.1.2.1.2.2.1.7.565|2|1 +1.3.6.1.2.1.2.2.1.7.566|2|1 +1.3.6.1.2.1.2.2.1.7.567|2|1 +1.3.6.1.2.1.2.2.1.7.568|2|1 +1.3.6.1.2.1.2.2.1.7.569|2|1 +1.3.6.1.2.1.2.2.1.7.570|2|1 +1.3.6.1.2.1.2.2.1.7.571|2|1 +1.3.6.1.2.1.2.2.1.7.572|2|1 +1.3.6.1.2.1.2.2.1.7.573|2|2 +1.3.6.1.2.1.2.2.1.7.574|2|1 +1.3.6.1.2.1.2.2.1.7.575|2|1 +1.3.6.1.2.1.2.2.1.7.576|2|1 +1.3.6.1.2.1.2.2.1.7.577|2|1 +1.3.6.1.2.1.2.2.1.7.578|2|1 +1.3.6.1.2.1.2.2.1.7.579|2|1 +1.3.6.1.2.1.2.2.1.7.580|2|1 +1.3.6.1.2.1.2.2.1.7.581|2|1 +1.3.6.1.2.1.2.2.1.7.582|2|1 +1.3.6.1.2.1.2.2.1.7.583|2|1 +1.3.6.1.2.1.2.2.1.7.584|2|1 +1.3.6.1.2.1.2.2.1.7.585|2|1 +1.3.6.1.2.1.2.2.1.7.586|2|1 +1.3.6.1.2.1.2.2.1.7.587|2|1 +1.3.6.1.2.1.2.2.1.7.588|2|1 +1.3.6.1.2.1.2.2.1.7.589|2|1 +1.3.6.1.2.1.2.2.1.7.590|2|1 +1.3.6.1.2.1.2.2.1.7.591|2|1 +1.3.6.1.2.1.2.2.1.7.592|2|2 +1.3.6.1.2.1.2.2.1.7.593|2|1 +1.3.6.1.2.1.2.2.1.7.594|2|1 +1.3.6.1.2.1.2.2.1.7.595|2|1 +1.3.6.1.2.1.2.2.1.7.596|2|1 +1.3.6.1.2.1.2.2.1.7.597|2|2 +1.3.6.1.2.1.2.2.1.7.598|2|2 +1.3.6.1.2.1.2.2.1.7.599|2|2 +1.3.6.1.2.1.2.2.1.7.600|2|1 +1.3.6.1.2.1.2.2.1.7.601|2|1 +1.3.6.1.2.1.2.2.1.7.602|2|2 +1.3.6.1.2.1.2.2.1.7.603|2|1 +1.3.6.1.2.1.2.2.1.7.604|2|1 +1.3.6.1.2.1.2.2.1.7.605|2|1 +1.3.6.1.2.1.2.2.1.7.606|2|1 +1.3.6.1.2.1.2.2.1.7.607|2|1 +1.3.6.1.2.1.2.2.1.7.608|2|1 +1.3.6.1.2.1.2.2.1.7.609|2|1 +1.3.6.1.2.1.2.2.1.7.610|2|1 +1.3.6.1.2.1.2.2.1.7.611|2|1 +1.3.6.1.2.1.2.2.1.7.612|2|1 +1.3.6.1.2.1.2.2.1.7.613|2|1 +1.3.6.1.2.1.2.2.1.7.614|2|1 +1.3.6.1.2.1.2.2.1.7.615|2|1 +1.3.6.1.2.1.2.2.1.7.616|2|1 +1.3.6.1.2.1.2.2.1.7.617|2|1 +1.3.6.1.2.1.2.2.1.7.618|2|1 +1.3.6.1.2.1.2.2.1.7.619|2|1 +1.3.6.1.2.1.2.2.1.7.620|2|1 +1.3.6.1.2.1.2.2.1.7.621|2|1 +1.3.6.1.2.1.2.2.1.7.622|2|1 +1.3.6.1.2.1.2.2.1.7.623|2|1 +1.3.6.1.2.1.2.2.1.7.624|2|1 +1.3.6.1.2.1.2.2.1.7.625|2|1 +1.3.6.1.2.1.2.2.1.7.626|2|1 +1.3.6.1.2.1.2.2.1.7.627|2|1 +1.3.6.1.2.1.2.2.1.7.628|2|1 +1.3.6.1.2.1.2.2.1.7.629|2|1 +1.3.6.1.2.1.2.2.1.7.630|2|1 +1.3.6.1.2.1.2.2.1.7.631|2|1 +1.3.6.1.2.1.2.2.1.7.632|2|1 +1.3.6.1.2.1.2.2.1.7.633|2|1 +1.3.6.1.2.1.2.2.1.7.634|2|1 +1.3.6.1.2.1.2.2.1.7.635|2|1 +1.3.6.1.2.1.2.2.1.7.636|2|1 +1.3.6.1.2.1.2.2.1.7.637|2|1 +1.3.6.1.2.1.2.2.1.7.638|2|1 +1.3.6.1.2.1.2.2.1.7.639|2|1 +1.3.6.1.2.1.2.2.1.7.640|2|1 +1.3.6.1.2.1.2.2.1.7.641|2|1 +1.3.6.1.2.1.2.2.1.7.642|2|1 +1.3.6.1.2.1.2.2.1.7.643|2|1 +1.3.6.1.2.1.2.2.1.7.644|2|1 +1.3.6.1.2.1.2.2.1.7.645|2|2 +1.3.6.1.2.1.2.2.1.7.646|2|2 +1.3.6.1.2.1.2.2.1.7.647|2|1 +1.3.6.1.2.1.2.2.1.7.648|2|2 +1.3.6.1.2.1.2.2.1.7.649|2|1 +1.3.6.1.2.1.2.2.1.7.650|2|2 +1.3.6.1.2.1.2.2.1.7.651|2|1 +1.3.6.1.2.1.2.2.1.7.652|2|2 +1.3.6.1.2.1.2.2.1.7.653|2|1 +1.3.6.1.2.1.2.2.1.7.654|2|2 +1.3.6.1.2.1.2.2.1.7.655|2|2 +1.3.6.1.2.1.2.2.1.7.656|2|1 +1.3.6.1.2.1.2.2.1.7.657|2|1 +1.3.6.1.2.1.2.2.1.7.658|2|1 +1.3.6.1.2.1.2.2.1.7.659|2|1 +1.3.6.1.2.1.2.2.1.7.660|2|1 +1.3.6.1.2.1.2.2.1.7.661|2|1 +1.3.6.1.2.1.2.2.1.7.662|2|1 +1.3.6.1.2.1.2.2.1.7.663|2|1 +1.3.6.1.2.1.2.2.1.7.664|2|1 +1.3.6.1.2.1.2.2.1.7.665|2|1 +1.3.6.1.2.1.2.2.1.7.666|2|1 +1.3.6.1.2.1.2.2.1.7.667|2|1 +1.3.6.1.2.1.2.2.1.7.668|2|1 +1.3.6.1.2.1.2.2.1.7.669|2|1 +1.3.6.1.2.1.2.2.1.7.670|2|1 +1.3.6.1.2.1.2.2.1.7.671|2|1 +1.3.6.1.2.1.2.2.1.7.672|2|1 +1.3.6.1.2.1.2.2.1.7.673|2|1 +1.3.6.1.2.1.2.2.1.7.674|2|1 +1.3.6.1.2.1.2.2.1.7.675|2|1 +1.3.6.1.2.1.2.2.1.7.676|2|2 +1.3.6.1.2.1.2.2.1.7.677|2|1 +1.3.6.1.2.1.2.2.1.7.678|2|1 +1.3.6.1.2.1.2.2.1.7.679|2|1 +1.3.6.1.2.1.2.2.1.7.680|2|1 +1.3.6.1.2.1.2.2.1.7.681|2|1 +1.3.6.1.2.1.2.2.1.7.682|2|2 +1.3.6.1.2.1.2.2.1.7.683|2|1 +1.3.6.1.2.1.2.2.1.7.684|2|1 +1.3.6.1.2.1.2.2.1.7.685|2|1 +1.3.6.1.2.1.2.2.1.7.686|2|1 +1.3.6.1.2.1.2.2.1.7.687|2|1 +1.3.6.1.2.1.2.2.1.7.688|2|1 +1.3.6.1.2.1.2.2.1.7.689|2|1 +1.3.6.1.2.1.2.2.1.7.690|2|1 +1.3.6.1.2.1.2.2.1.7.691|2|1 +1.3.6.1.2.1.2.2.1.7.692|2|1 +1.3.6.1.2.1.2.2.1.7.693|2|1 +1.3.6.1.2.1.2.2.1.7.694|2|2 +1.3.6.1.2.1.2.2.1.7.695|2|1 +1.3.6.1.2.1.2.2.1.7.696|2|1 +1.3.6.1.2.1.2.2.1.7.697|2|1 +1.3.6.1.2.1.2.2.1.7.698|2|1 +1.3.6.1.2.1.2.2.1.7.699|2|1 +1.3.6.1.2.1.2.2.1.7.700|2|1 +1.3.6.1.2.1.2.2.1.7.701|2|2 +1.3.6.1.2.1.2.2.1.7.702|2|2 +1.3.6.1.2.1.2.2.1.7.703|2|2 +1.3.6.1.2.1.2.2.1.7.704|2|1 +1.3.6.1.2.1.2.2.1.7.705|2|1 +1.3.6.1.2.1.2.2.1.7.706|2|1 +1.3.6.1.2.1.2.2.1.7.707|2|1 +1.3.6.1.2.1.2.2.1.7.708|2|1 +1.3.6.1.2.1.2.2.1.7.709|2|1 +1.3.6.1.2.1.2.2.1.7.710|2|1 +1.3.6.1.2.1.2.2.1.7.711|2|1 +1.3.6.1.2.1.2.2.1.7.712|2|1 +1.3.6.1.2.1.2.2.1.7.713|2|1 +1.3.6.1.2.1.2.2.1.7.714|2|1 +1.3.6.1.2.1.2.2.1.7.715|2|2 +1.3.6.1.2.1.2.2.1.7.716|2|2 +1.3.6.1.2.1.2.2.1.7.717|2|1 +1.3.6.1.2.1.2.2.1.7.718|2|1 +1.3.6.1.2.1.2.2.1.7.719|2|1 +1.3.6.1.2.1.2.2.1.7.720|2|1 +1.3.6.1.2.1.2.2.1.7.721|2|1 +1.3.6.1.2.1.2.2.1.7.722|2|1 +1.3.6.1.2.1.2.2.1.7.723|2|1 +1.3.6.1.2.1.2.2.1.7.724|2|1 +1.3.6.1.2.1.2.2.1.7.725|2|1 +1.3.6.1.2.1.2.2.1.7.726|2|2 +1.3.6.1.2.1.2.2.1.7.727|2|1 +1.3.6.1.2.1.2.2.1.7.728|2|2 +1.3.6.1.2.1.2.2.1.7.729|2|1 +1.3.6.1.2.1.2.2.1.7.730|2|1 +1.3.6.1.2.1.2.2.1.7.731|2|1 +1.3.6.1.2.1.2.2.1.7.732|2|1 +1.3.6.1.2.1.2.2.1.7.733|2|1 +1.3.6.1.2.1.2.2.1.7.734|2|1 +1.3.6.1.2.1.2.2.1.7.735|2|1 +1.3.6.1.2.1.2.2.1.7.736|2|1 +1.3.6.1.2.1.2.2.1.7.737|2|1 +1.3.6.1.2.1.2.2.1.7.738|2|2 +1.3.6.1.2.1.2.2.1.7.739|2|1 +1.3.6.1.2.1.2.2.1.7.740|2|1 +1.3.6.1.2.1.2.2.1.7.741|2|1 +1.3.6.1.2.1.2.2.1.7.742|2|1 +1.3.6.1.2.1.2.2.1.7.743|2|1 +1.3.6.1.2.1.2.2.1.7.744|2|2 +1.3.6.1.2.1.2.2.1.7.745|2|1 +1.3.6.1.2.1.2.2.1.7.746|2|2 +1.3.6.1.2.1.2.2.1.7.747|2|2 +1.3.6.1.2.1.2.2.1.7.748|2|1 +1.3.6.1.2.1.2.2.1.7.749|2|1 +1.3.6.1.2.1.2.2.1.7.750|2|1 +1.3.6.1.2.1.2.2.1.7.751|2|1 +1.3.6.1.2.1.2.2.1.7.768|2|1 +1.3.6.1.2.1.2.2.1.7.769|2|1 +1.3.6.1.2.1.2.2.1.7.770|2|1 +1.3.6.1.2.1.2.2.1.7.771|2|1 +1.3.6.1.2.1.2.2.1.7.772|2|1 +1.3.6.1.2.1.2.2.1.7.773|2|1 +1.3.6.1.2.1.2.2.1.7.774|2|1 +1.3.6.1.2.1.2.2.1.7.775|2|1 +1.3.6.1.2.1.2.2.1.7.776|2|1 +1.3.6.1.2.1.2.2.1.7.777|2|1 +1.3.6.1.2.1.2.2.1.7.778|2|1 +1.3.6.1.2.1.2.2.1.7.779|2|1 +1.3.6.1.2.1.2.2.1.7.780|2|1 +1.3.6.1.2.1.2.2.1.7.781|2|1 +1.3.6.1.2.1.2.2.1.7.782|2|1 +1.3.6.1.2.1.2.2.1.7.783|2|1 +1.3.6.1.2.1.2.2.1.7.784|2|1 +1.3.6.1.2.1.2.2.1.7.785|2|1 +1.3.6.1.2.1.2.2.1.7.786|2|1 +1.3.6.1.2.1.2.2.1.7.787|2|1 +1.3.6.1.2.1.2.2.1.7.788|2|1 +1.3.6.1.2.1.2.2.1.7.789|2|1 +1.3.6.1.2.1.2.2.1.7.790|2|1 +1.3.6.1.2.1.2.2.1.7.791|2|1 +1.3.6.1.2.1.2.2.1.7.792|2|1 +1.3.6.1.2.1.2.2.1.7.793|2|1 +1.3.6.1.2.1.2.2.1.7.794|2|1 +1.3.6.1.2.1.2.2.1.7.795|2|1 +1.3.6.1.2.1.2.2.1.7.796|2|1 +1.3.6.1.2.1.2.2.1.7.797|2|1 +1.3.6.1.2.1.2.2.1.7.798|2|1 +1.3.6.1.2.1.2.2.1.7.799|2|1 +1.3.6.1.2.1.2.2.1.7.800|2|1 +1.3.6.1.2.1.2.2.1.7.801|2|1 +1.3.6.1.2.1.2.2.1.7.802|2|1 +1.3.6.1.2.1.2.2.1.7.803|2|1 +1.3.6.1.2.1.2.2.1.7.804|2|1 +1.3.6.1.2.1.2.2.1.7.805|2|1 +1.3.6.1.2.1.2.2.1.7.806|2|1 +1.3.6.1.2.1.2.2.1.7.807|2|1 +1.3.6.1.2.1.2.2.1.7.808|2|1 +1.3.6.1.2.1.2.2.1.7.809|2|1 +1.3.6.1.2.1.2.2.1.7.810|2|1 +1.3.6.1.2.1.2.2.1.7.811|2|1 +1.3.6.1.2.1.2.2.1.7.812|2|1 +1.3.6.1.2.1.2.2.1.7.813|2|1 +1.3.6.1.2.1.2.2.1.7.814|2|1 +1.3.6.1.2.1.2.2.1.7.815|2|1 +1.3.6.1.2.1.2.2.1.7.816|2|1 +1.3.6.1.2.1.2.2.1.7.817|2|1 +1.3.6.1.2.1.2.2.1.7.818|2|1 +1.3.6.1.2.1.2.2.1.7.819|2|1 +1.3.6.1.2.1.2.2.1.7.820|2|1 +1.3.6.1.2.1.2.2.1.7.821|2|1 +1.3.6.1.2.1.2.2.1.7.822|2|1 +1.3.6.1.2.1.2.2.1.7.823|2|1 +1.3.6.1.2.1.2.2.1.7.824|2|1 +1.3.6.1.2.1.2.2.1.7.825|2|1 +1.3.6.1.2.1.2.2.1.7.826|2|1 +1.3.6.1.2.1.2.2.1.7.827|2|1 +1.3.6.1.2.1.2.2.1.7.828|2|1 +1.3.6.1.2.1.2.2.1.7.829|2|1 +1.3.6.1.2.1.2.2.1.7.830|2|1 +1.3.6.1.2.1.2.2.1.7.831|2|1 +1.3.6.1.2.1.2.2.1.7.832|2|1 +1.3.6.1.2.1.2.2.1.7.833|2|1 +1.3.6.1.2.1.2.2.1.7.834|2|1 +1.3.6.1.2.1.2.2.1.7.835|2|1 +1.3.6.1.2.1.2.2.1.7.836|2|1 +1.3.6.1.2.1.2.2.1.7.837|2|1 +1.3.6.1.2.1.2.2.1.7.838|2|1 +1.3.6.1.2.1.2.2.1.7.839|2|1 +1.3.6.1.2.1.2.2.1.7.840|2|1 +1.3.6.1.2.1.2.2.1.7.841|2|1 +1.3.6.1.2.1.2.2.1.7.842|2|1 +1.3.6.1.2.1.2.2.1.7.843|2|1 +1.3.6.1.2.1.2.2.1.7.844|2|1 +1.3.6.1.2.1.2.2.1.7.845|2|1 +1.3.6.1.2.1.2.2.1.7.846|2|1 +1.3.6.1.2.1.2.2.1.7.847|2|1 +1.3.6.1.2.1.2.2.1.7.848|2|1 +1.3.6.1.2.1.2.2.1.7.849|2|1 +1.3.6.1.2.1.2.2.1.7.850|2|1 +1.3.6.1.2.1.2.2.1.7.851|2|1 +1.3.6.1.2.1.2.2.1.7.852|2|1 +1.3.6.1.2.1.2.2.1.7.853|2|1 +1.3.6.1.2.1.2.2.1.7.854|2|1 +1.3.6.1.2.1.2.2.1.7.855|2|1 +1.3.6.1.2.1.2.2.1.7.856|2|1 +1.3.6.1.2.1.2.2.1.7.857|2|1 +1.3.6.1.2.1.2.2.1.7.858|2|1 +1.3.6.1.2.1.2.2.1.7.859|2|1 +1.3.6.1.2.1.2.2.1.7.864|2|1 +1.3.6.1.2.1.2.2.1.7.868|2|1 +1.3.6.1.2.1.2.2.1.7.869|2|1 +1.3.6.1.2.1.2.2.1.7.870|2|1 +1.3.6.1.2.1.2.2.1.7.871|2|1 +1.3.6.1.2.1.2.2.1.7.872|2|1 +1.3.6.1.2.1.2.2.1.7.873|2|1 +1.3.6.1.2.1.2.2.1.7.874|2|1 +1.3.6.1.2.1.2.2.1.7.875|2|1 +1.3.6.1.2.1.2.2.1.7.876|2|1 +1.3.6.1.2.1.2.2.1.7.877|2|1 +1.3.6.1.2.1.2.2.1.7.878|2|1 +1.3.6.1.2.1.2.2.1.7.879|2|1 +1.3.6.1.2.1.2.2.1.7.880|2|1 +1.3.6.1.2.1.2.2.1.7.881|2|1 +1.3.6.1.2.1.2.2.1.7.882|2|1 +1.3.6.1.2.1.2.2.1.7.883|2|1 +1.3.6.1.2.1.2.2.1.7.884|2|1 +1.3.6.1.2.1.2.2.1.7.885|2|1 +1.3.6.1.2.1.2.2.1.7.886|2|1 +1.3.6.1.2.1.2.2.1.7.887|2|1 +1.3.6.1.2.1.2.2.1.7.888|2|1 +1.3.6.1.2.1.2.2.1.7.889|2|1 +1.3.6.1.2.1.2.2.1.7.890|2|1 +1.3.6.1.2.1.2.2.1.7.891|2|1 +1.3.6.1.2.1.2.2.1.7.892|2|1 +1.3.6.1.2.1.2.2.1.7.893|2|1 +1.3.6.1.2.1.2.2.1.7.894|2|1 +1.3.6.1.2.1.2.2.1.7.895|2|1 +1.3.6.1.2.1.2.2.1.7.896|2|1 +1.3.6.1.2.1.2.2.1.7.897|2|1 +1.3.6.1.2.1.2.2.1.7.898|2|1 +1.3.6.1.2.1.2.2.1.7.899|2|1 +1.3.6.1.2.1.2.2.1.7.900|2|1 +1.3.6.1.2.1.2.2.1.7.901|2|1 +1.3.6.1.2.1.2.2.1.7.902|2|1 +1.3.6.1.2.1.2.2.1.7.903|2|1 +1.3.6.1.2.1.2.2.1.7.904|2|1 +1.3.6.1.2.1.2.2.1.7.905|2|1 +1.3.6.1.2.1.2.2.1.7.906|2|1 +1.3.6.1.2.1.2.2.1.7.907|2|1 +1.3.6.1.2.1.2.2.1.7.908|2|1 +1.3.6.1.2.1.2.2.1.7.909|2|1 +1.3.6.1.2.1.2.2.1.7.910|2|1 +1.3.6.1.2.1.2.2.1.7.911|2|1 +1.3.6.1.2.1.2.2.1.7.912|2|1 +1.3.6.1.2.1.2.2.1.7.913|2|1 +1.3.6.1.2.1.2.2.1.7.914|2|1 +1.3.6.1.2.1.2.2.1.7.915|2|1 +1.3.6.1.2.1.2.2.1.7.916|2|1 +1.3.6.1.2.1.2.2.1.7.917|2|1 +1.3.6.1.2.1.2.2.1.7.918|2|1 +1.3.6.1.2.1.2.2.1.7.919|2|1 +1.3.6.1.2.1.2.2.1.7.920|2|1 +1.3.6.1.2.1.2.2.1.7.921|2|1 +1.3.6.1.2.1.2.2.1.7.922|2|1 +1.3.6.1.2.1.2.2.1.7.923|2|1 +1.3.6.1.2.1.2.2.1.7.924|2|1 +1.3.6.1.2.1.2.2.1.7.925|2|1 +1.3.6.1.2.1.2.2.1.7.926|2|1 +1.3.6.1.2.1.2.2.1.7.927|2|1 +1.3.6.1.2.1.2.2.1.7.928|2|1 +1.3.6.1.2.1.2.2.1.7.929|2|1 +1.3.6.1.2.1.2.2.1.7.930|2|1 +1.3.6.1.2.1.2.2.1.7.931|2|1 +1.3.6.1.2.1.2.2.1.7.932|2|1 +1.3.6.1.2.1.2.2.1.7.933|2|1 +1.3.6.1.2.1.2.2.1.7.934|2|1 +1.3.6.1.2.1.2.2.1.7.935|2|1 +1.3.6.1.2.1.2.2.1.7.936|2|1 +1.3.6.1.2.1.2.2.1.7.937|2|1 +1.3.6.1.2.1.2.2.1.7.938|2|1 +1.3.6.1.2.1.2.2.1.7.939|2|1 +1.3.6.1.2.1.2.2.1.7.940|2|1 +1.3.6.1.2.1.2.2.1.7.941|2|1 +1.3.6.1.2.1.2.2.1.7.942|2|1 +1.3.6.1.2.1.2.2.1.7.943|2|1 +1.3.6.1.2.1.2.2.1.7.944|2|1 +1.3.6.1.2.1.2.2.1.7.945|2|1 +1.3.6.1.2.1.2.2.1.7.946|2|1 +1.3.6.1.2.1.2.2.1.7.947|2|1 +1.3.6.1.2.1.2.2.1.7.948|2|1 +1.3.6.1.2.1.2.2.1.7.949|2|1 +1.3.6.1.2.1.2.2.1.8.251|2|2 +1.3.6.1.2.1.2.2.1.8.252|2|1 +1.3.6.1.2.1.2.2.1.8.253|2|1 +1.3.6.1.2.1.2.2.1.8.254|2|1 +1.3.6.1.2.1.2.2.1.8.255|2|1 +1.3.6.1.2.1.2.2.1.8.258|2|1 +1.3.6.1.2.1.2.2.1.8.259|2|1 +1.3.6.1.2.1.2.2.1.8.260|2|1 +1.3.6.1.2.1.2.2.1.8.261|2|1 +1.3.6.1.2.1.2.2.1.8.262|2|1 +1.3.6.1.2.1.2.2.1.8.263|2|1 +1.3.6.1.2.1.2.2.1.8.264|2|1 +1.3.6.1.2.1.2.2.1.8.265|2|1 +1.3.6.1.2.1.2.2.1.8.266|2|1 +1.3.6.1.2.1.2.2.1.8.267|2|1 +1.3.6.1.2.1.2.2.1.8.268|2|1 +1.3.6.1.2.1.2.2.1.8.269|2|1 +1.3.6.1.2.1.2.2.1.8.270|2|2 +1.3.6.1.2.1.2.2.1.8.273|2|2 +1.3.6.1.2.1.2.2.1.8.274|2|2 +1.3.6.1.2.1.2.2.1.8.275|2|1 +1.3.6.1.2.1.2.2.1.8.276|2|1 +1.3.6.1.2.1.2.2.1.8.277|2|2 +1.3.6.1.2.1.2.2.1.8.278|2|2 +1.3.6.1.2.1.2.2.1.8.280|2|2 +1.3.6.1.2.1.2.2.1.8.281|2|2 +1.3.6.1.2.1.2.2.1.8.282|2|2 +1.3.6.1.2.1.2.2.1.8.283|2|2 +1.3.6.1.2.1.2.2.1.8.284|2|2 +1.3.6.1.2.1.2.2.1.8.285|2|2 +1.3.6.1.2.1.2.2.1.8.286|2|2 +1.3.6.1.2.1.2.2.1.8.287|2|2 +1.3.6.1.2.1.2.2.1.8.288|2|2 +1.3.6.1.2.1.2.2.1.8.291|2|1 +1.3.6.1.2.1.2.2.1.8.292|2|1 +1.3.6.1.2.1.2.2.1.8.293|2|1 +1.3.6.1.2.1.2.2.1.8.294|2|1 +1.3.6.1.2.1.2.2.1.8.295|2|1 +1.3.6.1.2.1.2.2.1.8.395|2|2 +1.3.6.1.2.1.2.2.1.8.396|2|2 +1.3.6.1.2.1.2.2.1.8.398|2|1 +1.3.6.1.2.1.2.2.1.8.399|2|1 +1.3.6.1.2.1.2.2.1.8.414|2|1 +1.3.6.1.2.1.2.2.1.8.415|2|1 +1.3.6.1.2.1.2.2.1.8.417|2|1 +1.3.6.1.2.1.2.2.1.8.418|2|1 +1.3.6.1.2.1.2.2.1.8.438|2|1 +1.3.6.1.2.1.2.2.1.8.439|2|1 +1.3.6.1.2.1.2.2.1.8.440|2|1 +1.3.6.1.2.1.2.2.1.8.441|2|1 +1.3.6.1.2.1.2.2.1.8.442|2|1 +1.3.6.1.2.1.2.2.1.8.443|2|1 +1.3.6.1.2.1.2.2.1.8.444|2|1 +1.3.6.1.2.1.2.2.1.8.445|2|1 +1.3.6.1.2.1.2.2.1.8.446|2|1 +1.3.6.1.2.1.2.2.1.8.447|2|1 +1.3.6.1.2.1.2.2.1.8.448|2|1 +1.3.6.1.2.1.2.2.1.8.449|2|1 +1.3.6.1.2.1.2.2.1.8.450|2|1 +1.3.6.1.2.1.2.2.1.8.451|2|1 +1.3.6.1.2.1.2.2.1.8.452|2|1 +1.3.6.1.2.1.2.2.1.8.453|2|1 +1.3.6.1.2.1.2.2.1.8.454|2|1 +1.3.6.1.2.1.2.2.1.8.455|2|1 +1.3.6.1.2.1.2.2.1.8.456|2|1 +1.3.6.1.2.1.2.2.1.8.457|2|1 +1.3.6.1.2.1.2.2.1.8.462|2|1 +1.3.6.1.2.1.2.2.1.8.464|2|2 +1.3.6.1.2.1.2.2.1.8.465|2|2 +1.3.6.1.2.1.2.2.1.8.467|2|1 +1.3.6.1.2.1.2.2.1.8.468|2|1 +1.3.6.1.2.1.2.2.1.8.474|2|1 +1.3.6.1.2.1.2.2.1.8.475|2|1 +1.3.6.1.2.1.2.2.1.8.476|2|1 +1.3.6.1.2.1.2.2.1.8.477|2|2 +1.3.6.1.2.1.2.2.1.8.478|2|1 +1.3.6.1.2.1.2.2.1.8.487|2|1 +1.3.6.1.2.1.2.2.1.8.489|2|1 +1.3.6.1.2.1.2.2.1.8.490|2|1 +1.3.6.1.2.1.2.2.1.8.493|2|1 +1.3.6.1.2.1.2.2.1.8.494|2|2 +1.3.6.1.2.1.2.2.1.8.495|2|2 +1.3.6.1.2.1.2.2.1.8.496|2|2 +1.3.6.1.2.1.2.2.1.8.497|2|1 +1.3.6.1.2.1.2.2.1.8.502|2|1 +1.3.6.1.2.1.2.2.1.8.503|2|1 +1.3.6.1.2.1.2.2.1.8.504|2|1 +1.3.6.1.2.1.2.2.1.8.505|2|1 +1.3.6.1.2.1.2.2.1.8.506|2|1 +1.3.6.1.2.1.2.2.1.8.509|2|1 +1.3.6.1.2.1.2.2.1.8.510|2|1 +1.3.6.1.2.1.2.2.1.8.511|2|1 +1.3.6.1.2.1.2.2.1.8.513|2|1 +1.3.6.1.2.1.2.2.1.8.514|2|2 +1.3.6.1.2.1.2.2.1.8.515|2|2 +1.3.6.1.2.1.2.2.1.8.516|2|1 +1.3.6.1.2.1.2.2.1.8.517|2|1 +1.3.6.1.2.1.2.2.1.8.518|2|2 +1.3.6.1.2.1.2.2.1.8.519|2|2 +1.3.6.1.2.1.2.2.1.8.520|2|2 +1.3.6.1.2.1.2.2.1.8.523|2|1 +1.3.6.1.2.1.2.2.1.8.524|2|1 +1.3.6.1.2.1.2.2.1.8.525|2|1 +1.3.6.1.2.1.2.2.1.8.526|2|1 +1.3.6.1.2.1.2.2.1.8.527|2|1 +1.3.6.1.2.1.2.2.1.8.528|2|1 +1.3.6.1.2.1.2.2.1.8.529|2|1 +1.3.6.1.2.1.2.2.1.8.530|2|1 +1.3.6.1.2.1.2.2.1.8.531|2|1 +1.3.6.1.2.1.2.2.1.8.532|2|1 +1.3.6.1.2.1.2.2.1.8.533|2|1 +1.3.6.1.2.1.2.2.1.8.534|2|1 +1.3.6.1.2.1.2.2.1.8.535|2|1 +1.3.6.1.2.1.2.2.1.8.536|2|1 +1.3.6.1.2.1.2.2.1.8.538|2|1 +1.3.6.1.2.1.2.2.1.8.540|2|1 +1.3.6.1.2.1.2.2.1.8.541|2|1 +1.3.6.1.2.1.2.2.1.8.542|2|1 +1.3.6.1.2.1.2.2.1.8.543|2|1 +1.3.6.1.2.1.2.2.1.8.544|2|1 +1.3.6.1.2.1.2.2.1.8.545|2|1 +1.3.6.1.2.1.2.2.1.8.546|2|1 +1.3.6.1.2.1.2.2.1.8.547|2|1 +1.3.6.1.2.1.2.2.1.8.548|2|2 +1.3.6.1.2.1.2.2.1.8.549|2|2 +1.3.6.1.2.1.2.2.1.8.550|2|1 +1.3.6.1.2.1.2.2.1.8.551|2|2 +1.3.6.1.2.1.2.2.1.8.552|2|2 +1.3.6.1.2.1.2.2.1.8.553|2|2 +1.3.6.1.2.1.2.2.1.8.554|2|2 +1.3.6.1.2.1.2.2.1.8.555|2|1 +1.3.6.1.2.1.2.2.1.8.556|2|1 +1.3.6.1.2.1.2.2.1.8.557|2|1 +1.3.6.1.2.1.2.2.1.8.558|2|1 +1.3.6.1.2.1.2.2.1.8.559|2|1 +1.3.6.1.2.1.2.2.1.8.560|2|1 +1.3.6.1.2.1.2.2.1.8.561|2|1 +1.3.6.1.2.1.2.2.1.8.562|2|2 +1.3.6.1.2.1.2.2.1.8.563|2|1 +1.3.6.1.2.1.2.2.1.8.564|2|2 +1.3.6.1.2.1.2.2.1.8.565|2|1 +1.3.6.1.2.1.2.2.1.8.566|2|1 +1.3.6.1.2.1.2.2.1.8.567|2|1 +1.3.6.1.2.1.2.2.1.8.568|2|1 +1.3.6.1.2.1.2.2.1.8.569|2|2 +1.3.6.1.2.1.2.2.1.8.570|2|1 +1.3.6.1.2.1.2.2.1.8.571|2|1 +1.3.6.1.2.1.2.2.1.8.572|2|2 +1.3.6.1.2.1.2.2.1.8.573|2|2 +1.3.6.1.2.1.2.2.1.8.574|2|2 +1.3.6.1.2.1.2.2.1.8.575|2|1 +1.3.6.1.2.1.2.2.1.8.576|2|2 +1.3.6.1.2.1.2.2.1.8.577|2|1 +1.3.6.1.2.1.2.2.1.8.578|2|1 +1.3.6.1.2.1.2.2.1.8.579|2|1 +1.3.6.1.2.1.2.2.1.8.580|2|1 +1.3.6.1.2.1.2.2.1.8.581|2|1 +1.3.6.1.2.1.2.2.1.8.582|2|1 +1.3.6.1.2.1.2.2.1.8.583|2|1 +1.3.6.1.2.1.2.2.1.8.584|2|1 +1.3.6.1.2.1.2.2.1.8.585|2|1 +1.3.6.1.2.1.2.2.1.8.586|2|1 +1.3.6.1.2.1.2.2.1.8.587|2|1 +1.3.6.1.2.1.2.2.1.8.588|2|1 +1.3.6.1.2.1.2.2.1.8.589|2|1 +1.3.6.1.2.1.2.2.1.8.590|2|1 +1.3.6.1.2.1.2.2.1.8.591|2|1 +1.3.6.1.2.1.2.2.1.8.592|2|2 +1.3.6.1.2.1.2.2.1.8.593|2|2 +1.3.6.1.2.1.2.2.1.8.594|2|2 +1.3.6.1.2.1.2.2.1.8.595|2|1 +1.3.6.1.2.1.2.2.1.8.596|2|2 +1.3.6.1.2.1.2.2.1.8.597|2|2 +1.3.6.1.2.1.2.2.1.8.598|2|2 +1.3.6.1.2.1.2.2.1.8.599|2|2 +1.3.6.1.2.1.2.2.1.8.600|2|1 +1.3.6.1.2.1.2.2.1.8.601|2|1 +1.3.6.1.2.1.2.2.1.8.602|2|2 +1.3.6.1.2.1.2.2.1.8.603|2|1 +1.3.6.1.2.1.2.2.1.8.604|2|1 +1.3.6.1.2.1.2.2.1.8.605|2|2 +1.3.6.1.2.1.2.2.1.8.606|2|2 +1.3.6.1.2.1.2.2.1.8.607|2|2 +1.3.6.1.2.1.2.2.1.8.608|2|2 +1.3.6.1.2.1.2.2.1.8.609|2|2 +1.3.6.1.2.1.2.2.1.8.610|2|1 +1.3.6.1.2.1.2.2.1.8.611|2|2 +1.3.6.1.2.1.2.2.1.8.612|2|1 +1.3.6.1.2.1.2.2.1.8.613|2|1 +1.3.6.1.2.1.2.2.1.8.614|2|1 +1.3.6.1.2.1.2.2.1.8.615|2|1 +1.3.6.1.2.1.2.2.1.8.616|2|1 +1.3.6.1.2.1.2.2.1.8.617|2|1 +1.3.6.1.2.1.2.2.1.8.618|2|1 +1.3.6.1.2.1.2.2.1.8.619|2|1 +1.3.6.1.2.1.2.2.1.8.620|2|2 +1.3.6.1.2.1.2.2.1.8.621|2|2 +1.3.6.1.2.1.2.2.1.8.622|2|1 +1.3.6.1.2.1.2.2.1.8.623|2|2 +1.3.6.1.2.1.2.2.1.8.624|2|1 +1.3.6.1.2.1.2.2.1.8.625|2|2 +1.3.6.1.2.1.2.2.1.8.626|2|1 +1.3.6.1.2.1.2.2.1.8.627|2|1 +1.3.6.1.2.1.2.2.1.8.628|2|2 +1.3.6.1.2.1.2.2.1.8.629|2|1 +1.3.6.1.2.1.2.2.1.8.630|2|2 +1.3.6.1.2.1.2.2.1.8.631|2|2 +1.3.6.1.2.1.2.2.1.8.632|2|1 +1.3.6.1.2.1.2.2.1.8.633|2|1 +1.3.6.1.2.1.2.2.1.8.634|2|1 +1.3.6.1.2.1.2.2.1.8.635|2|2 +1.3.6.1.2.1.2.2.1.8.636|2|2 +1.3.6.1.2.1.2.2.1.8.637|2|2 +1.3.6.1.2.1.2.2.1.8.638|2|1 +1.3.6.1.2.1.2.2.1.8.639|2|2 +1.3.6.1.2.1.2.2.1.8.640|2|2 +1.3.6.1.2.1.2.2.1.8.641|2|2 +1.3.6.1.2.1.2.2.1.8.642|2|1 +1.3.6.1.2.1.2.2.1.8.643|2|2 +1.3.6.1.2.1.2.2.1.8.644|2|1 +1.3.6.1.2.1.2.2.1.8.645|2|2 +1.3.6.1.2.1.2.2.1.8.646|2|2 +1.3.6.1.2.1.2.2.1.8.647|2|1 +1.3.6.1.2.1.2.2.1.8.648|2|2 +1.3.6.1.2.1.2.2.1.8.649|2|1 +1.3.6.1.2.1.2.2.1.8.650|2|2 +1.3.6.1.2.1.2.2.1.8.651|2|1 +1.3.6.1.2.1.2.2.1.8.652|2|2 +1.3.6.1.2.1.2.2.1.8.653|2|2 +1.3.6.1.2.1.2.2.1.8.654|2|2 +1.3.6.1.2.1.2.2.1.8.655|2|2 +1.3.6.1.2.1.2.2.1.8.656|2|1 +1.3.6.1.2.1.2.2.1.8.657|2|1 +1.3.6.1.2.1.2.2.1.8.658|2|2 +1.3.6.1.2.1.2.2.1.8.659|2|1 +1.3.6.1.2.1.2.2.1.8.660|2|1 +1.3.6.1.2.1.2.2.1.8.661|2|1 +1.3.6.1.2.1.2.2.1.8.662|2|1 +1.3.6.1.2.1.2.2.1.8.663|2|1 +1.3.6.1.2.1.2.2.1.8.664|2|1 +1.3.6.1.2.1.2.2.1.8.665|2|1 +1.3.6.1.2.1.2.2.1.8.666|2|1 +1.3.6.1.2.1.2.2.1.8.667|2|1 +1.3.6.1.2.1.2.2.1.8.668|2|2 +1.3.6.1.2.1.2.2.1.8.669|2|1 +1.3.6.1.2.1.2.2.1.8.670|2|1 +1.3.6.1.2.1.2.2.1.8.671|2|2 +1.3.6.1.2.1.2.2.1.8.672|2|2 +1.3.6.1.2.1.2.2.1.8.673|2|2 +1.3.6.1.2.1.2.2.1.8.674|2|1 +1.3.6.1.2.1.2.2.1.8.675|2|2 +1.3.6.1.2.1.2.2.1.8.676|2|2 +1.3.6.1.2.1.2.2.1.8.677|2|1 +1.3.6.1.2.1.2.2.1.8.678|2|2 +1.3.6.1.2.1.2.2.1.8.679|2|1 +1.3.6.1.2.1.2.2.1.8.680|2|1 +1.3.6.1.2.1.2.2.1.8.681|2|2 +1.3.6.1.2.1.2.2.1.8.682|2|2 +1.3.6.1.2.1.2.2.1.8.683|2|2 +1.3.6.1.2.1.2.2.1.8.684|2|2 +1.3.6.1.2.1.2.2.1.8.685|2|1 +1.3.6.1.2.1.2.2.1.8.686|2|1 +1.3.6.1.2.1.2.2.1.8.687|2|1 +1.3.6.1.2.1.2.2.1.8.688|2|1 +1.3.6.1.2.1.2.2.1.8.689|2|1 +1.3.6.1.2.1.2.2.1.8.690|2|1 +1.3.6.1.2.1.2.2.1.8.691|2|1 +1.3.6.1.2.1.2.2.1.8.692|2|2 +1.3.6.1.2.1.2.2.1.8.693|2|2 +1.3.6.1.2.1.2.2.1.8.694|2|2 +1.3.6.1.2.1.2.2.1.8.695|2|2 +1.3.6.1.2.1.2.2.1.8.696|2|1 +1.3.6.1.2.1.2.2.1.8.697|2|1 +1.3.6.1.2.1.2.2.1.8.698|2|2 +1.3.6.1.2.1.2.2.1.8.699|2|2 +1.3.6.1.2.1.2.2.1.8.700|2|2 +1.3.6.1.2.1.2.2.1.8.701|2|2 +1.3.6.1.2.1.2.2.1.8.702|2|2 +1.3.6.1.2.1.2.2.1.8.703|2|2 +1.3.6.1.2.1.2.2.1.8.704|2|1 +1.3.6.1.2.1.2.2.1.8.705|2|1 +1.3.6.1.2.1.2.2.1.8.706|2|1 +1.3.6.1.2.1.2.2.1.8.707|2|1 +1.3.6.1.2.1.2.2.1.8.708|2|1 +1.3.6.1.2.1.2.2.1.8.709|2|1 +1.3.6.1.2.1.2.2.1.8.710|2|1 +1.3.6.1.2.1.2.2.1.8.711|2|2 +1.3.6.1.2.1.2.2.1.8.712|2|1 +1.3.6.1.2.1.2.2.1.8.713|2|1 +1.3.6.1.2.1.2.2.1.8.714|2|1 +1.3.6.1.2.1.2.2.1.8.715|2|2 +1.3.6.1.2.1.2.2.1.8.716|2|2 +1.3.6.1.2.1.2.2.1.8.717|2|1 +1.3.6.1.2.1.2.2.1.8.718|2|1 +1.3.6.1.2.1.2.2.1.8.719|2|1 +1.3.6.1.2.1.2.2.1.8.720|2|2 +1.3.6.1.2.1.2.2.1.8.721|2|1 +1.3.6.1.2.1.2.2.1.8.722|2|1 +1.3.6.1.2.1.2.2.1.8.723|2|1 +1.3.6.1.2.1.2.2.1.8.724|2|1 +1.3.6.1.2.1.2.2.1.8.725|2|1 +1.3.6.1.2.1.2.2.1.8.726|2|2 +1.3.6.1.2.1.2.2.1.8.727|2|1 +1.3.6.1.2.1.2.2.1.8.728|2|2 +1.3.6.1.2.1.2.2.1.8.729|2|1 +1.3.6.1.2.1.2.2.1.8.730|2|1 +1.3.6.1.2.1.2.2.1.8.731|2|1 +1.3.6.1.2.1.2.2.1.8.732|2|1 +1.3.6.1.2.1.2.2.1.8.733|2|1 +1.3.6.1.2.1.2.2.1.8.734|2|1 +1.3.6.1.2.1.2.2.1.8.735|2|1 +1.3.6.1.2.1.2.2.1.8.736|2|1 +1.3.6.1.2.1.2.2.1.8.737|2|1 +1.3.6.1.2.1.2.2.1.8.738|2|2 +1.3.6.1.2.1.2.2.1.8.739|2|1 +1.3.6.1.2.1.2.2.1.8.740|2|2 +1.3.6.1.2.1.2.2.1.8.741|2|2 +1.3.6.1.2.1.2.2.1.8.742|2|1 +1.3.6.1.2.1.2.2.1.8.743|2|2 +1.3.6.1.2.1.2.2.1.8.744|2|2 +1.3.6.1.2.1.2.2.1.8.745|2|1 +1.3.6.1.2.1.2.2.1.8.746|2|2 +1.3.6.1.2.1.2.2.1.8.747|2|2 +1.3.6.1.2.1.2.2.1.8.748|2|1 +1.3.6.1.2.1.2.2.1.8.749|2|1 +1.3.6.1.2.1.2.2.1.8.750|2|1 +1.3.6.1.2.1.2.2.1.8.751|2|1 +1.3.6.1.2.1.2.2.1.8.768|2|1 +1.3.6.1.2.1.2.2.1.8.769|2|1 +1.3.6.1.2.1.2.2.1.8.770|2|1 +1.3.6.1.2.1.2.2.1.8.771|2|1 +1.3.6.1.2.1.2.2.1.8.772|2|1 +1.3.6.1.2.1.2.2.1.8.773|2|1 +1.3.6.1.2.1.2.2.1.8.774|2|1 +1.3.6.1.2.1.2.2.1.8.775|2|1 +1.3.6.1.2.1.2.2.1.8.776|2|1 +1.3.6.1.2.1.2.2.1.8.777|2|1 +1.3.6.1.2.1.2.2.1.8.778|2|1 +1.3.6.1.2.1.2.2.1.8.779|2|1 +1.3.6.1.2.1.2.2.1.8.780|2|1 +1.3.6.1.2.1.2.2.1.8.781|2|1 +1.3.6.1.2.1.2.2.1.8.782|2|1 +1.3.6.1.2.1.2.2.1.8.783|2|1 +1.3.6.1.2.1.2.2.1.8.784|2|1 +1.3.6.1.2.1.2.2.1.8.785|2|1 +1.3.6.1.2.1.2.2.1.8.786|2|1 +1.3.6.1.2.1.2.2.1.8.787|2|1 +1.3.6.1.2.1.2.2.1.8.788|2|1 +1.3.6.1.2.1.2.2.1.8.789|2|1 +1.3.6.1.2.1.2.2.1.8.790|2|1 +1.3.6.1.2.1.2.2.1.8.791|2|1 +1.3.6.1.2.1.2.2.1.8.792|2|1 +1.3.6.1.2.1.2.2.1.8.793|2|1 +1.3.6.1.2.1.2.2.1.8.794|2|1 +1.3.6.1.2.1.2.2.1.8.795|2|1 +1.3.6.1.2.1.2.2.1.8.796|2|1 +1.3.6.1.2.1.2.2.1.8.797|2|1 +1.3.6.1.2.1.2.2.1.8.798|2|1 +1.3.6.1.2.1.2.2.1.8.799|2|1 +1.3.6.1.2.1.2.2.1.8.800|2|1 +1.3.6.1.2.1.2.2.1.8.801|2|1 +1.3.6.1.2.1.2.2.1.8.802|2|1 +1.3.6.1.2.1.2.2.1.8.803|2|1 +1.3.6.1.2.1.2.2.1.8.804|2|1 +1.3.6.1.2.1.2.2.1.8.805|2|1 +1.3.6.1.2.1.2.2.1.8.806|2|1 +1.3.6.1.2.1.2.2.1.8.807|2|1 +1.3.6.1.2.1.2.2.1.8.808|2|1 +1.3.6.1.2.1.2.2.1.8.809|2|1 +1.3.6.1.2.1.2.2.1.8.810|2|1 +1.3.6.1.2.1.2.2.1.8.811|2|1 +1.3.6.1.2.1.2.2.1.8.812|2|1 +1.3.6.1.2.1.2.2.1.8.813|2|1 +1.3.6.1.2.1.2.2.1.8.814|2|1 +1.3.6.1.2.1.2.2.1.8.815|2|1 +1.3.6.1.2.1.2.2.1.8.816|2|1 +1.3.6.1.2.1.2.2.1.8.817|2|1 +1.3.6.1.2.1.2.2.1.8.818|2|1 +1.3.6.1.2.1.2.2.1.8.819|2|1 +1.3.6.1.2.1.2.2.1.8.820|2|1 +1.3.6.1.2.1.2.2.1.8.821|2|1 +1.3.6.1.2.1.2.2.1.8.822|2|1 +1.3.6.1.2.1.2.2.1.8.823|2|1 +1.3.6.1.2.1.2.2.1.8.824|2|1 +1.3.6.1.2.1.2.2.1.8.825|2|1 +1.3.6.1.2.1.2.2.1.8.826|2|1 +1.3.6.1.2.1.2.2.1.8.827|2|1 +1.3.6.1.2.1.2.2.1.8.828|2|1 +1.3.6.1.2.1.2.2.1.8.829|2|1 +1.3.6.1.2.1.2.2.1.8.830|2|1 +1.3.6.1.2.1.2.2.1.8.831|2|1 +1.3.6.1.2.1.2.2.1.8.832|2|1 +1.3.6.1.2.1.2.2.1.8.833|2|1 +1.3.6.1.2.1.2.2.1.8.834|2|1 +1.3.6.1.2.1.2.2.1.8.835|2|1 +1.3.6.1.2.1.2.2.1.8.836|2|1 +1.3.6.1.2.1.2.2.1.8.837|2|1 +1.3.6.1.2.1.2.2.1.8.838|2|1 +1.3.6.1.2.1.2.2.1.8.839|2|1 +1.3.6.1.2.1.2.2.1.8.840|2|1 +1.3.6.1.2.1.2.2.1.8.841|2|1 +1.3.6.1.2.1.2.2.1.8.842|2|1 +1.3.6.1.2.1.2.2.1.8.843|2|1 +1.3.6.1.2.1.2.2.1.8.844|2|1 +1.3.6.1.2.1.2.2.1.8.845|2|1 +1.3.6.1.2.1.2.2.1.8.846|2|1 +1.3.6.1.2.1.2.2.1.8.847|2|1 +1.3.6.1.2.1.2.2.1.8.848|2|1 +1.3.6.1.2.1.2.2.1.8.849|2|1 +1.3.6.1.2.1.2.2.1.8.850|2|1 +1.3.6.1.2.1.2.2.1.8.851|2|1 +1.3.6.1.2.1.2.2.1.8.852|2|1 +1.3.6.1.2.1.2.2.1.8.853|2|1 +1.3.6.1.2.1.2.2.1.8.854|2|1 +1.3.6.1.2.1.2.2.1.8.855|2|1 +1.3.6.1.2.1.2.2.1.8.856|2|1 +1.3.6.1.2.1.2.2.1.8.857|2|1 +1.3.6.1.2.1.2.2.1.8.858|2|1 +1.3.6.1.2.1.2.2.1.8.859|2|1 +1.3.6.1.2.1.2.2.1.8.864|2|1 +1.3.6.1.2.1.2.2.1.8.868|2|1 +1.3.6.1.2.1.2.2.1.8.869|2|1 +1.3.6.1.2.1.2.2.1.8.870|2|1 +1.3.6.1.2.1.2.2.1.8.871|2|1 +1.3.6.1.2.1.2.2.1.8.872|2|1 +1.3.6.1.2.1.2.2.1.8.873|2|1 +1.3.6.1.2.1.2.2.1.8.874|2|1 +1.3.6.1.2.1.2.2.1.8.875|2|1 +1.3.6.1.2.1.2.2.1.8.876|2|1 +1.3.6.1.2.1.2.2.1.8.877|2|1 +1.3.6.1.2.1.2.2.1.8.878|2|1 +1.3.6.1.2.1.2.2.1.8.879|2|1 +1.3.6.1.2.1.2.2.1.8.880|2|1 +1.3.6.1.2.1.2.2.1.8.881|2|1 +1.3.6.1.2.1.2.2.1.8.882|2|1 +1.3.6.1.2.1.2.2.1.8.883|2|1 +1.3.6.1.2.1.2.2.1.8.884|2|1 +1.3.6.1.2.1.2.2.1.8.885|2|1 +1.3.6.1.2.1.2.2.1.8.886|2|1 +1.3.6.1.2.1.2.2.1.8.887|2|1 +1.3.6.1.2.1.2.2.1.8.888|2|1 +1.3.6.1.2.1.2.2.1.8.889|2|1 +1.3.6.1.2.1.2.2.1.8.890|2|1 +1.3.6.1.2.1.2.2.1.8.891|2|1 +1.3.6.1.2.1.2.2.1.8.892|2|1 +1.3.6.1.2.1.2.2.1.8.893|2|1 +1.3.6.1.2.1.2.2.1.8.894|2|1 +1.3.6.1.2.1.2.2.1.8.895|2|1 +1.3.6.1.2.1.2.2.1.8.896|2|1 +1.3.6.1.2.1.2.2.1.8.897|2|1 +1.3.6.1.2.1.2.2.1.8.898|2|1 +1.3.6.1.2.1.2.2.1.8.899|2|1 +1.3.6.1.2.1.2.2.1.8.900|2|1 +1.3.6.1.2.1.2.2.1.8.901|2|1 +1.3.6.1.2.1.2.2.1.8.902|2|1 +1.3.6.1.2.1.2.2.1.8.903|2|1 +1.3.6.1.2.1.2.2.1.8.904|2|1 +1.3.6.1.2.1.2.2.1.8.905|2|1 +1.3.6.1.2.1.2.2.1.8.906|2|1 +1.3.6.1.2.1.2.2.1.8.907|2|1 +1.3.6.1.2.1.2.2.1.8.908|2|1 +1.3.6.1.2.1.2.2.1.8.909|2|1 +1.3.6.1.2.1.2.2.1.8.910|2|1 +1.3.6.1.2.1.2.2.1.8.911|2|1 +1.3.6.1.2.1.2.2.1.8.912|2|1 +1.3.6.1.2.1.2.2.1.8.913|2|1 +1.3.6.1.2.1.2.2.1.8.914|2|1 +1.3.6.1.2.1.2.2.1.8.915|2|1 +1.3.6.1.2.1.2.2.1.8.916|2|1 +1.3.6.1.2.1.2.2.1.8.917|2|1 +1.3.6.1.2.1.2.2.1.8.918|2|1 +1.3.6.1.2.1.2.2.1.8.919|2|1 +1.3.6.1.2.1.2.2.1.8.920|2|1 +1.3.6.1.2.1.2.2.1.8.921|2|1 +1.3.6.1.2.1.2.2.1.8.922|2|1 +1.3.6.1.2.1.2.2.1.8.923|2|1 +1.3.6.1.2.1.2.2.1.8.924|2|1 +1.3.6.1.2.1.2.2.1.8.925|2|1 +1.3.6.1.2.1.2.2.1.8.926|2|1 +1.3.6.1.2.1.2.2.1.8.927|2|1 +1.3.6.1.2.1.2.2.1.8.928|2|1 +1.3.6.1.2.1.2.2.1.8.929|2|1 +1.3.6.1.2.1.2.2.1.8.930|2|1 +1.3.6.1.2.1.2.2.1.8.931|2|1 +1.3.6.1.2.1.2.2.1.8.932|2|1 +1.3.6.1.2.1.2.2.1.8.933|2|1 +1.3.6.1.2.1.2.2.1.8.934|2|1 +1.3.6.1.2.1.2.2.1.8.935|2|1 +1.3.6.1.2.1.2.2.1.8.936|2|1 +1.3.6.1.2.1.2.2.1.8.937|2|1 +1.3.6.1.2.1.2.2.1.8.938|2|1 +1.3.6.1.2.1.2.2.1.8.939|2|1 +1.3.6.1.2.1.2.2.1.8.940|2|1 +1.3.6.1.2.1.2.2.1.8.941|2|1 +1.3.6.1.2.1.2.2.1.8.942|2|1 +1.3.6.1.2.1.2.2.1.8.943|2|1 +1.3.6.1.2.1.2.2.1.8.944|2|1 +1.3.6.1.2.1.2.2.1.8.945|2|1 +1.3.6.1.2.1.2.2.1.8.946|2|1 +1.3.6.1.2.1.2.2.1.8.947|2|1 +1.3.6.1.2.1.2.2.1.8.948|2|1 +1.3.6.1.2.1.2.2.1.8.949|2|1 +1.3.6.1.2.1.2.2.1.9.251|67|8757 +1.3.6.1.2.1.2.2.1.9.252|67|2093085773 +1.3.6.1.2.1.2.2.1.9.253|67|0 +1.3.6.1.2.1.2.2.1.9.254|67|0 +1.3.6.1.2.1.2.2.1.9.255|67|0 +1.3.6.1.2.1.2.2.1.9.258|67|15011 +1.3.6.1.2.1.2.2.1.9.259|67|10021 +1.3.6.1.2.1.2.2.1.9.260|67|10428 +1.3.6.1.2.1.2.2.1.9.261|67|10428 +1.3.6.1.2.1.2.2.1.9.262|67|10432 +1.3.6.1.2.1.2.2.1.9.263|67|10447 +1.3.6.1.2.1.2.2.1.9.264|67|10451 +1.3.6.1.2.1.2.2.1.9.265|67|11291 +1.3.6.1.2.1.2.2.1.9.266|67|11293 +1.3.6.1.2.1.2.2.1.9.267|67|11294 +1.3.6.1.2.1.2.2.1.9.268|67|11296 +1.3.6.1.2.1.2.2.1.9.269|67|11330 +1.3.6.1.2.1.2.2.1.9.270|67|4033 +1.3.6.1.2.1.2.2.1.9.273|67|9746 +1.3.6.1.2.1.2.2.1.9.274|67|9570 +1.3.6.1.2.1.2.2.1.9.275|67|11949 +1.3.6.1.2.1.2.2.1.9.276|67|11950 +1.3.6.1.2.1.2.2.1.9.277|67|9571 +1.3.6.1.2.1.2.2.1.9.278|67|9599 +1.3.6.1.2.1.2.2.1.9.280|67|9599 +1.3.6.1.2.1.2.2.1.9.281|67|9571 +1.3.6.1.2.1.2.2.1.9.282|67|9571 +1.3.6.1.2.1.2.2.1.9.283|67|9626 +1.3.6.1.2.1.2.2.1.9.284|67|9626 +1.3.6.1.2.1.2.2.1.9.285|67|9598 +1.3.6.1.2.1.2.2.1.9.286|67|9626 +1.3.6.1.2.1.2.2.1.9.287|67|9598 +1.3.6.1.2.1.2.2.1.9.288|67|9627 +1.3.6.1.2.1.2.2.1.9.291|67|11297 +1.3.6.1.2.1.2.2.1.9.292|67|11297 +1.3.6.1.2.1.2.2.1.9.293|67|11341 +1.3.6.1.2.1.2.2.1.9.294|67|11362 +1.3.6.1.2.1.2.2.1.9.295|67|11362 +1.3.6.1.2.1.2.2.1.9.395|67|9669 +1.3.6.1.2.1.2.2.1.9.396|67|9668 +1.3.6.1.2.1.2.2.1.9.398|67|15010 +1.3.6.1.2.1.2.2.1.9.399|67|15010 +1.3.6.1.2.1.2.2.1.9.414|67|11339 +1.3.6.1.2.1.2.2.1.9.415|67|3498 +1.3.6.1.2.1.2.2.1.9.417|67|15010 +1.3.6.1.2.1.2.2.1.9.418|67|15011 +1.3.6.1.2.1.2.2.1.9.438|67|11385 +1.3.6.1.2.1.2.2.1.9.439|67|11386 +1.3.6.1.2.1.2.2.1.9.440|67|11404 +1.3.6.1.2.1.2.2.1.9.441|67|11404 +1.3.6.1.2.1.2.2.1.9.442|67|11405 +1.3.6.1.2.1.2.2.1.9.443|67|11409 +1.3.6.1.2.1.2.2.1.9.444|67|11410 +1.3.6.1.2.1.2.2.1.9.445|67|11414 +1.3.6.1.2.1.2.2.1.9.446|67|11414 +1.3.6.1.2.1.2.2.1.9.447|67|11435 +1.3.6.1.2.1.2.2.1.9.448|67|11437 +1.3.6.1.2.1.2.2.1.9.449|67|11437 +1.3.6.1.2.1.2.2.1.9.450|67|11438 +1.3.6.1.2.1.2.2.1.9.451|67|11438 +1.3.6.1.2.1.2.2.1.9.452|67|11438 +1.3.6.1.2.1.2.2.1.9.453|67|11439 +1.3.6.1.2.1.2.2.1.9.454|67|11439 +1.3.6.1.2.1.2.2.1.9.455|67|11440 +1.3.6.1.2.1.2.2.1.9.456|67|11440 +1.3.6.1.2.1.2.2.1.9.457|67|11406 +1.3.6.1.2.1.2.2.1.9.462|67|11406 +1.3.6.1.2.1.2.2.1.9.464|67|9669 +1.3.6.1.2.1.2.2.1.9.465|67|9669 +1.3.6.1.2.1.2.2.1.9.467|67|11330 +1.3.6.1.2.1.2.2.1.9.468|67|11406 +1.3.6.1.2.1.2.2.1.9.474|67|11410 +1.3.6.1.2.1.2.2.1.9.475|67|11407 +1.3.6.1.2.1.2.2.1.9.476|67|11410 +1.3.6.1.2.1.2.2.1.9.477|67|9690 +1.3.6.1.2.1.2.2.1.9.478|67|11410 +1.3.6.1.2.1.2.2.1.9.487|67|28956 +1.3.6.1.2.1.2.2.1.9.489|67|11411 +1.3.6.1.2.1.2.2.1.9.490|67|11411 +1.3.6.1.2.1.2.2.1.9.493|67|11412 +1.3.6.1.2.1.2.2.1.9.494|67|9703 +1.3.6.1.2.1.2.2.1.9.495|67|9704 +1.3.6.1.2.1.2.2.1.9.496|67|9627 +1.3.6.1.2.1.2.2.1.9.497|67|238356368 +1.3.6.1.2.1.2.2.1.9.502|67|11442 +1.3.6.1.2.1.2.2.1.9.503|67|11443 +1.3.6.1.2.1.2.2.1.9.504|67|11444 +1.3.6.1.2.1.2.2.1.9.505|67|11444 +1.3.6.1.2.1.2.2.1.9.506|67|15012 +1.3.6.1.2.1.2.2.1.9.509|67|15012 +1.3.6.1.2.1.2.2.1.9.510|67|11444 +1.3.6.1.2.1.2.2.1.9.511|67|11445 +1.3.6.1.2.1.2.2.1.9.513|67|11445 +1.3.6.1.2.1.2.2.1.9.514|67|9704 +1.3.6.1.2.1.2.2.1.9.515|67|9704 +1.3.6.1.2.1.2.2.1.9.516|67|11408 +1.3.6.1.2.1.2.2.1.9.517|67|11446 +1.3.6.1.2.1.2.2.1.9.518|67|9732 +1.3.6.1.2.1.2.2.1.9.519|67|3401 +1.3.6.1.2.1.2.2.1.9.520|67|9745 +1.3.6.1.2.1.2.2.1.9.523|67|11951 +1.3.6.1.2.1.2.2.1.9.524|67|11951 +1.3.6.1.2.1.2.2.1.9.525|67|11446 +1.3.6.1.2.1.2.2.1.9.526|67|11456 +1.3.6.1.2.1.2.2.1.9.527|67|11456 +1.3.6.1.2.1.2.2.1.9.528|67|11456 +1.3.6.1.2.1.2.2.1.9.529|67|11457 +1.3.6.1.2.1.2.2.1.9.530|67|11457 +1.3.6.1.2.1.2.2.1.9.531|67|11458 +1.3.6.1.2.1.2.2.1.9.532|67|11458 +1.3.6.1.2.1.2.2.1.9.533|67|11458 +1.3.6.1.2.1.2.2.1.9.534|67|11459 +1.3.6.1.2.1.2.2.1.9.535|67|15013 +1.3.6.1.2.1.2.2.1.9.536|67|15013 +1.3.6.1.2.1.2.2.1.9.538|67|15014 +1.3.6.1.2.1.2.2.1.9.540|67|11460 +1.3.6.1.2.1.2.2.1.9.541|67|11291 +1.3.6.1.2.1.2.2.1.9.542|67|15017 +1.3.6.1.2.1.2.2.1.9.543|67|15017 +1.3.6.1.2.1.2.2.1.9.544|67|15017 +1.3.6.1.2.1.2.2.1.9.545|67|11479 +1.3.6.1.2.1.2.2.1.9.546|67|11483 +1.3.6.1.2.1.2.2.1.9.547|67|29013 +1.3.6.1.2.1.2.2.1.9.548|67|4100 +1.3.6.1.2.1.2.2.1.9.549|67|4107 +1.3.6.1.2.1.2.2.1.9.550|67|28956 +1.3.6.1.2.1.2.2.1.9.551|67|4126 +1.3.6.1.2.1.2.2.1.9.552|67|4126 +1.3.6.1.2.1.2.2.1.9.553|67|4126 +1.3.6.1.2.1.2.2.1.9.554|67|4126 +1.3.6.1.2.1.2.2.1.9.555|67|912496202 +1.3.6.1.2.1.2.2.1.9.556|67|20662 +1.3.6.1.2.1.2.2.1.9.557|67|20897 +1.3.6.1.2.1.2.2.1.9.558|67|20898 +1.3.6.1.2.1.2.2.1.9.559|67|542392891 +1.3.6.1.2.1.2.2.1.9.560|67|534162723 +1.3.6.1.2.1.2.2.1.9.561|67|2086174215 +1.3.6.1.2.1.2.2.1.9.562|67|4261 +1.3.6.1.2.1.2.2.1.9.563|67|727936810 +1.3.6.1.2.1.2.2.1.9.564|67|20198 +1.3.6.1.2.1.2.2.1.9.565|67|912025633 +1.3.6.1.2.1.2.2.1.9.566|67|727936758 +1.3.6.1.2.1.2.2.1.9.567|67|727936758 +1.3.6.1.2.1.2.2.1.9.568|67|727936759 +1.3.6.1.2.1.2.2.1.9.569|67|20248 +1.3.6.1.2.1.2.2.1.9.570|67|727937083 +1.3.6.1.2.1.2.2.1.9.571|67|2086602078 +1.3.6.1.2.1.2.2.1.9.572|67|20277 +1.3.6.1.2.1.2.2.1.9.573|67|4517 +1.3.6.1.2.1.2.2.1.9.574|67|20287 +1.3.6.1.2.1.2.2.1.9.575|67|1863030450 +1.3.6.1.2.1.2.2.1.9.576|67|20307 +1.3.6.1.2.1.2.2.1.9.577|67|553794416 +1.3.6.1.2.1.2.2.1.9.578|67|20675 +1.3.6.1.2.1.2.2.1.9.579|67|354031232 +1.3.6.1.2.1.2.2.1.9.580|67|237438150 +1.3.6.1.2.1.2.2.1.9.581|67|237449095 +1.3.6.1.2.1.2.2.1.9.582|67|21217 +1.3.6.1.2.1.2.2.1.9.583|67|2086310950 +1.3.6.1.2.1.2.2.1.9.584|67|21014 +1.3.6.1.2.1.2.2.1.9.585|67|632508578 +1.3.6.1.2.1.2.2.1.9.586|67|2086606291 +1.3.6.1.2.1.2.2.1.9.587|67|2086312104 +1.3.6.1.2.1.2.2.1.9.588|67|21418 +1.3.6.1.2.1.2.2.1.9.589|67|169494287 +1.3.6.1.2.1.2.2.1.9.590|67|21248 +1.3.6.1.2.1.2.2.1.9.591|67|354068952 +1.3.6.1.2.1.2.2.1.9.592|67|4825 +1.3.6.1.2.1.2.2.1.9.593|67|20462 +1.3.6.1.2.1.2.2.1.9.594|67|20472 +1.3.6.1.2.1.2.2.1.9.595|67|2086300135 +1.3.6.1.2.1.2.2.1.9.596|67|20496 +1.3.6.1.2.1.2.2.1.9.597|67|4904 +1.3.6.1.2.1.2.2.1.9.598|67|4914 +1.3.6.1.2.1.2.2.1.9.599|67|4932 +1.3.6.1.2.1.2.2.1.9.600|67|2086606504 +1.3.6.1.2.1.2.2.1.9.601|67|21056 +1.3.6.1.2.1.2.2.1.9.602|67|4981 +1.3.6.1.2.1.2.2.1.9.603|67|2086597875 +1.3.6.1.2.1.2.2.1.9.604|67|523114853 +1.3.6.1.2.1.2.2.1.9.605|67|25662 +1.3.6.1.2.1.2.2.1.9.606|67|25689 +1.3.6.1.2.1.2.2.1.9.607|67|25716 +1.3.6.1.2.1.2.2.1.9.608|67|25730 +1.3.6.1.2.1.2.2.1.9.609|67|25742 +1.3.6.1.2.1.2.2.1.9.610|67|26586 +1.3.6.1.2.1.2.2.1.9.611|67|25766 +1.3.6.1.2.1.2.2.1.9.612|67|26586 +1.3.6.1.2.1.2.2.1.9.613|67|26586 +1.3.6.1.2.1.2.2.1.9.614|67|26671 +1.3.6.1.2.1.2.2.1.9.615|67|1268758846 +1.3.6.1.2.1.2.2.1.9.616|67|2086623546 +1.3.6.1.2.1.2.2.1.9.617|67|26691 +1.3.6.1.2.1.2.2.1.9.618|67|2086599268 +1.3.6.1.2.1.2.2.1.9.619|67|26691 +1.3.6.1.2.1.2.2.1.9.620|67|2086537747 +1.3.6.1.2.1.2.2.1.9.621|67|25986 +1.3.6.1.2.1.2.2.1.9.622|67|2086589477 +1.3.6.1.2.1.2.2.1.9.623|67|26005 +1.3.6.1.2.1.2.2.1.9.624|67|354059720 +1.3.6.1.2.1.2.2.1.9.625|67|26046 +1.3.6.1.2.1.2.2.1.9.626|67|26820 +1.3.6.1.2.1.2.2.1.9.627|67|2086314752 +1.3.6.1.2.1.2.2.1.9.628|67|26085 +1.3.6.1.2.1.2.2.1.9.629|67|2086610115 +1.3.6.1.2.1.2.2.1.9.630|67|26117 +1.3.6.1.2.1.2.2.1.9.631|67|26128 +1.3.6.1.2.1.2.2.1.9.632|67|2086302680 +1.3.6.1.2.1.2.2.1.9.633|67|238356370 +1.3.6.1.2.1.2.2.1.9.634|67|1042094134 +1.3.6.1.2.1.2.2.1.9.635|67|26235 +1.3.6.1.2.1.2.2.1.9.636|67|603615702 +1.3.6.1.2.1.2.2.1.9.637|67|26268 +1.3.6.1.2.1.2.2.1.9.638|67|27388 +1.3.6.1.2.1.2.2.1.9.639|67|26355 +1.3.6.1.2.1.2.2.1.9.640|67|26365 +1.3.6.1.2.1.2.2.1.9.641|67|480140248 +1.3.6.1.2.1.2.2.1.9.642|67|27169 +1.3.6.1.2.1.2.2.1.9.643|67|26456 +1.3.6.1.2.1.2.2.1.9.644|67|27221 +1.3.6.1.2.1.2.2.1.9.645|67|5776 +1.3.6.1.2.1.2.2.1.9.646|67|5791 +1.3.6.1.2.1.2.2.1.9.647|67|27487 +1.3.6.1.2.1.2.2.1.9.648|67|5825 +1.3.6.1.2.1.2.2.1.9.649|67|169494237 +1.3.6.1.2.1.2.2.1.9.650|67|5868 +1.3.6.1.2.1.2.2.1.9.651|67|1442744139 +1.3.6.1.2.1.2.2.1.9.652|67|5897 +1.3.6.1.2.1.2.2.1.9.653|67|14075 +1.3.6.1.2.1.2.2.1.9.654|67|5897 +1.3.6.1.2.1.2.2.1.9.655|67|5897 +1.3.6.1.2.1.2.2.1.9.656|67|169494459 +1.3.6.1.2.1.2.2.1.9.657|67|169494438 +1.3.6.1.2.1.2.2.1.9.658|67|23991 +1.3.6.1.2.1.2.2.1.9.659|67|2086611566 +1.3.6.1.2.1.2.2.1.9.660|67|169494485 +1.3.6.1.2.1.2.2.1.9.661|67|169494212 +1.3.6.1.2.1.2.2.1.9.662|67|25068 +1.3.6.1.2.1.2.2.1.9.663|67|2091603406 +1.3.6.1.2.1.2.2.1.9.664|67|169494568 +1.3.6.1.2.1.2.2.1.9.665|67|169494542 +1.3.6.1.2.1.2.2.1.9.666|67|25246 +1.3.6.1.2.1.2.2.1.9.667|67|24979 +1.3.6.1.2.1.2.2.1.9.668|67|24318 +1.3.6.1.2.1.2.2.1.9.669|67|2086316497 +1.3.6.1.2.1.2.2.1.9.670|67|25367 +1.3.6.1.2.1.2.2.1.9.671|67|24318 +1.3.6.1.2.1.2.2.1.9.672|67|24332 +1.3.6.1.2.1.2.2.1.9.673|67|24355 +1.3.6.1.2.1.2.2.1.9.674|67|1500676320 +1.3.6.1.2.1.2.2.1.9.675|67|24402 +1.3.6.1.2.1.2.2.1.9.676|67|6261 +1.3.6.1.2.1.2.2.1.9.677|67|8531227 +1.3.6.1.2.1.2.2.1.9.678|67|24512 +1.3.6.1.2.1.2.2.1.9.679|67|1750475603 +1.3.6.1.2.1.2.2.1.9.680|67|25531 +1.3.6.1.2.1.2.2.1.9.681|67|24556 +1.3.6.1.2.1.2.2.1.9.682|67|6345 +1.3.6.1.2.1.2.2.1.9.683|67|24566 +1.3.6.1.2.1.2.2.1.9.684|67|24575 +1.3.6.1.2.1.2.2.1.9.685|67|25561 +1.3.6.1.2.1.2.2.1.9.686|67|2086601215 +1.3.6.1.2.1.2.2.1.9.687|67|2086302114 +1.3.6.1.2.1.2.2.1.9.688|67|2086599971 +1.3.6.1.2.1.2.2.1.9.689|67|2086301818 +1.3.6.1.2.1.2.2.1.9.690|67|2086310788 +1.3.6.1.2.1.2.2.1.9.691|67|2086605470 +1.3.6.1.2.1.2.2.1.9.692|67|24682 +1.3.6.1.2.1.2.2.1.9.693|67|24696 +1.3.6.1.2.1.2.2.1.9.694|67|6651 +1.3.6.1.2.1.2.2.1.9.695|67|2054386518 +1.3.6.1.2.1.2.2.1.9.696|67|25728 +1.3.6.1.2.1.2.2.1.9.697|67|25728 +1.3.6.1.2.1.2.2.1.9.698|67|24742 +1.3.6.1.2.1.2.2.1.9.699|67|24752 +1.3.6.1.2.1.2.2.1.9.700|67|24764 +1.3.6.1.2.1.2.2.1.9.701|67|6934 +1.3.6.1.2.1.2.2.1.9.702|67|6980 +1.3.6.1.2.1.2.2.1.9.703|67|7026 +1.3.6.1.2.1.2.2.1.9.704|67|23301 +1.3.6.1.2.1.2.2.1.9.705|67|22976 +1.3.6.1.2.1.2.2.1.9.706|67|22976 +1.3.6.1.2.1.2.2.1.9.707|67|2086301327 +1.3.6.1.2.1.2.2.1.9.708|67|22977 +1.3.6.1.2.1.2.2.1.9.709|67|22996 +1.3.6.1.2.1.2.2.1.9.710|67|22998 +1.3.6.1.2.1.2.2.1.9.711|67|21978 +1.3.6.1.2.1.2.2.1.9.712|67|23037 +1.3.6.1.2.1.2.2.1.9.713|67|23045 +1.3.6.1.2.1.2.2.1.9.714|67|23048 +1.3.6.1.2.1.2.2.1.9.715|67|7505 +1.3.6.1.2.1.2.2.1.9.716|67|7541 +1.3.6.1.2.1.2.2.1.9.717|67|2086604254 +1.3.6.1.2.1.2.2.1.9.718|67|2086308402 +1.3.6.1.2.1.2.2.1.9.719|67|22612 +1.3.6.1.2.1.2.2.1.9.720|67|22048 +1.3.6.1.2.1.2.2.1.9.721|67|2086604821 +1.3.6.1.2.1.2.2.1.9.722|67|23096 +1.3.6.1.2.1.2.2.1.9.723|67|618785344 +1.3.6.1.2.1.2.2.1.9.724|67|7131275 +1.3.6.1.2.1.2.2.1.9.725|67|2086309120 +1.3.6.1.2.1.2.2.1.9.726|67|7837 +1.3.6.1.2.1.2.2.1.9.727|67|250608525 +1.3.6.1.2.1.2.2.1.9.728|67|7911 +1.3.6.1.2.1.2.2.1.9.729|67|23100 +1.3.6.1.2.1.2.2.1.9.730|67|23123 +1.3.6.1.2.1.2.2.1.9.731|67|2086622242 +1.3.6.1.2.1.2.2.1.9.732|67|2086622242 +1.3.6.1.2.1.2.2.1.9.733|67|2086622873 +1.3.6.1.2.1.2.2.1.9.734|67|432339084 +1.3.6.1.2.1.2.2.1.9.735|67|2086622885 +1.3.6.1.2.1.2.2.1.9.736|67|2086783412 +1.3.6.1.2.1.2.2.1.9.737|67|2086783333 +1.3.6.1.2.1.2.2.1.9.738|67|8280 +1.3.6.1.2.1.2.2.1.9.739|67|2086283515 +1.3.6.1.2.1.2.2.1.9.740|67|2086749216 +1.3.6.1.2.1.2.2.1.9.741|67|22250 +1.3.6.1.2.1.2.2.1.9.742|67|2086749716 +1.3.6.1.2.1.2.2.1.9.743|67|22289 +1.3.6.1.2.1.2.2.1.9.744|67|8517 +1.3.6.1.2.1.2.2.1.9.745|67|22998 +1.3.6.1.2.1.2.2.1.9.746|67|8590 +1.3.6.1.2.1.2.2.1.9.747|67|8632 +1.3.6.1.2.1.2.2.1.9.748|67|2086283546 +1.3.6.1.2.1.2.2.1.9.749|67|2086316681 +1.3.6.1.2.1.2.2.1.9.750|67|23141 +1.3.6.1.2.1.2.2.1.9.751|67|23366 +1.3.6.1.2.1.2.2.1.9.768|67|11484 +1.3.6.1.2.1.2.2.1.9.769|67|15011 +1.3.6.1.2.1.2.2.1.9.770|67|15017 +1.3.6.1.2.1.2.2.1.9.771|67|11591 +1.3.6.1.2.1.2.2.1.9.772|67|11612 +1.3.6.1.2.1.2.2.1.9.773|67|11633 +1.3.6.1.2.1.2.2.1.9.774|67|15017 +1.3.6.1.2.1.2.2.1.9.775|67|15017 +1.3.6.1.2.1.2.2.1.9.776|67|15013 +1.3.6.1.2.1.2.2.1.9.777|67|11484 +1.3.6.1.2.1.2.2.1.9.778|67|11484 +1.3.6.1.2.1.2.2.1.9.779|67|11485 +1.3.6.1.2.1.2.2.1.9.780|67|11440 +1.3.6.1.2.1.2.2.1.9.781|67|11441 +1.3.6.1.2.1.2.2.1.9.782|67|11926 +1.3.6.1.2.1.2.2.1.9.783|67|11442 +1.3.6.1.2.1.2.2.1.9.784|67|11654 +1.3.6.1.2.1.2.2.1.9.785|67|15013 +1.3.6.1.2.1.2.2.1.9.786|67|11506 +1.3.6.1.2.1.2.2.1.9.787|67|11549 +1.3.6.1.2.1.2.2.1.9.788|67|11570 +1.3.6.1.2.1.2.2.1.9.789|67|11674 +1.3.6.1.2.1.2.2.1.9.790|67|11714 +1.3.6.1.2.1.2.2.1.9.791|67|11714 +1.3.6.1.2.1.2.2.1.9.792|67|15012 +1.3.6.1.2.1.2.2.1.9.793|67|15012 +1.3.6.1.2.1.2.2.1.9.794|67|15017 +1.3.6.1.2.1.2.2.1.9.795|67|11715 +1.3.6.1.2.1.2.2.1.9.796|67|11715 +1.3.6.1.2.1.2.2.1.9.797|67|11716 +1.3.6.1.2.1.2.2.1.9.798|67|11717 +1.3.6.1.2.1.2.2.1.9.799|67|11717 +1.3.6.1.2.1.2.2.1.9.800|67|11716 +1.3.6.1.2.1.2.2.1.9.801|67|15012 +1.3.6.1.2.1.2.2.1.9.802|67|15017 +1.3.6.1.2.1.2.2.1.9.803|67|15017 +1.3.6.1.2.1.2.2.1.9.804|67|15017 +1.3.6.1.2.1.2.2.1.9.805|67|15017 +1.3.6.1.2.1.2.2.1.9.806|67|15017 +1.3.6.1.2.1.2.2.1.9.807|67|15017 +1.3.6.1.2.1.2.2.1.9.808|67|11718 +1.3.6.1.2.1.2.2.1.9.809|67|11718 +1.3.6.1.2.1.2.2.1.9.810|67|15012 +1.3.6.1.2.1.2.2.1.9.811|67|15012 +1.3.6.1.2.1.2.2.1.9.812|67|11718 +1.3.6.1.2.1.2.2.1.9.813|67|11718 +1.3.6.1.2.1.2.2.1.9.814|67|15017 +1.3.6.1.2.1.2.2.1.9.815|67|15017 +1.3.6.1.2.1.2.2.1.9.816|67|11718 +1.3.6.1.2.1.2.2.1.9.817|67|11719 +1.3.6.1.2.1.2.2.1.9.818|67|15017 +1.3.6.1.2.1.2.2.1.9.819|67|11296 +1.3.6.1.2.1.2.2.1.9.820|67|11719 +1.3.6.1.2.1.2.2.1.9.821|67|11721 +1.3.6.1.2.1.2.2.1.9.822|67|11721 +1.3.6.1.2.1.2.2.1.9.823|67|11721 +1.3.6.1.2.1.2.2.1.9.824|67|11927 +1.3.6.1.2.1.2.2.1.9.825|67|11786 +1.3.6.1.2.1.2.2.1.9.826|67|11790 +1.3.6.1.2.1.2.2.1.9.827|67|11791 +1.3.6.1.2.1.2.2.1.9.828|67|11813 +1.3.6.1.2.1.2.2.1.9.829|67|11814 +1.3.6.1.2.1.2.2.1.9.830|67|11830 +1.3.6.1.2.1.2.2.1.9.831|67|11792 +1.3.6.1.2.1.2.2.1.9.832|67|11812 +1.3.6.1.2.1.2.2.1.9.833|67|11791 +1.3.6.1.2.1.2.2.1.9.834|67|15018 +1.3.6.1.2.1.2.2.1.9.835|67|15018 +1.3.6.1.2.1.2.2.1.9.836|67|15018 +1.3.6.1.2.1.2.2.1.9.837|67|11832 +1.3.6.1.2.1.2.2.1.9.838|67|15018 +1.3.6.1.2.1.2.2.1.9.839|67|11380 +1.3.6.1.2.1.2.2.1.9.840|67|11381 +1.3.6.1.2.1.2.2.1.9.841|67|11832 +1.3.6.1.2.1.2.2.1.9.842|67|11854 +1.3.6.1.2.1.2.2.1.9.843|67|11856 +1.3.6.1.2.1.2.2.1.9.844|67|11382 +1.3.6.1.2.1.2.2.1.9.845|67|11383 +1.3.6.1.2.1.2.2.1.9.846|67|11857 +1.3.6.1.2.1.2.2.1.9.847|67|11856 +1.3.6.1.2.1.2.2.1.9.848|67|15018 +1.3.6.1.2.1.2.2.1.9.849|67|15019 +1.3.6.1.2.1.2.2.1.9.850|67|15019 +1.3.6.1.2.1.2.2.1.9.851|67|11857 +1.3.6.1.2.1.2.2.1.9.852|67|11858 +1.3.6.1.2.1.2.2.1.9.853|67|11903 +1.3.6.1.2.1.2.2.1.9.854|67|15019 +1.3.6.1.2.1.2.2.1.9.855|67|11412 +1.3.6.1.2.1.2.2.1.9.856|67|11882 +1.3.6.1.2.1.2.2.1.9.857|67|11902 +1.3.6.1.2.1.2.2.1.9.858|67|11902 +1.3.6.1.2.1.2.2.1.9.859|67|11902 +1.3.6.1.2.1.2.2.1.9.864|67|11880 +1.3.6.1.2.1.2.2.1.9.868|67|11385 +1.3.6.1.2.1.2.2.1.9.869|67|11924 +1.3.6.1.2.1.2.2.1.9.870|67|11925 +1.3.6.1.2.1.2.2.1.9.871|67|15123 +1.3.6.1.2.1.2.2.1.9.872|67|15124 +1.3.6.1.2.1.2.2.1.9.873|67|11926 +1.3.6.1.2.1.2.2.1.9.874|67|15123 +1.3.6.1.2.1.2.2.1.9.875|67|15123 +1.3.6.1.2.1.2.2.1.9.876|67|15122 +1.3.6.1.2.1.2.2.1.9.877|67|15123 +1.3.6.1.2.1.2.2.1.9.878|67|11880 +1.3.6.1.2.1.2.2.1.9.879|67|11880 +1.3.6.1.2.1.2.2.1.9.880|67|11881 +1.3.6.1.2.1.2.2.1.9.881|67|11881 +1.3.6.1.2.1.2.2.1.9.882|67|11926 +1.3.6.1.2.1.2.2.1.9.883|67|15124 +1.3.6.1.2.1.2.2.1.9.884|67|11925 +1.3.6.1.2.1.2.2.1.9.885|67|65216368 +1.3.6.1.2.1.2.2.1.9.886|67|11924 +1.3.6.1.2.1.2.2.1.9.887|67|11924 +1.3.6.1.2.1.2.2.1.9.888|67|11972 +1.3.6.1.2.1.2.2.1.9.889|67|11972 +1.3.6.1.2.1.2.2.1.9.890|67|11972 +1.3.6.1.2.1.2.2.1.9.891|67|58088762 +1.3.6.1.2.1.2.2.1.9.892|67|58088866 +1.3.6.1.2.1.2.2.1.9.893|67|58088955 +1.3.6.1.2.1.2.2.1.9.894|67|58089048 +1.3.6.1.2.1.2.2.1.9.895|67|58089143 +1.3.6.1.2.1.2.2.1.9.896|67|58089240 +1.3.6.1.2.1.2.2.1.9.897|67|58089331 +1.3.6.1.2.1.2.2.1.9.898|67|58089421 +1.3.6.1.2.1.2.2.1.9.899|67|102309394 +1.3.6.1.2.1.2.2.1.9.900|67|102316228 +1.3.6.1.2.1.2.2.1.9.901|67|102316424 +1.3.6.1.2.1.2.2.1.9.902|67|230743407 +1.3.6.1.2.1.2.2.1.9.903|67|230744352 +1.3.6.1.2.1.2.2.1.9.904|67|230745357 +1.3.6.1.2.1.2.2.1.9.905|67|230746466 +1.3.6.1.2.1.2.2.1.9.906|67|230753406 +1.3.6.1.2.1.2.2.1.9.907|67|230765664 +1.3.6.1.2.1.2.2.1.9.908|67|249349844 +1.3.6.1.2.1.2.2.1.9.909|67|230789812 +1.3.6.1.2.1.2.2.1.9.910|67|310130682 +1.3.6.1.2.1.2.2.1.9.911|67|310130871 +1.3.6.1.2.1.2.2.1.9.912|67|310130964 +1.3.6.1.2.1.2.2.1.9.913|67|723053232 +1.3.6.1.2.1.2.2.1.9.914|67|913778045 +1.3.6.1.2.1.2.2.1.9.915|67|1128245704 +1.3.6.1.2.1.2.2.1.9.916|67|1345565378 +1.3.6.1.2.1.2.2.1.9.917|67|1345565444 +1.3.6.1.2.1.2.2.1.9.918|67|1345567062 +1.3.6.1.2.1.2.2.1.9.919|67|1345572844 +1.3.6.1.2.1.2.2.1.9.920|67|1345576364 +1.3.6.1.2.1.2.2.1.9.921|67|1345579474 +1.3.6.1.2.1.2.2.1.9.922|67|1552221722 +1.3.6.1.2.1.2.2.1.9.923|67|1552221783 +1.3.6.1.2.1.2.2.1.9.924|67|1552223690 +1.3.6.1.2.1.2.2.1.9.925|67|1552228118 +1.3.6.1.2.1.2.2.1.9.926|67|1552231830 +1.3.6.1.2.1.2.2.1.9.927|67|1552234623 +1.3.6.1.2.1.2.2.1.9.928|67|1820327987 +1.3.6.1.2.1.2.2.1.9.929|67|1820328045 +1.3.6.1.2.1.2.2.1.9.930|67|1820328100 +1.3.6.1.2.1.2.2.1.9.931|67|1820328154 +1.3.6.1.2.1.2.2.1.9.932|67|1820328213 +1.3.6.1.2.1.2.2.1.9.933|67|1820328270 +1.3.6.1.2.1.2.2.1.9.934|67|1820328331 +1.3.6.1.2.1.2.2.1.9.935|67|1820328426 +1.3.6.1.2.1.2.2.1.9.936|67|1820328487 +1.3.6.1.2.1.2.2.1.9.937|67|1820330286 +1.3.6.1.2.1.2.2.1.9.938|67|1820665028 +1.3.6.1.2.1.2.2.1.9.939|67|1820665171 +1.3.6.1.2.1.2.2.1.9.940|67|1820665600 +1.3.6.1.2.1.2.2.1.9.941|67|1820665745 +1.3.6.1.2.1.2.2.1.9.942|67|1820651422 +1.3.6.1.2.1.2.2.1.9.943|67|1820652340 +1.3.6.1.2.1.2.2.1.9.944|67|1820653361 +1.3.6.1.2.1.2.2.1.9.945|67|1820663268 +1.3.6.1.2.1.2.2.1.9.946|67|1872842946 +1.3.6.1.2.1.2.2.1.9.947|67|1881067914 +1.3.6.1.2.1.2.2.1.9.948|67|1882465778 +1.3.6.1.2.1.2.2.1.9.949|67|2035903762 +1.3.6.1.2.1.2.2.1.13.251|65|0 +1.3.6.1.2.1.2.2.1.13.252|65|93 +1.3.6.1.2.1.2.2.1.13.253|65|0 +1.3.6.1.2.1.2.2.1.13.254|65|0 +1.3.6.1.2.1.2.2.1.13.255|65|0 +1.3.6.1.2.1.2.2.1.13.258|65|0 +1.3.6.1.2.1.2.2.1.13.259|65|0 +1.3.6.1.2.1.2.2.1.13.270|65|0 +1.3.6.1.2.1.2.2.1.13.273|65|0 +1.3.6.1.2.1.2.2.1.13.274|65|0 +1.3.6.1.2.1.2.2.1.13.277|65|0 +1.3.6.1.2.1.2.2.1.13.278|65|0 +1.3.6.1.2.1.2.2.1.13.280|65|0 +1.3.6.1.2.1.2.2.1.13.281|65|0 +1.3.6.1.2.1.2.2.1.13.282|65|0 +1.3.6.1.2.1.2.2.1.13.283|65|0 +1.3.6.1.2.1.2.2.1.13.284|65|0 +1.3.6.1.2.1.2.2.1.13.285|65|0 +1.3.6.1.2.1.2.2.1.13.286|65|0 +1.3.6.1.2.1.2.2.1.13.287|65|0 +1.3.6.1.2.1.2.2.1.13.288|65|0 +1.3.6.1.2.1.2.2.1.13.395|65|0 +1.3.6.1.2.1.2.2.1.13.396|65|0 +1.3.6.1.2.1.2.2.1.13.398|65|1476190 +1.3.6.1.2.1.2.2.1.13.399|65|1258482 +1.3.6.1.2.1.2.2.1.13.415|65|0 +1.3.6.1.2.1.2.2.1.13.417|65|54566 +1.3.6.1.2.1.2.2.1.13.418|65|28708 +1.3.6.1.2.1.2.2.1.13.464|65|0 +1.3.6.1.2.1.2.2.1.13.465|65|0 +1.3.6.1.2.1.2.2.1.13.477|65|0 +1.3.6.1.2.1.2.2.1.13.487|65|0 +1.3.6.1.2.1.2.2.1.13.494|65|0 +1.3.6.1.2.1.2.2.1.13.495|65|0 +1.3.6.1.2.1.2.2.1.13.496|65|0 +1.3.6.1.2.1.2.2.1.13.497|65|0 +1.3.6.1.2.1.2.2.1.13.506|65|0 +1.3.6.1.2.1.2.2.1.13.509|65|0 +1.3.6.1.2.1.2.2.1.13.514|65|0 +1.3.6.1.2.1.2.2.1.13.515|65|0 +1.3.6.1.2.1.2.2.1.13.518|65|0 +1.3.6.1.2.1.2.2.1.13.519|65|0 +1.3.6.1.2.1.2.2.1.13.520|65|0 +1.3.6.1.2.1.2.2.1.13.535|65|0 +1.3.6.1.2.1.2.2.1.13.536|65|0 +1.3.6.1.2.1.2.2.1.13.538|65|0 +1.3.6.1.2.1.2.2.1.13.542|65|0 +1.3.6.1.2.1.2.2.1.13.543|65|0 +1.3.6.1.2.1.2.2.1.13.544|65|0 +1.3.6.1.2.1.2.2.1.13.547|65|0 +1.3.6.1.2.1.2.2.1.13.548|65|0 +1.3.6.1.2.1.2.2.1.13.549|65|0 +1.3.6.1.2.1.2.2.1.13.550|65|0 +1.3.6.1.2.1.2.2.1.13.551|65|0 +1.3.6.1.2.1.2.2.1.13.552|65|0 +1.3.6.1.2.1.2.2.1.13.553|65|0 +1.3.6.1.2.1.2.2.1.13.554|65|0 +1.3.6.1.2.1.2.2.1.13.555|65|27 +1.3.6.1.2.1.2.2.1.13.556|65|1 +1.3.6.1.2.1.2.2.1.13.557|65|0 +1.3.6.1.2.1.2.2.1.13.558|65|0 +1.3.6.1.2.1.2.2.1.13.559|65|0 +1.3.6.1.2.1.2.2.1.13.560|65|0 +1.3.6.1.2.1.2.2.1.13.561|65|0 +1.3.6.1.2.1.2.2.1.13.562|65|0 +1.3.6.1.2.1.2.2.1.13.563|65|10 +1.3.6.1.2.1.2.2.1.13.564|65|0 +1.3.6.1.2.1.2.2.1.13.565|65|0 +1.3.6.1.2.1.2.2.1.13.566|65|0 +1.3.6.1.2.1.2.2.1.13.567|65|0 +1.3.6.1.2.1.2.2.1.13.568|65|0 +1.3.6.1.2.1.2.2.1.13.569|65|0 +1.3.6.1.2.1.2.2.1.13.570|65|9 +1.3.6.1.2.1.2.2.1.13.571|65|0 +1.3.6.1.2.1.2.2.1.13.572|65|0 +1.3.6.1.2.1.2.2.1.13.573|65|0 +1.3.6.1.2.1.2.2.1.13.574|65|0 +1.3.6.1.2.1.2.2.1.13.575|65|119 +1.3.6.1.2.1.2.2.1.13.576|65|0 +1.3.6.1.2.1.2.2.1.13.577|65|0 +1.3.6.1.2.1.2.2.1.13.578|65|0 +1.3.6.1.2.1.2.2.1.13.579|65|0 +1.3.6.1.2.1.2.2.1.13.580|65|0 +1.3.6.1.2.1.2.2.1.13.581|65|0 +1.3.6.1.2.1.2.2.1.13.582|65|0 +1.3.6.1.2.1.2.2.1.13.583|65|0 +1.3.6.1.2.1.2.2.1.13.584|65|0 +1.3.6.1.2.1.2.2.1.13.585|65|0 +1.3.6.1.2.1.2.2.1.13.586|65|0 +1.3.6.1.2.1.2.2.1.13.587|65|0 +1.3.6.1.2.1.2.2.1.13.588|65|0 +1.3.6.1.2.1.2.2.1.13.589|65|9 +1.3.6.1.2.1.2.2.1.13.590|65|0 +1.3.6.1.2.1.2.2.1.13.591|65|0 +1.3.6.1.2.1.2.2.1.13.592|65|0 +1.3.6.1.2.1.2.2.1.13.593|65|0 +1.3.6.1.2.1.2.2.1.13.594|65|0 +1.3.6.1.2.1.2.2.1.13.595|65|0 +1.3.6.1.2.1.2.2.1.13.596|65|0 +1.3.6.1.2.1.2.2.1.13.597|65|0 +1.3.6.1.2.1.2.2.1.13.598|65|0 +1.3.6.1.2.1.2.2.1.13.599|65|0 +1.3.6.1.2.1.2.2.1.13.600|65|0 +1.3.6.1.2.1.2.2.1.13.601|65|7 +1.3.6.1.2.1.2.2.1.13.602|65|0 +1.3.6.1.2.1.2.2.1.13.603|65|0 +1.3.6.1.2.1.2.2.1.13.604|65|0 +1.3.6.1.2.1.2.2.1.13.605|65|0 +1.3.6.1.2.1.2.2.1.13.606|65|0 +1.3.6.1.2.1.2.2.1.13.607|65|0 +1.3.6.1.2.1.2.2.1.13.608|65|0 +1.3.6.1.2.1.2.2.1.13.609|65|0 +1.3.6.1.2.1.2.2.1.13.610|65|0 +1.3.6.1.2.1.2.2.1.13.611|65|0 +1.3.6.1.2.1.2.2.1.13.612|65|0 +1.3.6.1.2.1.2.2.1.13.613|65|0 +1.3.6.1.2.1.2.2.1.13.614|65|0 +1.3.6.1.2.1.2.2.1.13.615|65|0 +1.3.6.1.2.1.2.2.1.13.616|65|0 +1.3.6.1.2.1.2.2.1.13.617|65|0 +1.3.6.1.2.1.2.2.1.13.618|65|0 +1.3.6.1.2.1.2.2.1.13.619|65|0 +1.3.6.1.2.1.2.2.1.13.620|65|1 +1.3.6.1.2.1.2.2.1.13.621|65|0 +1.3.6.1.2.1.2.2.1.13.622|65|209 +1.3.6.1.2.1.2.2.1.13.623|65|0 +1.3.6.1.2.1.2.2.1.13.624|65|0 +1.3.6.1.2.1.2.2.1.13.625|65|0 +1.3.6.1.2.1.2.2.1.13.626|65|0 +1.3.6.1.2.1.2.2.1.13.627|65|0 +1.3.6.1.2.1.2.2.1.13.628|65|0 +1.3.6.1.2.1.2.2.1.13.629|65|0 +1.3.6.1.2.1.2.2.1.13.630|65|0 +1.3.6.1.2.1.2.2.1.13.631|65|0 +1.3.6.1.2.1.2.2.1.13.632|65|0 +1.3.6.1.2.1.2.2.1.13.633|65|0 +1.3.6.1.2.1.2.2.1.13.634|65|0 +1.3.6.1.2.1.2.2.1.13.635|65|0 +1.3.6.1.2.1.2.2.1.13.636|65|0 +1.3.6.1.2.1.2.2.1.13.637|65|0 +1.3.6.1.2.1.2.2.1.13.638|65|0 +1.3.6.1.2.1.2.2.1.13.639|65|0 +1.3.6.1.2.1.2.2.1.13.640|65|0 +1.3.6.1.2.1.2.2.1.13.641|65|0 +1.3.6.1.2.1.2.2.1.13.642|65|0 +1.3.6.1.2.1.2.2.1.13.643|65|0 +1.3.6.1.2.1.2.2.1.13.644|65|0 +1.3.6.1.2.1.2.2.1.13.645|65|0 +1.3.6.1.2.1.2.2.1.13.646|65|0 +1.3.6.1.2.1.2.2.1.13.647|65|0 +1.3.6.1.2.1.2.2.1.13.648|65|0 +1.3.6.1.2.1.2.2.1.13.649|65|0 +1.3.6.1.2.1.2.2.1.13.650|65|0 +1.3.6.1.2.1.2.2.1.13.651|65|0 +1.3.6.1.2.1.2.2.1.13.652|65|0 +1.3.6.1.2.1.2.2.1.13.653|65|0 +1.3.6.1.2.1.2.2.1.13.654|65|0 +1.3.6.1.2.1.2.2.1.13.655|65|0 +1.3.6.1.2.1.2.2.1.13.656|65|1 +1.3.6.1.2.1.2.2.1.13.657|65|0 +1.3.6.1.2.1.2.2.1.13.658|65|0 +1.3.6.1.2.1.2.2.1.13.659|65|0 +1.3.6.1.2.1.2.2.1.13.660|65|28 +1.3.6.1.2.1.2.2.1.13.661|65|0 +1.3.6.1.2.1.2.2.1.13.662|65|0 +1.3.6.1.2.1.2.2.1.13.663|65|0 +1.3.6.1.2.1.2.2.1.13.664|65|0 +1.3.6.1.2.1.2.2.1.13.665|65|0 +1.3.6.1.2.1.2.2.1.13.666|65|0 +1.3.6.1.2.1.2.2.1.13.667|65|0 +1.3.6.1.2.1.2.2.1.13.668|65|0 +1.3.6.1.2.1.2.2.1.13.669|65|0 +1.3.6.1.2.1.2.2.1.13.670|65|0 +1.3.6.1.2.1.2.2.1.13.671|65|0 +1.3.6.1.2.1.2.2.1.13.672|65|0 +1.3.6.1.2.1.2.2.1.13.673|65|0 +1.3.6.1.2.1.2.2.1.13.674|65|0 +1.3.6.1.2.1.2.2.1.13.675|65|0 +1.3.6.1.2.1.2.2.1.13.676|65|0 +1.3.6.1.2.1.2.2.1.13.677|65|0 +1.3.6.1.2.1.2.2.1.13.678|65|0 +1.3.6.1.2.1.2.2.1.13.679|65|0 +1.3.6.1.2.1.2.2.1.13.680|65|0 +1.3.6.1.2.1.2.2.1.13.681|65|0 +1.3.6.1.2.1.2.2.1.13.682|65|0 +1.3.6.1.2.1.2.2.1.13.683|65|0 +1.3.6.1.2.1.2.2.1.13.684|65|0 +1.3.6.1.2.1.2.2.1.13.685|65|0 +1.3.6.1.2.1.2.2.1.13.686|65|0 +1.3.6.1.2.1.2.2.1.13.687|65|0 +1.3.6.1.2.1.2.2.1.13.688|65|0 +1.3.6.1.2.1.2.2.1.13.689|65|0 +1.3.6.1.2.1.2.2.1.13.690|65|0 +1.3.6.1.2.1.2.2.1.13.691|65|0 +1.3.6.1.2.1.2.2.1.13.692|65|0 +1.3.6.1.2.1.2.2.1.13.693|65|0 +1.3.6.1.2.1.2.2.1.13.694|65|0 +1.3.6.1.2.1.2.2.1.13.695|65|44 +1.3.6.1.2.1.2.2.1.13.696|65|0 +1.3.6.1.2.1.2.2.1.13.697|65|0 +1.3.6.1.2.1.2.2.1.13.698|65|0 +1.3.6.1.2.1.2.2.1.13.699|65|0 +1.3.6.1.2.1.2.2.1.13.700|65|0 +1.3.6.1.2.1.2.2.1.13.701|65|0 +1.3.6.1.2.1.2.2.1.13.702|65|0 +1.3.6.1.2.1.2.2.1.13.703|65|0 +1.3.6.1.2.1.2.2.1.13.704|65|0 +1.3.6.1.2.1.2.2.1.13.705|65|0 +1.3.6.1.2.1.2.2.1.13.706|65|0 +1.3.6.1.2.1.2.2.1.13.707|65|0 +1.3.6.1.2.1.2.2.1.13.708|65|0 +1.3.6.1.2.1.2.2.1.13.709|65|0 +1.3.6.1.2.1.2.2.1.13.710|65|0 +1.3.6.1.2.1.2.2.1.13.711|65|0 +1.3.6.1.2.1.2.2.1.13.712|65|0 +1.3.6.1.2.1.2.2.1.13.713|65|0 +1.3.6.1.2.1.2.2.1.13.714|65|0 +1.3.6.1.2.1.2.2.1.13.715|65|0 +1.3.6.1.2.1.2.2.1.13.716|65|0 +1.3.6.1.2.1.2.2.1.13.717|65|0 +1.3.6.1.2.1.2.2.1.13.718|65|0 +1.3.6.1.2.1.2.2.1.13.719|65|0 +1.3.6.1.2.1.2.2.1.13.720|65|0 +1.3.6.1.2.1.2.2.1.13.721|65|0 +1.3.6.1.2.1.2.2.1.13.722|65|0 +1.3.6.1.2.1.2.2.1.13.723|65|0 +1.3.6.1.2.1.2.2.1.13.724|65|27 +1.3.6.1.2.1.2.2.1.13.725|65|0 +1.3.6.1.2.1.2.2.1.13.726|65|0 +1.3.6.1.2.1.2.2.1.13.727|65|0 +1.3.6.1.2.1.2.2.1.13.728|65|0 +1.3.6.1.2.1.2.2.1.13.729|65|0 +1.3.6.1.2.1.2.2.1.13.730|65|0 +1.3.6.1.2.1.2.2.1.13.731|65|0 +1.3.6.1.2.1.2.2.1.13.732|65|0 +1.3.6.1.2.1.2.2.1.13.733|65|0 +1.3.6.1.2.1.2.2.1.13.734|65|1 +1.3.6.1.2.1.2.2.1.13.735|65|0 +1.3.6.1.2.1.2.2.1.13.736|65|0 +1.3.6.1.2.1.2.2.1.13.737|65|0 +1.3.6.1.2.1.2.2.1.13.738|65|0 +1.3.6.1.2.1.2.2.1.13.739|65|0 +1.3.6.1.2.1.2.2.1.13.740|65|112 +1.3.6.1.2.1.2.2.1.13.741|65|0 +1.3.6.1.2.1.2.2.1.13.742|65|65 +1.3.6.1.2.1.2.2.1.13.743|65|0 +1.3.6.1.2.1.2.2.1.13.744|65|0 +1.3.6.1.2.1.2.2.1.13.745|65|0 +1.3.6.1.2.1.2.2.1.13.746|65|0 +1.3.6.1.2.1.2.2.1.13.747|65|0 +1.3.6.1.2.1.2.2.1.13.748|65|0 +1.3.6.1.2.1.2.2.1.13.749|65|0 +1.3.6.1.2.1.2.2.1.13.750|65|0 +1.3.6.1.2.1.2.2.1.13.751|65|0 +1.3.6.1.2.1.2.2.1.13.769|65|1664 +1.3.6.1.2.1.2.2.1.13.770|65|0 +1.3.6.1.2.1.2.2.1.13.774|65|0 +1.3.6.1.2.1.2.2.1.13.775|65|0 +1.3.6.1.2.1.2.2.1.13.776|65|0 +1.3.6.1.2.1.2.2.1.13.785|65|0 +1.3.6.1.2.1.2.2.1.13.792|65|0 +1.3.6.1.2.1.2.2.1.13.793|65|0 +1.3.6.1.2.1.2.2.1.13.794|65|0 +1.3.6.1.2.1.2.2.1.13.801|65|0 +1.3.6.1.2.1.2.2.1.13.802|65|0 +1.3.6.1.2.1.2.2.1.13.803|65|0 +1.3.6.1.2.1.2.2.1.13.804|65|0 +1.3.6.1.2.1.2.2.1.13.805|65|0 +1.3.6.1.2.1.2.2.1.13.806|65|0 +1.3.6.1.2.1.2.2.1.13.807|65|0 +1.3.6.1.2.1.2.2.1.13.810|65|0 +1.3.6.1.2.1.2.2.1.13.811|65|0 +1.3.6.1.2.1.2.2.1.13.814|65|0 +1.3.6.1.2.1.2.2.1.13.815|65|0 +1.3.6.1.2.1.2.2.1.13.818|65|0 +1.3.6.1.2.1.2.2.1.13.834|65|0 +1.3.6.1.2.1.2.2.1.13.835|65|147 +1.3.6.1.2.1.2.2.1.13.836|65|0 +1.3.6.1.2.1.2.2.1.13.838|65|0 +1.3.6.1.2.1.2.2.1.13.848|65|0 +1.3.6.1.2.1.2.2.1.13.849|65|0 +1.3.6.1.2.1.2.2.1.13.850|65|0 +1.3.6.1.2.1.2.2.1.13.854|65|0 +1.3.6.1.2.1.2.2.1.13.871|65|0 +1.3.6.1.2.1.2.2.1.13.872|65|0 +1.3.6.1.2.1.2.2.1.13.874|65|0 +1.3.6.1.2.1.2.2.1.13.875|65|0 +1.3.6.1.2.1.2.2.1.13.876|65|0 +1.3.6.1.2.1.2.2.1.13.877|65|0 +1.3.6.1.2.1.2.2.1.13.883|65|0 +1.3.6.1.2.1.2.2.1.13.885|65|0 +1.3.6.1.2.1.2.2.1.13.907|65|0 +1.3.6.1.2.1.2.2.1.13.908|65|0 +1.3.6.1.2.1.2.2.1.13.909|65|0 +1.3.6.1.2.1.2.2.1.13.919|65|0 +1.3.6.1.2.1.2.2.1.13.920|65|0 +1.3.6.1.2.1.2.2.1.13.921|65|0 +1.3.6.1.2.1.2.2.1.13.925|65|0 +1.3.6.1.2.1.2.2.1.13.926|65|0 +1.3.6.1.2.1.2.2.1.13.927|65|0 +1.3.6.1.2.1.2.2.1.13.938|65|0 +1.3.6.1.2.1.2.2.1.13.939|65|0 +1.3.6.1.2.1.2.2.1.13.940|65|0 +1.3.6.1.2.1.2.2.1.13.941|65|0 +1.3.6.1.2.1.2.2.1.13.947|65|0 +1.3.6.1.2.1.2.2.1.13.948|65|0 +1.3.6.1.2.1.2.2.1.14.251|65|0 +1.3.6.1.2.1.2.2.1.14.252|65|0 +1.3.6.1.2.1.2.2.1.14.253|65|0 +1.3.6.1.2.1.2.2.1.14.254|65|0 +1.3.6.1.2.1.2.2.1.14.255|65|0 +1.3.6.1.2.1.2.2.1.14.258|65|0 +1.3.6.1.2.1.2.2.1.14.259|65|0 +1.3.6.1.2.1.2.2.1.14.270|65|0 +1.3.6.1.2.1.2.2.1.14.273|65|0 +1.3.6.1.2.1.2.2.1.14.274|65|0 +1.3.6.1.2.1.2.2.1.14.277|65|0 +1.3.6.1.2.1.2.2.1.14.278|65|0 +1.3.6.1.2.1.2.2.1.14.280|65|0 +1.3.6.1.2.1.2.2.1.14.281|65|0 +1.3.6.1.2.1.2.2.1.14.282|65|0 +1.3.6.1.2.1.2.2.1.14.283|65|0 +1.3.6.1.2.1.2.2.1.14.284|65|0 +1.3.6.1.2.1.2.2.1.14.285|65|0 +1.3.6.1.2.1.2.2.1.14.286|65|0 +1.3.6.1.2.1.2.2.1.14.287|65|0 +1.3.6.1.2.1.2.2.1.14.288|65|0 +1.3.6.1.2.1.2.2.1.14.395|65|0 +1.3.6.1.2.1.2.2.1.14.396|65|0 +1.3.6.1.2.1.2.2.1.14.398|65|0 +1.3.6.1.2.1.2.2.1.14.399|65|0 +1.3.6.1.2.1.2.2.1.14.415|65|0 +1.3.6.1.2.1.2.2.1.14.417|65|0 +1.3.6.1.2.1.2.2.1.14.418|65|0 +1.3.6.1.2.1.2.2.1.14.464|65|0 +1.3.6.1.2.1.2.2.1.14.465|65|0 +1.3.6.1.2.1.2.2.1.14.477|65|0 +1.3.6.1.2.1.2.2.1.14.487|65|3456458 +1.3.6.1.2.1.2.2.1.14.494|65|0 +1.3.6.1.2.1.2.2.1.14.495|65|0 +1.3.6.1.2.1.2.2.1.14.496|65|0 +1.3.6.1.2.1.2.2.1.14.497|65|216 +1.3.6.1.2.1.2.2.1.14.506|65|0 +1.3.6.1.2.1.2.2.1.14.509|65|0 +1.3.6.1.2.1.2.2.1.14.514|65|0 +1.3.6.1.2.1.2.2.1.14.515|65|0 +1.3.6.1.2.1.2.2.1.14.518|65|0 +1.3.6.1.2.1.2.2.1.14.519|65|0 +1.3.6.1.2.1.2.2.1.14.520|65|0 +1.3.6.1.2.1.2.2.1.14.535|65|0 +1.3.6.1.2.1.2.2.1.14.536|65|0 +1.3.6.1.2.1.2.2.1.14.538|65|0 +1.3.6.1.2.1.2.2.1.14.542|65|0 +1.3.6.1.2.1.2.2.1.14.543|65|0 +1.3.6.1.2.1.2.2.1.14.544|65|0 +1.3.6.1.2.1.2.2.1.14.547|65|3457090 +1.3.6.1.2.1.2.2.1.14.548|65|0 +1.3.6.1.2.1.2.2.1.14.549|65|0 +1.3.6.1.2.1.2.2.1.14.550|65|71 +1.3.6.1.2.1.2.2.1.14.551|65|0 +1.3.6.1.2.1.2.2.1.14.552|65|0 +1.3.6.1.2.1.2.2.1.14.553|65|0 +1.3.6.1.2.1.2.2.1.14.554|65|0 +1.3.6.1.2.1.2.2.1.14.555|65|1040211 +1.3.6.1.2.1.2.2.1.14.556|65|0 +1.3.6.1.2.1.2.2.1.14.557|65|0 +1.3.6.1.2.1.2.2.1.14.558|65|0 +1.3.6.1.2.1.2.2.1.14.559|65|0 +1.3.6.1.2.1.2.2.1.14.560|65|0 +1.3.6.1.2.1.2.2.1.14.561|65|0 +1.3.6.1.2.1.2.2.1.14.562|65|0 +1.3.6.1.2.1.2.2.1.14.563|65|0 +1.3.6.1.2.1.2.2.1.14.564|65|0 +1.3.6.1.2.1.2.2.1.14.565|65|0 +1.3.6.1.2.1.2.2.1.14.566|65|0 +1.3.6.1.2.1.2.2.1.14.567|65|0 +1.3.6.1.2.1.2.2.1.14.568|65|1 +1.3.6.1.2.1.2.2.1.14.569|65|0 +1.3.6.1.2.1.2.2.1.14.570|65|0 +1.3.6.1.2.1.2.2.1.14.571|65|5 +1.3.6.1.2.1.2.2.1.14.572|65|0 +1.3.6.1.2.1.2.2.1.14.573|65|0 +1.3.6.1.2.1.2.2.1.14.574|65|0 +1.3.6.1.2.1.2.2.1.14.575|65|12 +1.3.6.1.2.1.2.2.1.14.576|65|0 +1.3.6.1.2.1.2.2.1.14.577|65|0 +1.3.6.1.2.1.2.2.1.14.578|65|0 +1.3.6.1.2.1.2.2.1.14.579|65|0 +1.3.6.1.2.1.2.2.1.14.580|65|0 +1.3.6.1.2.1.2.2.1.14.581|65|0 +1.3.6.1.2.1.2.2.1.14.582|65|0 +1.3.6.1.2.1.2.2.1.14.583|65|2 +1.3.6.1.2.1.2.2.1.14.584|65|0 +1.3.6.1.2.1.2.2.1.14.585|65|0 +1.3.6.1.2.1.2.2.1.14.586|65|1 +1.3.6.1.2.1.2.2.1.14.587|65|1 +1.3.6.1.2.1.2.2.1.14.588|65|0 +1.3.6.1.2.1.2.2.1.14.589|65|0 +1.3.6.1.2.1.2.2.1.14.590|65|0 +1.3.6.1.2.1.2.2.1.14.591|65|0 +1.3.6.1.2.1.2.2.1.14.592|65|0 +1.3.6.1.2.1.2.2.1.14.593|65|0 +1.3.6.1.2.1.2.2.1.14.594|65|0 +1.3.6.1.2.1.2.2.1.14.595|65|0 +1.3.6.1.2.1.2.2.1.14.596|65|0 +1.3.6.1.2.1.2.2.1.14.597|65|0 +1.3.6.1.2.1.2.2.1.14.598|65|0 +1.3.6.1.2.1.2.2.1.14.599|65|0 +1.3.6.1.2.1.2.2.1.14.600|65|2 +1.3.6.1.2.1.2.2.1.14.601|65|0 +1.3.6.1.2.1.2.2.1.14.602|65|0 +1.3.6.1.2.1.2.2.1.14.603|65|1 +1.3.6.1.2.1.2.2.1.14.604|65|0 +1.3.6.1.2.1.2.2.1.14.605|65|0 +1.3.6.1.2.1.2.2.1.14.606|65|0 +1.3.6.1.2.1.2.2.1.14.607|65|0 +1.3.6.1.2.1.2.2.1.14.608|65|0 +1.3.6.1.2.1.2.2.1.14.609|65|0 +1.3.6.1.2.1.2.2.1.14.610|65|0 +1.3.6.1.2.1.2.2.1.14.611|65|0 +1.3.6.1.2.1.2.2.1.14.612|65|0 +1.3.6.1.2.1.2.2.1.14.613|65|0 +1.3.6.1.2.1.2.2.1.14.614|65|0 +1.3.6.1.2.1.2.2.1.14.615|65|0 +1.3.6.1.2.1.2.2.1.14.616|65|0 +1.3.6.1.2.1.2.2.1.14.617|65|0 +1.3.6.1.2.1.2.2.1.14.618|65|0 +1.3.6.1.2.1.2.2.1.14.619|65|0 +1.3.6.1.2.1.2.2.1.14.620|65|0 +1.3.6.1.2.1.2.2.1.14.621|65|0 +1.3.6.1.2.1.2.2.1.14.622|65|27 +1.3.6.1.2.1.2.2.1.14.623|65|0 +1.3.6.1.2.1.2.2.1.14.624|65|0 +1.3.6.1.2.1.2.2.1.14.625|65|0 +1.3.6.1.2.1.2.2.1.14.626|65|0 +1.3.6.1.2.1.2.2.1.14.627|65|1 +1.3.6.1.2.1.2.2.1.14.628|65|0 +1.3.6.1.2.1.2.2.1.14.629|65|0 +1.3.6.1.2.1.2.2.1.14.630|65|0 +1.3.6.1.2.1.2.2.1.14.631|65|0 +1.3.6.1.2.1.2.2.1.14.632|65|0 +1.3.6.1.2.1.2.2.1.14.633|65|0 +1.3.6.1.2.1.2.2.1.14.634|65|56 +1.3.6.1.2.1.2.2.1.14.635|65|0 +1.3.6.1.2.1.2.2.1.14.636|65|0 +1.3.6.1.2.1.2.2.1.14.637|65|0 +1.3.6.1.2.1.2.2.1.14.638|65|0 +1.3.6.1.2.1.2.2.1.14.639|65|0 +1.3.6.1.2.1.2.2.1.14.640|65|0 +1.3.6.1.2.1.2.2.1.14.641|65|0 +1.3.6.1.2.1.2.2.1.14.642|65|0 +1.3.6.1.2.1.2.2.1.14.643|65|0 +1.3.6.1.2.1.2.2.1.14.644|65|0 +1.3.6.1.2.1.2.2.1.14.645|65|0 +1.3.6.1.2.1.2.2.1.14.646|65|0 +1.3.6.1.2.1.2.2.1.14.647|65|0 +1.3.6.1.2.1.2.2.1.14.648|65|0 +1.3.6.1.2.1.2.2.1.14.649|65|1 +1.3.6.1.2.1.2.2.1.14.650|65|0 +1.3.6.1.2.1.2.2.1.14.651|65|323 +1.3.6.1.2.1.2.2.1.14.652|65|0 +1.3.6.1.2.1.2.2.1.14.653|65|0 +1.3.6.1.2.1.2.2.1.14.654|65|0 +1.3.6.1.2.1.2.2.1.14.655|65|0 +1.3.6.1.2.1.2.2.1.14.656|65|0 +1.3.6.1.2.1.2.2.1.14.657|65|0 +1.3.6.1.2.1.2.2.1.14.658|65|0 +1.3.6.1.2.1.2.2.1.14.659|65|6 +1.3.6.1.2.1.2.2.1.14.660|65|2 +1.3.6.1.2.1.2.2.1.14.661|65|1 +1.3.6.1.2.1.2.2.1.14.662|65|0 +1.3.6.1.2.1.2.2.1.14.663|65|0 +1.3.6.1.2.1.2.2.1.14.664|65|1 +1.3.6.1.2.1.2.2.1.14.665|65|1 +1.3.6.1.2.1.2.2.1.14.666|65|0 +1.3.6.1.2.1.2.2.1.14.667|65|0 +1.3.6.1.2.1.2.2.1.14.668|65|0 +1.3.6.1.2.1.2.2.1.14.669|65|0 +1.3.6.1.2.1.2.2.1.14.670|65|0 +1.3.6.1.2.1.2.2.1.14.671|65|0 +1.3.6.1.2.1.2.2.1.14.672|65|0 +1.3.6.1.2.1.2.2.1.14.673|65|0 +1.3.6.1.2.1.2.2.1.14.674|65|0 +1.3.6.1.2.1.2.2.1.14.675|65|0 +1.3.6.1.2.1.2.2.1.14.676|65|0 +1.3.6.1.2.1.2.2.1.14.677|65|0 +1.3.6.1.2.1.2.2.1.14.678|65|0 +1.3.6.1.2.1.2.2.1.14.679|65|0 +1.3.6.1.2.1.2.2.1.14.680|65|1 +1.3.6.1.2.1.2.2.1.14.681|65|0 +1.3.6.1.2.1.2.2.1.14.682|65|0 +1.3.6.1.2.1.2.2.1.14.683|65|0 +1.3.6.1.2.1.2.2.1.14.684|65|0 +1.3.6.1.2.1.2.2.1.14.685|65|0 +1.3.6.1.2.1.2.2.1.14.686|65|1 +1.3.6.1.2.1.2.2.1.14.687|65|0 +1.3.6.1.2.1.2.2.1.14.688|65|1 +1.3.6.1.2.1.2.2.1.14.689|65|0 +1.3.6.1.2.1.2.2.1.14.690|65|2 +1.3.6.1.2.1.2.2.1.14.691|65|2 +1.3.6.1.2.1.2.2.1.14.692|65|0 +1.3.6.1.2.1.2.2.1.14.693|65|0 +1.3.6.1.2.1.2.2.1.14.694|65|0 +1.3.6.1.2.1.2.2.1.14.695|65|2 +1.3.6.1.2.1.2.2.1.14.696|65|0 +1.3.6.1.2.1.2.2.1.14.697|65|0 +1.3.6.1.2.1.2.2.1.14.698|65|0 +1.3.6.1.2.1.2.2.1.14.699|65|0 +1.3.6.1.2.1.2.2.1.14.700|65|0 +1.3.6.1.2.1.2.2.1.14.701|65|0 +1.3.6.1.2.1.2.2.1.14.702|65|0 +1.3.6.1.2.1.2.2.1.14.703|65|0 +1.3.6.1.2.1.2.2.1.14.704|65|0 +1.3.6.1.2.1.2.2.1.14.705|65|0 +1.3.6.1.2.1.2.2.1.14.706|65|0 +1.3.6.1.2.1.2.2.1.14.707|65|2 +1.3.6.1.2.1.2.2.1.14.708|65|0 +1.3.6.1.2.1.2.2.1.14.709|65|0 +1.3.6.1.2.1.2.2.1.14.710|65|0 +1.3.6.1.2.1.2.2.1.14.711|65|0 +1.3.6.1.2.1.2.2.1.14.712|65|0 +1.3.6.1.2.1.2.2.1.14.713|65|0 +1.3.6.1.2.1.2.2.1.14.714|65|0 +1.3.6.1.2.1.2.2.1.14.715|65|0 +1.3.6.1.2.1.2.2.1.14.716|65|0 +1.3.6.1.2.1.2.2.1.14.717|65|4 +1.3.6.1.2.1.2.2.1.14.718|65|0 +1.3.6.1.2.1.2.2.1.14.719|65|0 +1.3.6.1.2.1.2.2.1.14.720|65|0 +1.3.6.1.2.1.2.2.1.14.721|65|0 +1.3.6.1.2.1.2.2.1.14.722|65|0 +1.3.6.1.2.1.2.2.1.14.723|65|0 +1.3.6.1.2.1.2.2.1.14.724|65|2 +1.3.6.1.2.1.2.2.1.14.725|65|1 +1.3.6.1.2.1.2.2.1.14.726|65|0 +1.3.6.1.2.1.2.2.1.14.727|65|0 +1.3.6.1.2.1.2.2.1.14.728|65|0 +1.3.6.1.2.1.2.2.1.14.729|65|0 +1.3.6.1.2.1.2.2.1.14.730|65|0 +1.3.6.1.2.1.2.2.1.14.731|65|0 +1.3.6.1.2.1.2.2.1.14.732|65|0 +1.3.6.1.2.1.2.2.1.14.733|65|0 +1.3.6.1.2.1.2.2.1.14.734|65|0 +1.3.6.1.2.1.2.2.1.14.735|65|0 +1.3.6.1.2.1.2.2.1.14.736|65|0 +1.3.6.1.2.1.2.2.1.14.737|65|0 +1.3.6.1.2.1.2.2.1.14.738|65|0 +1.3.6.1.2.1.2.2.1.14.739|65|0 +1.3.6.1.2.1.2.2.1.14.740|65|3746444 +1.3.6.1.2.1.2.2.1.14.741|65|0 +1.3.6.1.2.1.2.2.1.14.742|65|8 +1.3.6.1.2.1.2.2.1.14.743|65|0 +1.3.6.1.2.1.2.2.1.14.744|65|0 +1.3.6.1.2.1.2.2.1.14.745|65|0 +1.3.6.1.2.1.2.2.1.14.746|65|0 +1.3.6.1.2.1.2.2.1.14.747|65|0 +1.3.6.1.2.1.2.2.1.14.748|65|0 +1.3.6.1.2.1.2.2.1.14.749|65|0 +1.3.6.1.2.1.2.2.1.14.750|65|0 +1.3.6.1.2.1.2.2.1.14.751|65|0 +1.3.6.1.2.1.2.2.1.14.769|65|0 +1.3.6.1.2.1.2.2.1.14.770|65|0 +1.3.6.1.2.1.2.2.1.14.774|65|0 +1.3.6.1.2.1.2.2.1.14.775|65|0 +1.3.6.1.2.1.2.2.1.14.776|65|0 +1.3.6.1.2.1.2.2.1.14.785|65|0 +1.3.6.1.2.1.2.2.1.14.792|65|0 +1.3.6.1.2.1.2.2.1.14.793|65|0 +1.3.6.1.2.1.2.2.1.14.794|65|0 +1.3.6.1.2.1.2.2.1.14.801|65|0 +1.3.6.1.2.1.2.2.1.14.802|65|0 +1.3.6.1.2.1.2.2.1.14.803|65|0 +1.3.6.1.2.1.2.2.1.14.804|65|0 +1.3.6.1.2.1.2.2.1.14.805|65|0 +1.3.6.1.2.1.2.2.1.14.806|65|0 +1.3.6.1.2.1.2.2.1.14.807|65|0 +1.3.6.1.2.1.2.2.1.14.810|65|0 +1.3.6.1.2.1.2.2.1.14.811|65|0 +1.3.6.1.2.1.2.2.1.14.814|65|0 +1.3.6.1.2.1.2.2.1.14.815|65|0 +1.3.6.1.2.1.2.2.1.14.818|65|0 +1.3.6.1.2.1.2.2.1.14.834|65|0 +1.3.6.1.2.1.2.2.1.14.835|65|0 +1.3.6.1.2.1.2.2.1.14.836|65|0 +1.3.6.1.2.1.2.2.1.14.838|65|0 +1.3.6.1.2.1.2.2.1.14.848|65|0 +1.3.6.1.2.1.2.2.1.14.849|65|0 +1.3.6.1.2.1.2.2.1.14.850|65|0 +1.3.6.1.2.1.2.2.1.14.854|65|0 +1.3.6.1.2.1.2.2.1.14.871|65|0 +1.3.6.1.2.1.2.2.1.14.872|65|0 +1.3.6.1.2.1.2.2.1.14.874|65|0 +1.3.6.1.2.1.2.2.1.14.875|65|0 +1.3.6.1.2.1.2.2.1.14.876|65|0 +1.3.6.1.2.1.2.2.1.14.877|65|0 +1.3.6.1.2.1.2.2.1.14.883|65|0 +1.3.6.1.2.1.2.2.1.14.885|65|0 +1.3.6.1.2.1.2.2.1.14.907|65|0 +1.3.6.1.2.1.2.2.1.14.908|65|0 +1.3.6.1.2.1.2.2.1.14.909|65|0 +1.3.6.1.2.1.2.2.1.14.919|65|0 +1.3.6.1.2.1.2.2.1.14.920|65|0 +1.3.6.1.2.1.2.2.1.14.921|65|0 +1.3.6.1.2.1.2.2.1.14.925|65|0 +1.3.6.1.2.1.2.2.1.14.926|65|0 +1.3.6.1.2.1.2.2.1.14.927|65|0 +1.3.6.1.2.1.2.2.1.14.938|65|0 +1.3.6.1.2.1.2.2.1.14.939|65|0 +1.3.6.1.2.1.2.2.1.14.940|65|0 +1.3.6.1.2.1.2.2.1.14.941|65|0 +1.3.6.1.2.1.2.2.1.14.947|65|0 +1.3.6.1.2.1.2.2.1.14.948|65|0 +1.3.6.1.2.1.2.2.1.19.251|65|0 +1.3.6.1.2.1.2.2.1.19.252|65|0 +1.3.6.1.2.1.2.2.1.19.253|65|0 +1.3.6.1.2.1.2.2.1.19.254|65|0 +1.3.6.1.2.1.2.2.1.19.255|65|0 +1.3.6.1.2.1.2.2.1.19.258|65|0 +1.3.6.1.2.1.2.2.1.19.259|65|0 +1.3.6.1.2.1.2.2.1.19.270|65|0 +1.3.6.1.2.1.2.2.1.19.273|65|0 +1.3.6.1.2.1.2.2.1.19.274|65|0 +1.3.6.1.2.1.2.2.1.19.277|65|0 +1.3.6.1.2.1.2.2.1.19.278|65|0 +1.3.6.1.2.1.2.2.1.19.280|65|0 +1.3.6.1.2.1.2.2.1.19.281|65|0 +1.3.6.1.2.1.2.2.1.19.282|65|0 +1.3.6.1.2.1.2.2.1.19.283|65|0 +1.3.6.1.2.1.2.2.1.19.284|65|0 +1.3.6.1.2.1.2.2.1.19.285|65|0 +1.3.6.1.2.1.2.2.1.19.286|65|0 +1.3.6.1.2.1.2.2.1.19.287|65|0 +1.3.6.1.2.1.2.2.1.19.288|65|0 +1.3.6.1.2.1.2.2.1.19.395|65|0 +1.3.6.1.2.1.2.2.1.19.396|65|0 +1.3.6.1.2.1.2.2.1.19.398|65|0 +1.3.6.1.2.1.2.2.1.19.399|65|0 +1.3.6.1.2.1.2.2.1.19.415|65|0 +1.3.6.1.2.1.2.2.1.19.417|65|0 +1.3.6.1.2.1.2.2.1.19.418|65|0 +1.3.6.1.2.1.2.2.1.19.464|65|0 +1.3.6.1.2.1.2.2.1.19.465|65|0 +1.3.6.1.2.1.2.2.1.19.477|65|0 +1.3.6.1.2.1.2.2.1.19.487|65|0 +1.3.6.1.2.1.2.2.1.19.494|65|0 +1.3.6.1.2.1.2.2.1.19.495|65|0 +1.3.6.1.2.1.2.2.1.19.496|65|0 +1.3.6.1.2.1.2.2.1.19.497|65|40330343 +1.3.6.1.2.1.2.2.1.19.506|65|0 +1.3.6.1.2.1.2.2.1.19.509|65|0 +1.3.6.1.2.1.2.2.1.19.514|65|0 +1.3.6.1.2.1.2.2.1.19.515|65|0 +1.3.6.1.2.1.2.2.1.19.518|65|0 +1.3.6.1.2.1.2.2.1.19.519|65|0 +1.3.6.1.2.1.2.2.1.19.520|65|0 +1.3.6.1.2.1.2.2.1.19.535|65|0 +1.3.6.1.2.1.2.2.1.19.536|65|0 +1.3.6.1.2.1.2.2.1.19.538|65|0 +1.3.6.1.2.1.2.2.1.19.542|65|0 +1.3.6.1.2.1.2.2.1.19.543|65|0 +1.3.6.1.2.1.2.2.1.19.544|65|0 +1.3.6.1.2.1.2.2.1.19.547|65|0 +1.3.6.1.2.1.2.2.1.19.548|65|0 +1.3.6.1.2.1.2.2.1.19.549|65|0 +1.3.6.1.2.1.2.2.1.19.550|65|0 +1.3.6.1.2.1.2.2.1.19.551|65|0 +1.3.6.1.2.1.2.2.1.19.552|65|0 +1.3.6.1.2.1.2.2.1.19.553|65|0 +1.3.6.1.2.1.2.2.1.19.554|65|0 +1.3.6.1.2.1.2.2.1.19.555|65|4954190 +1.3.6.1.2.1.2.2.1.19.556|65|68167 +1.3.6.1.2.1.2.2.1.19.557|65|0 +1.3.6.1.2.1.2.2.1.19.558|65|0 +1.3.6.1.2.1.2.2.1.19.559|65|0 +1.3.6.1.2.1.2.2.1.19.560|65|0 +1.3.6.1.2.1.2.2.1.19.561|65|227970 +1.3.6.1.2.1.2.2.1.19.562|65|0 +1.3.6.1.2.1.2.2.1.19.563|65|47618 +1.3.6.1.2.1.2.2.1.19.564|65|0 +1.3.6.1.2.1.2.2.1.19.565|65|494945 +1.3.6.1.2.1.2.2.1.19.566|65|20511399 +1.3.6.1.2.1.2.2.1.19.567|65|20602450 +1.3.6.1.2.1.2.2.1.19.568|65|20514546 +1.3.6.1.2.1.2.2.1.19.569|65|0 +1.3.6.1.2.1.2.2.1.19.570|65|20602447 +1.3.6.1.2.1.2.2.1.19.571|65|6375 +1.3.6.1.2.1.2.2.1.19.572|65|0 +1.3.6.1.2.1.2.2.1.19.573|65|0 +1.3.6.1.2.1.2.2.1.19.574|65|0 +1.3.6.1.2.1.2.2.1.19.575|65|0 +1.3.6.1.2.1.2.2.1.19.576|65|0 +1.3.6.1.2.1.2.2.1.19.577|65|1565360 +1.3.6.1.2.1.2.2.1.19.578|65|327770 +1.3.6.1.2.1.2.2.1.19.579|65|0 +1.3.6.1.2.1.2.2.1.19.580|65|4955838 +1.3.6.1.2.1.2.2.1.19.581|65|421819 +1.3.6.1.2.1.2.2.1.19.582|65|0 +1.3.6.1.2.1.2.2.1.19.583|65|6360 +1.3.6.1.2.1.2.2.1.19.584|65|449273 +1.3.6.1.2.1.2.2.1.19.585|65|47254 +1.3.6.1.2.1.2.2.1.19.586|65|6363 +1.3.6.1.2.1.2.2.1.19.587|65|6353 +1.3.6.1.2.1.2.2.1.19.588|65|20515024 +1.3.6.1.2.1.2.2.1.19.589|65|20515251 +1.3.6.1.2.1.2.2.1.19.590|65|0 +1.3.6.1.2.1.2.2.1.19.591|65|0 +1.3.6.1.2.1.2.2.1.19.592|65|0 +1.3.6.1.2.1.2.2.1.19.593|65|0 +1.3.6.1.2.1.2.2.1.19.594|65|0 +1.3.6.1.2.1.2.2.1.19.595|65|6366 +1.3.6.1.2.1.2.2.1.19.596|65|0 +1.3.6.1.2.1.2.2.1.19.597|65|0 +1.3.6.1.2.1.2.2.1.19.598|65|0 +1.3.6.1.2.1.2.2.1.19.599|65|0 +1.3.6.1.2.1.2.2.1.19.600|65|6361 +1.3.6.1.2.1.2.2.1.19.601|65|896 +1.3.6.1.2.1.2.2.1.19.602|65|0 +1.3.6.1.2.1.2.2.1.19.603|65|6366 +1.3.6.1.2.1.2.2.1.19.604|65|54471 +1.3.6.1.2.1.2.2.1.19.605|65|0 +1.3.6.1.2.1.2.2.1.19.606|65|0 +1.3.6.1.2.1.2.2.1.19.607|65|0 +1.3.6.1.2.1.2.2.1.19.608|65|0 +1.3.6.1.2.1.2.2.1.19.609|65|0 +1.3.6.1.2.1.2.2.1.19.610|65|47248 +1.3.6.1.2.1.2.2.1.19.611|65|0 +1.3.6.1.2.1.2.2.1.19.612|65|47253 +1.3.6.1.2.1.2.2.1.19.613|65|47252 +1.3.6.1.2.1.2.2.1.19.614|65|47265 +1.3.6.1.2.1.2.2.1.19.615|65|126876 +1.3.6.1.2.1.2.2.1.19.616|65|690910 +1.3.6.1.2.1.2.2.1.19.617|65|47257 +1.3.6.1.2.1.2.2.1.19.618|65|6350 +1.3.6.1.2.1.2.2.1.19.619|65|680643 +1.3.6.1.2.1.2.2.1.19.620|65|693572 +1.3.6.1.2.1.2.2.1.19.621|65|0 +1.3.6.1.2.1.2.2.1.19.622|65|711 +1.3.6.1.2.1.2.2.1.19.623|65|0 +1.3.6.1.2.1.2.2.1.19.624|65|0 +1.3.6.1.2.1.2.2.1.19.625|65|0 +1.3.6.1.2.1.2.2.1.19.626|65|0 +1.3.6.1.2.1.2.2.1.19.627|65|6351 +1.3.6.1.2.1.2.2.1.19.628|65|0 +1.3.6.1.2.1.2.2.1.19.629|65|6356 +1.3.6.1.2.1.2.2.1.19.630|65|0 +1.3.6.1.2.1.2.2.1.19.631|65|0 +1.3.6.1.2.1.2.2.1.19.632|65|6357 +1.3.6.1.2.1.2.2.1.19.633|65|20501949 +1.3.6.1.2.1.2.2.1.19.634|65|19628261 +1.3.6.1.2.1.2.2.1.19.635|65|0 +1.3.6.1.2.1.2.2.1.19.636|65|0 +1.3.6.1.2.1.2.2.1.19.637|65|0 +1.3.6.1.2.1.2.2.1.19.638|65|20505029 +1.3.6.1.2.1.2.2.1.19.639|65|0 +1.3.6.1.2.1.2.2.1.19.640|65|0 +1.3.6.1.2.1.2.2.1.19.641|65|0 +1.3.6.1.2.1.2.2.1.19.642|65|0 +1.3.6.1.2.1.2.2.1.19.643|65|0 +1.3.6.1.2.1.2.2.1.19.644|65|323843 +1.3.6.1.2.1.2.2.1.19.645|65|0 +1.3.6.1.2.1.2.2.1.19.646|65|0 +1.3.6.1.2.1.2.2.1.19.647|65|0 +1.3.6.1.2.1.2.2.1.19.648|65|0 +1.3.6.1.2.1.2.2.1.19.649|65|20516608 +1.3.6.1.2.1.2.2.1.19.650|65|0 +1.3.6.1.2.1.2.2.1.19.651|65|200766 +1.3.6.1.2.1.2.2.1.19.652|65|0 +1.3.6.1.2.1.2.2.1.19.653|65|0 +1.3.6.1.2.1.2.2.1.19.654|65|0 +1.3.6.1.2.1.2.2.1.19.655|65|0 +1.3.6.1.2.1.2.2.1.19.656|65|20559670 +1.3.6.1.2.1.2.2.1.19.657|65|20512756 +1.3.6.1.2.1.2.2.1.19.658|65|0 +1.3.6.1.2.1.2.2.1.19.659|65|6353 +1.3.6.1.2.1.2.2.1.19.660|65|20513525 +1.3.6.1.2.1.2.2.1.19.661|65|0 +1.3.6.1.2.1.2.2.1.19.662|65|0 +1.3.6.1.2.1.2.2.1.19.663|65|0 +1.3.6.1.2.1.2.2.1.19.664|65|20514184 +1.3.6.1.2.1.2.2.1.19.665|65|20559667 +1.3.6.1.2.1.2.2.1.19.666|65|0 +1.3.6.1.2.1.2.2.1.19.667|65|0 +1.3.6.1.2.1.2.2.1.19.668|65|0 +1.3.6.1.2.1.2.2.1.19.669|65|6356 +1.3.6.1.2.1.2.2.1.19.670|65|47254 +1.3.6.1.2.1.2.2.1.19.671|65|0 +1.3.6.1.2.1.2.2.1.19.672|65|0 +1.3.6.1.2.1.2.2.1.19.673|65|0 +1.3.6.1.2.1.2.2.1.19.674|65|693573 +1.3.6.1.2.1.2.2.1.19.675|65|0 +1.3.6.1.2.1.2.2.1.19.676|65|0 +1.3.6.1.2.1.2.2.1.19.677|65|0 +1.3.6.1.2.1.2.2.1.19.678|65|0 +1.3.6.1.2.1.2.2.1.19.679|65|47256 +1.3.6.1.2.1.2.2.1.19.680|65|693588 +1.3.6.1.2.1.2.2.1.19.681|65|0 +1.3.6.1.2.1.2.2.1.19.682|65|0 +1.3.6.1.2.1.2.2.1.19.683|65|0 +1.3.6.1.2.1.2.2.1.19.684|65|0 +1.3.6.1.2.1.2.2.1.19.685|65|0 +1.3.6.1.2.1.2.2.1.19.686|65|6380 +1.3.6.1.2.1.2.2.1.19.687|65|6354 +1.3.6.1.2.1.2.2.1.19.688|65|6362 +1.3.6.1.2.1.2.2.1.19.689|65|6349 +1.3.6.1.2.1.2.2.1.19.690|65|6363 +1.3.6.1.2.1.2.2.1.19.691|65|6380 +1.3.6.1.2.1.2.2.1.19.692|65|0 +1.3.6.1.2.1.2.2.1.19.693|65|0 +1.3.6.1.2.1.2.2.1.19.694|65|0 +1.3.6.1.2.1.2.2.1.19.695|65|2877 +1.3.6.1.2.1.2.2.1.19.696|65|84348 +1.3.6.1.2.1.2.2.1.19.697|65|0 +1.3.6.1.2.1.2.2.1.19.698|65|0 +1.3.6.1.2.1.2.2.1.19.699|65|0 +1.3.6.1.2.1.2.2.1.19.700|65|0 +1.3.6.1.2.1.2.2.1.19.701|65|0 +1.3.6.1.2.1.2.2.1.19.702|65|0 +1.3.6.1.2.1.2.2.1.19.703|65|0 +1.3.6.1.2.1.2.2.1.19.704|65|17632261 +1.3.6.1.2.1.2.2.1.19.705|65|17617582 +1.3.6.1.2.1.2.2.1.19.706|65|17632035 +1.3.6.1.2.1.2.2.1.19.707|65|6365 +1.3.6.1.2.1.2.2.1.19.708|65|17633877 +1.3.6.1.2.1.2.2.1.19.709|65|17618872 +1.3.6.1.2.1.2.2.1.19.710|65|17619539 +1.3.6.1.2.1.2.2.1.19.711|65|0 +1.3.6.1.2.1.2.2.1.19.712|65|17629676 +1.3.6.1.2.1.2.2.1.19.713|65|17620813 +1.3.6.1.2.1.2.2.1.19.714|65|17632266 +1.3.6.1.2.1.2.2.1.19.715|65|0 +1.3.6.1.2.1.2.2.1.19.716|65|0 +1.3.6.1.2.1.2.2.1.19.717|65|6372 +1.3.6.1.2.1.2.2.1.19.718|65|6361 +1.3.6.1.2.1.2.2.1.19.719|65|6368 +1.3.6.1.2.1.2.2.1.19.720|65|0 +1.3.6.1.2.1.2.2.1.19.721|65|6359 +1.3.6.1.2.1.2.2.1.19.722|65|413305 +1.3.6.1.2.1.2.2.1.19.723|65|319227 +1.3.6.1.2.1.2.2.1.19.724|65|47494 +1.3.6.1.2.1.2.2.1.19.725|65|6375 +1.3.6.1.2.1.2.2.1.19.726|65|0 +1.3.6.1.2.1.2.2.1.19.727|65|0 +1.3.6.1.2.1.2.2.1.19.728|65|0 +1.3.6.1.2.1.2.2.1.19.729|65|0 +1.3.6.1.2.1.2.2.1.19.730|65|0 +1.3.6.1.2.1.2.2.1.19.731|65|0 +1.3.6.1.2.1.2.2.1.19.732|65|0 +1.3.6.1.2.1.2.2.1.19.733|65|0 +1.3.6.1.2.1.2.2.1.19.734|65|0 +1.3.6.1.2.1.2.2.1.19.735|65|0 +1.3.6.1.2.1.2.2.1.19.736|65|0 +1.3.6.1.2.1.2.2.1.19.737|65|0 +1.3.6.1.2.1.2.2.1.19.738|65|0 +1.3.6.1.2.1.2.2.1.19.739|65|20505282 +1.3.6.1.2.1.2.2.1.19.740|65|6645733 +1.3.6.1.2.1.2.2.1.19.741|65|0 +1.3.6.1.2.1.2.2.1.19.742|65|20505051 +1.3.6.1.2.1.2.2.1.19.743|65|0 +1.3.6.1.2.1.2.2.1.19.744|65|0 +1.3.6.1.2.1.2.2.1.19.745|65|6351 +1.3.6.1.2.1.2.2.1.19.746|65|0 +1.3.6.1.2.1.2.2.1.19.747|65|0 +1.3.6.1.2.1.2.2.1.19.748|65|20505052 +1.3.6.1.2.1.2.2.1.19.749|65|0 +1.3.6.1.2.1.2.2.1.19.750|65|287292 +1.3.6.1.2.1.2.2.1.19.751|65|693589 +1.3.6.1.2.1.2.2.1.19.769|65|0 +1.3.6.1.2.1.2.2.1.19.770|65|0 +1.3.6.1.2.1.2.2.1.19.774|65|0 +1.3.6.1.2.1.2.2.1.19.775|65|0 +1.3.6.1.2.1.2.2.1.19.776|65|0 +1.3.6.1.2.1.2.2.1.19.785|65|0 +1.3.6.1.2.1.2.2.1.19.792|65|0 +1.3.6.1.2.1.2.2.1.19.793|65|0 +1.3.6.1.2.1.2.2.1.19.794|65|0 +1.3.6.1.2.1.2.2.1.19.801|65|0 +1.3.6.1.2.1.2.2.1.19.802|65|0 +1.3.6.1.2.1.2.2.1.19.803|65|0 +1.3.6.1.2.1.2.2.1.19.804|65|0 +1.3.6.1.2.1.2.2.1.19.805|65|0 +1.3.6.1.2.1.2.2.1.19.806|65|0 +1.3.6.1.2.1.2.2.1.19.807|65|0 +1.3.6.1.2.1.2.2.1.19.810|65|0 +1.3.6.1.2.1.2.2.1.19.811|65|0 +1.3.6.1.2.1.2.2.1.19.814|65|0 +1.3.6.1.2.1.2.2.1.19.815|65|0 +1.3.6.1.2.1.2.2.1.19.818|65|0 +1.3.6.1.2.1.2.2.1.19.834|65|0 +1.3.6.1.2.1.2.2.1.19.835|65|0 +1.3.6.1.2.1.2.2.1.19.836|65|0 +1.3.6.1.2.1.2.2.1.19.838|65|0 +1.3.6.1.2.1.2.2.1.19.848|65|0 +1.3.6.1.2.1.2.2.1.19.849|65|0 +1.3.6.1.2.1.2.2.1.19.850|65|0 +1.3.6.1.2.1.2.2.1.19.854|65|0 +1.3.6.1.2.1.2.2.1.19.871|65|0 +1.3.6.1.2.1.2.2.1.19.872|65|0 +1.3.6.1.2.1.2.2.1.19.874|65|0 +1.3.6.1.2.1.2.2.1.19.875|65|0 +1.3.6.1.2.1.2.2.1.19.876|65|0 +1.3.6.1.2.1.2.2.1.19.877|65|0 +1.3.6.1.2.1.2.2.1.19.883|65|0 +1.3.6.1.2.1.2.2.1.19.885|65|0 +1.3.6.1.2.1.2.2.1.19.907|65|0 +1.3.6.1.2.1.2.2.1.19.908|65|0 +1.3.6.1.2.1.2.2.1.19.909|65|0 +1.3.6.1.2.1.2.2.1.19.919|65|0 +1.3.6.1.2.1.2.2.1.19.920|65|0 +1.3.6.1.2.1.2.2.1.19.921|65|0 +1.3.6.1.2.1.2.2.1.19.925|65|0 +1.3.6.1.2.1.2.2.1.19.926|65|0 +1.3.6.1.2.1.2.2.1.19.927|65|0 +1.3.6.1.2.1.2.2.1.19.938|65|0 +1.3.6.1.2.1.2.2.1.19.939|65|0 +1.3.6.1.2.1.2.2.1.19.940|65|0 +1.3.6.1.2.1.2.2.1.19.941|65|0 +1.3.6.1.2.1.2.2.1.19.947|65|0 +1.3.6.1.2.1.2.2.1.19.948|65|0 +1.3.6.1.2.1.2.2.1.20.251|65|0 +1.3.6.1.2.1.2.2.1.20.252|65|283 +1.3.6.1.2.1.2.2.1.20.253|65|0 +1.3.6.1.2.1.2.2.1.20.254|65|0 +1.3.6.1.2.1.2.2.1.20.255|65|0 +1.3.6.1.2.1.2.2.1.20.258|65|0 +1.3.6.1.2.1.2.2.1.20.259|65|0 +1.3.6.1.2.1.2.2.1.20.270|65|0 +1.3.6.1.2.1.2.2.1.20.273|65|0 +1.3.6.1.2.1.2.2.1.20.274|65|0 +1.3.6.1.2.1.2.2.1.20.277|65|0 +1.3.6.1.2.1.2.2.1.20.278|65|0 +1.3.6.1.2.1.2.2.1.20.280|65|0 +1.3.6.1.2.1.2.2.1.20.281|65|0 +1.3.6.1.2.1.2.2.1.20.282|65|0 +1.3.6.1.2.1.2.2.1.20.283|65|0 +1.3.6.1.2.1.2.2.1.20.284|65|0 +1.3.6.1.2.1.2.2.1.20.285|65|0 +1.3.6.1.2.1.2.2.1.20.286|65|0 +1.3.6.1.2.1.2.2.1.20.287|65|0 +1.3.6.1.2.1.2.2.1.20.288|65|0 +1.3.6.1.2.1.2.2.1.20.395|65|0 +1.3.6.1.2.1.2.2.1.20.396|65|0 +1.3.6.1.2.1.2.2.1.20.398|65|0 +1.3.6.1.2.1.2.2.1.20.399|65|0 +1.3.6.1.2.1.2.2.1.20.415|65|0 +1.3.6.1.2.1.2.2.1.20.417|65|0 +1.3.6.1.2.1.2.2.1.20.418|65|0 +1.3.6.1.2.1.2.2.1.20.464|65|0 +1.3.6.1.2.1.2.2.1.20.465|65|0 +1.3.6.1.2.1.2.2.1.20.477|65|0 +1.3.6.1.2.1.2.2.1.20.487|65|0 +1.3.6.1.2.1.2.2.1.20.494|65|0 +1.3.6.1.2.1.2.2.1.20.495|65|0 +1.3.6.1.2.1.2.2.1.20.496|65|0 +1.3.6.1.2.1.2.2.1.20.497|65|0 +1.3.6.1.2.1.2.2.1.20.506|65|0 +1.3.6.1.2.1.2.2.1.20.509|65|0 +1.3.6.1.2.1.2.2.1.20.514|65|0 +1.3.6.1.2.1.2.2.1.20.515|65|0 +1.3.6.1.2.1.2.2.1.20.518|65|0 +1.3.6.1.2.1.2.2.1.20.519|65|0 +1.3.6.1.2.1.2.2.1.20.520|65|0 +1.3.6.1.2.1.2.2.1.20.535|65|0 +1.3.6.1.2.1.2.2.1.20.536|65|0 +1.3.6.1.2.1.2.2.1.20.538|65|0 +1.3.6.1.2.1.2.2.1.20.542|65|0 +1.3.6.1.2.1.2.2.1.20.543|65|0 +1.3.6.1.2.1.2.2.1.20.544|65|0 +1.3.6.1.2.1.2.2.1.20.547|65|0 +1.3.6.1.2.1.2.2.1.20.548|65|0 +1.3.6.1.2.1.2.2.1.20.549|65|0 +1.3.6.1.2.1.2.2.1.20.550|65|0 +1.3.6.1.2.1.2.2.1.20.551|65|0 +1.3.6.1.2.1.2.2.1.20.552|65|0 +1.3.6.1.2.1.2.2.1.20.553|65|0 +1.3.6.1.2.1.2.2.1.20.554|65|0 +1.3.6.1.2.1.2.2.1.20.555|65|0 +1.3.6.1.2.1.2.2.1.20.556|65|0 +1.3.6.1.2.1.2.2.1.20.557|65|0 +1.3.6.1.2.1.2.2.1.20.558|65|0 +1.3.6.1.2.1.2.2.1.20.559|65|0 +1.3.6.1.2.1.2.2.1.20.560|65|0 +1.3.6.1.2.1.2.2.1.20.561|65|0 +1.3.6.1.2.1.2.2.1.20.562|65|0 +1.3.6.1.2.1.2.2.1.20.563|65|0 +1.3.6.1.2.1.2.2.1.20.564|65|0 +1.3.6.1.2.1.2.2.1.20.565|65|0 +1.3.6.1.2.1.2.2.1.20.566|65|0 +1.3.6.1.2.1.2.2.1.20.567|65|0 +1.3.6.1.2.1.2.2.1.20.568|65|0 +1.3.6.1.2.1.2.2.1.20.569|65|0 +1.3.6.1.2.1.2.2.1.20.570|65|0 +1.3.6.1.2.1.2.2.1.20.571|65|0 +1.3.6.1.2.1.2.2.1.20.572|65|0 +1.3.6.1.2.1.2.2.1.20.573|65|0 +1.3.6.1.2.1.2.2.1.20.574|65|0 +1.3.6.1.2.1.2.2.1.20.575|65|0 +1.3.6.1.2.1.2.2.1.20.576|65|0 +1.3.6.1.2.1.2.2.1.20.577|65|0 +1.3.6.1.2.1.2.2.1.20.578|65|0 +1.3.6.1.2.1.2.2.1.20.579|65|0 +1.3.6.1.2.1.2.2.1.20.580|65|0 +1.3.6.1.2.1.2.2.1.20.581|65|0 +1.3.6.1.2.1.2.2.1.20.582|65|0 +1.3.6.1.2.1.2.2.1.20.583|65|0 +1.3.6.1.2.1.2.2.1.20.584|65|0 +1.3.6.1.2.1.2.2.1.20.585|65|0 +1.3.6.1.2.1.2.2.1.20.586|65|0 +1.3.6.1.2.1.2.2.1.20.587|65|0 +1.3.6.1.2.1.2.2.1.20.588|65|0 +1.3.6.1.2.1.2.2.1.20.589|65|0 +1.3.6.1.2.1.2.2.1.20.590|65|0 +1.3.6.1.2.1.2.2.1.20.591|65|0 +1.3.6.1.2.1.2.2.1.20.592|65|0 +1.3.6.1.2.1.2.2.1.20.593|65|0 +1.3.6.1.2.1.2.2.1.20.594|65|0 +1.3.6.1.2.1.2.2.1.20.595|65|0 +1.3.6.1.2.1.2.2.1.20.596|65|0 +1.3.6.1.2.1.2.2.1.20.597|65|0 +1.3.6.1.2.1.2.2.1.20.598|65|0 +1.3.6.1.2.1.2.2.1.20.599|65|0 +1.3.6.1.2.1.2.2.1.20.600|65|0 +1.3.6.1.2.1.2.2.1.20.601|65|0 +1.3.6.1.2.1.2.2.1.20.602|65|0 +1.3.6.1.2.1.2.2.1.20.603|65|0 +1.3.6.1.2.1.2.2.1.20.604|65|0 +1.3.6.1.2.1.2.2.1.20.605|65|0 +1.3.6.1.2.1.2.2.1.20.606|65|0 +1.3.6.1.2.1.2.2.1.20.607|65|0 +1.3.6.1.2.1.2.2.1.20.608|65|0 +1.3.6.1.2.1.2.2.1.20.609|65|0 +1.3.6.1.2.1.2.2.1.20.610|65|0 +1.3.6.1.2.1.2.2.1.20.611|65|0 +1.3.6.1.2.1.2.2.1.20.612|65|0 +1.3.6.1.2.1.2.2.1.20.613|65|0 +1.3.6.1.2.1.2.2.1.20.614|65|0 +1.3.6.1.2.1.2.2.1.20.615|65|0 +1.3.6.1.2.1.2.2.1.20.616|65|0 +1.3.6.1.2.1.2.2.1.20.617|65|0 +1.3.6.1.2.1.2.2.1.20.618|65|0 +1.3.6.1.2.1.2.2.1.20.619|65|0 +1.3.6.1.2.1.2.2.1.20.620|65|0 +1.3.6.1.2.1.2.2.1.20.621|65|0 +1.3.6.1.2.1.2.2.1.20.622|65|0 +1.3.6.1.2.1.2.2.1.20.623|65|0 +1.3.6.1.2.1.2.2.1.20.624|65|0 +1.3.6.1.2.1.2.2.1.20.625|65|0 +1.3.6.1.2.1.2.2.1.20.626|65|0 +1.3.6.1.2.1.2.2.1.20.627|65|0 +1.3.6.1.2.1.2.2.1.20.628|65|0 +1.3.6.1.2.1.2.2.1.20.629|65|0 +1.3.6.1.2.1.2.2.1.20.630|65|0 +1.3.6.1.2.1.2.2.1.20.631|65|0 +1.3.6.1.2.1.2.2.1.20.632|65|0 +1.3.6.1.2.1.2.2.1.20.633|65|0 +1.3.6.1.2.1.2.2.1.20.634|65|0 +1.3.6.1.2.1.2.2.1.20.635|65|0 +1.3.6.1.2.1.2.2.1.20.636|65|0 +1.3.6.1.2.1.2.2.1.20.637|65|0 +1.3.6.1.2.1.2.2.1.20.638|65|0 +1.3.6.1.2.1.2.2.1.20.639|65|0 +1.3.6.1.2.1.2.2.1.20.640|65|0 +1.3.6.1.2.1.2.2.1.20.641|65|0 +1.3.6.1.2.1.2.2.1.20.642|65|0 +1.3.6.1.2.1.2.2.1.20.643|65|0 +1.3.6.1.2.1.2.2.1.20.644|65|0 +1.3.6.1.2.1.2.2.1.20.645|65|0 +1.3.6.1.2.1.2.2.1.20.646|65|0 +1.3.6.1.2.1.2.2.1.20.647|65|0 +1.3.6.1.2.1.2.2.1.20.648|65|0 +1.3.6.1.2.1.2.2.1.20.649|65|0 +1.3.6.1.2.1.2.2.1.20.650|65|0 +1.3.6.1.2.1.2.2.1.20.651|65|0 +1.3.6.1.2.1.2.2.1.20.652|65|0 +1.3.6.1.2.1.2.2.1.20.653|65|0 +1.3.6.1.2.1.2.2.1.20.654|65|0 +1.3.6.1.2.1.2.2.1.20.655|65|0 +1.3.6.1.2.1.2.2.1.20.656|65|0 +1.3.6.1.2.1.2.2.1.20.657|65|0 +1.3.6.1.2.1.2.2.1.20.658|65|0 +1.3.6.1.2.1.2.2.1.20.659|65|0 +1.3.6.1.2.1.2.2.1.20.660|65|0 +1.3.6.1.2.1.2.2.1.20.661|65|0 +1.3.6.1.2.1.2.2.1.20.662|65|0 +1.3.6.1.2.1.2.2.1.20.663|65|0 +1.3.6.1.2.1.2.2.1.20.664|65|0 +1.3.6.1.2.1.2.2.1.20.665|65|0 +1.3.6.1.2.1.2.2.1.20.666|65|0 +1.3.6.1.2.1.2.2.1.20.667|65|0 +1.3.6.1.2.1.2.2.1.20.668|65|0 +1.3.6.1.2.1.2.2.1.20.669|65|0 +1.3.6.1.2.1.2.2.1.20.670|65|0 +1.3.6.1.2.1.2.2.1.20.671|65|0 +1.3.6.1.2.1.2.2.1.20.672|65|0 +1.3.6.1.2.1.2.2.1.20.673|65|0 +1.3.6.1.2.1.2.2.1.20.674|65|0 +1.3.6.1.2.1.2.2.1.20.675|65|0 +1.3.6.1.2.1.2.2.1.20.676|65|0 +1.3.6.1.2.1.2.2.1.20.677|65|0 +1.3.6.1.2.1.2.2.1.20.678|65|0 +1.3.6.1.2.1.2.2.1.20.679|65|0 +1.3.6.1.2.1.2.2.1.20.680|65|0 +1.3.6.1.2.1.2.2.1.20.681|65|0 +1.3.6.1.2.1.2.2.1.20.682|65|0 +1.3.6.1.2.1.2.2.1.20.683|65|0 +1.3.6.1.2.1.2.2.1.20.684|65|0 +1.3.6.1.2.1.2.2.1.20.685|65|0 +1.3.6.1.2.1.2.2.1.20.686|65|0 +1.3.6.1.2.1.2.2.1.20.687|65|0 +1.3.6.1.2.1.2.2.1.20.688|65|0 +1.3.6.1.2.1.2.2.1.20.689|65|0 +1.3.6.1.2.1.2.2.1.20.690|65|0 +1.3.6.1.2.1.2.2.1.20.691|65|0 +1.3.6.1.2.1.2.2.1.20.692|65|0 +1.3.6.1.2.1.2.2.1.20.693|65|0 +1.3.6.1.2.1.2.2.1.20.694|65|0 +1.3.6.1.2.1.2.2.1.20.695|65|0 +1.3.6.1.2.1.2.2.1.20.696|65|0 +1.3.6.1.2.1.2.2.1.20.697|65|0 +1.3.6.1.2.1.2.2.1.20.698|65|0 +1.3.6.1.2.1.2.2.1.20.699|65|0 +1.3.6.1.2.1.2.2.1.20.700|65|0 +1.3.6.1.2.1.2.2.1.20.701|65|0 +1.3.6.1.2.1.2.2.1.20.702|65|0 +1.3.6.1.2.1.2.2.1.20.703|65|0 +1.3.6.1.2.1.2.2.1.20.704|65|0 +1.3.6.1.2.1.2.2.1.20.705|65|0 +1.3.6.1.2.1.2.2.1.20.706|65|0 +1.3.6.1.2.1.2.2.1.20.707|65|0 +1.3.6.1.2.1.2.2.1.20.708|65|0 +1.3.6.1.2.1.2.2.1.20.709|65|0 +1.3.6.1.2.1.2.2.1.20.710|65|0 +1.3.6.1.2.1.2.2.1.20.711|65|0 +1.3.6.1.2.1.2.2.1.20.712|65|0 +1.3.6.1.2.1.2.2.1.20.713|65|0 +1.3.6.1.2.1.2.2.1.20.714|65|0 +1.3.6.1.2.1.2.2.1.20.715|65|0 +1.3.6.1.2.1.2.2.1.20.716|65|0 +1.3.6.1.2.1.2.2.1.20.717|65|0 +1.3.6.1.2.1.2.2.1.20.718|65|0 +1.3.6.1.2.1.2.2.1.20.719|65|0 +1.3.6.1.2.1.2.2.1.20.720|65|0 +1.3.6.1.2.1.2.2.1.20.721|65|0 +1.3.6.1.2.1.2.2.1.20.722|65|0 +1.3.6.1.2.1.2.2.1.20.723|65|0 +1.3.6.1.2.1.2.2.1.20.724|65|0 +1.3.6.1.2.1.2.2.1.20.725|65|0 +1.3.6.1.2.1.2.2.1.20.726|65|0 +1.3.6.1.2.1.2.2.1.20.727|65|0 +1.3.6.1.2.1.2.2.1.20.728|65|0 +1.3.6.1.2.1.2.2.1.20.729|65|0 +1.3.6.1.2.1.2.2.1.20.730|65|0 +1.3.6.1.2.1.2.2.1.20.731|65|0 +1.3.6.1.2.1.2.2.1.20.732|65|0 +1.3.6.1.2.1.2.2.1.20.733|65|0 +1.3.6.1.2.1.2.2.1.20.734|65|0 +1.3.6.1.2.1.2.2.1.20.735|65|0 +1.3.6.1.2.1.2.2.1.20.736|65|0 +1.3.6.1.2.1.2.2.1.20.737|65|0 +1.3.6.1.2.1.2.2.1.20.738|65|0 +1.3.6.1.2.1.2.2.1.20.739|65|0 +1.3.6.1.2.1.2.2.1.20.740|65|0 +1.3.6.1.2.1.2.2.1.20.741|65|0 +1.3.6.1.2.1.2.2.1.20.742|65|0 +1.3.6.1.2.1.2.2.1.20.743|65|0 +1.3.6.1.2.1.2.2.1.20.744|65|0 +1.3.6.1.2.1.2.2.1.20.745|65|0 +1.3.6.1.2.1.2.2.1.20.746|65|0 +1.3.6.1.2.1.2.2.1.20.747|65|0 +1.3.6.1.2.1.2.2.1.20.748|65|0 +1.3.6.1.2.1.2.2.1.20.749|65|0 +1.3.6.1.2.1.2.2.1.20.750|65|0 +1.3.6.1.2.1.2.2.1.20.751|65|0 +1.3.6.1.2.1.2.2.1.20.769|65|0 +1.3.6.1.2.1.2.2.1.20.770|65|0 +1.3.6.1.2.1.2.2.1.20.774|65|0 +1.3.6.1.2.1.2.2.1.20.775|65|0 +1.3.6.1.2.1.2.2.1.20.776|65|0 +1.3.6.1.2.1.2.2.1.20.785|65|0 +1.3.6.1.2.1.2.2.1.20.792|65|0 +1.3.6.1.2.1.2.2.1.20.793|65|0 +1.3.6.1.2.1.2.2.1.20.794|65|0 +1.3.6.1.2.1.2.2.1.20.801|65|0 +1.3.6.1.2.1.2.2.1.20.802|65|0 +1.3.6.1.2.1.2.2.1.20.803|65|0 +1.3.6.1.2.1.2.2.1.20.804|65|0 +1.3.6.1.2.1.2.2.1.20.805|65|0 +1.3.6.1.2.1.2.2.1.20.806|65|0 +1.3.6.1.2.1.2.2.1.20.807|65|0 +1.3.6.1.2.1.2.2.1.20.810|65|0 +1.3.6.1.2.1.2.2.1.20.811|65|0 +1.3.6.1.2.1.2.2.1.20.814|65|0 +1.3.6.1.2.1.2.2.1.20.815|65|0 +1.3.6.1.2.1.2.2.1.20.818|65|0 +1.3.6.1.2.1.2.2.1.20.834|65|0 +1.3.6.1.2.1.2.2.1.20.835|65|0 +1.3.6.1.2.1.2.2.1.20.836|65|0 +1.3.6.1.2.1.2.2.1.20.838|65|0 +1.3.6.1.2.1.2.2.1.20.848|65|0 +1.3.6.1.2.1.2.2.1.20.849|65|0 +1.3.6.1.2.1.2.2.1.20.850|65|0 +1.3.6.1.2.1.2.2.1.20.854|65|0 +1.3.6.1.2.1.2.2.1.20.871|65|0 +1.3.6.1.2.1.2.2.1.20.872|65|0 +1.3.6.1.2.1.2.2.1.20.874|65|0 +1.3.6.1.2.1.2.2.1.20.875|65|0 +1.3.6.1.2.1.2.2.1.20.876|65|0 +1.3.6.1.2.1.2.2.1.20.877|65|0 +1.3.6.1.2.1.2.2.1.20.883|65|0 +1.3.6.1.2.1.2.2.1.20.885|65|0 +1.3.6.1.2.1.2.2.1.20.907|65|0 +1.3.6.1.2.1.2.2.1.20.908|65|0 +1.3.6.1.2.1.2.2.1.20.909|65|0 +1.3.6.1.2.1.2.2.1.20.919|65|0 +1.3.6.1.2.1.2.2.1.20.920|65|0 +1.3.6.1.2.1.2.2.1.20.921|65|0 +1.3.6.1.2.1.2.2.1.20.925|65|0 +1.3.6.1.2.1.2.2.1.20.926|65|0 +1.3.6.1.2.1.2.2.1.20.927|65|0 +1.3.6.1.2.1.2.2.1.20.938|65|0 +1.3.6.1.2.1.2.2.1.20.939|65|0 +1.3.6.1.2.1.2.2.1.20.940|65|0 +1.3.6.1.2.1.2.2.1.20.941|65|0 +1.3.6.1.2.1.2.2.1.20.947|65|0 +1.3.6.1.2.1.2.2.1.20.948|65|0 +1.3.6.1.2.1.10.7.2.1.1.547|2|547 +1.3.6.1.2.1.10.7.2.1.1.548|2|548 +1.3.6.1.2.1.10.7.2.1.1.549|2|549 +1.3.6.1.2.1.10.7.2.1.1.550|2|550 +1.3.6.1.2.1.10.7.2.1.1.551|2|551 +1.3.6.1.2.1.10.7.2.1.1.552|2|552 +1.3.6.1.2.1.10.7.2.1.1.553|2|553 +1.3.6.1.2.1.10.7.2.1.1.554|2|554 +1.3.6.1.2.1.10.7.2.1.1.555|2|555 +1.3.6.1.2.1.10.7.2.1.1.556|2|556 +1.3.6.1.2.1.10.7.2.1.1.557|2|557 +1.3.6.1.2.1.10.7.2.1.1.558|2|558 +1.3.6.1.2.1.10.7.2.1.1.559|2|559 +1.3.6.1.2.1.10.7.2.1.1.560|2|560 +1.3.6.1.2.1.10.7.2.1.1.561|2|561 +1.3.6.1.2.1.10.7.2.1.1.562|2|562 +1.3.6.1.2.1.10.7.2.1.1.563|2|563 +1.3.6.1.2.1.10.7.2.1.1.564|2|564 +1.3.6.1.2.1.10.7.2.1.1.565|2|565 +1.3.6.1.2.1.10.7.2.1.1.566|2|566 +1.3.6.1.2.1.10.7.2.1.1.567|2|567 +1.3.6.1.2.1.10.7.2.1.1.568|2|568 +1.3.6.1.2.1.10.7.2.1.1.569|2|569 +1.3.6.1.2.1.10.7.2.1.1.570|2|570 +1.3.6.1.2.1.10.7.2.1.1.571|2|571 +1.3.6.1.2.1.10.7.2.1.1.572|2|572 +1.3.6.1.2.1.10.7.2.1.1.573|2|573 +1.3.6.1.2.1.10.7.2.1.1.574|2|574 +1.3.6.1.2.1.10.7.2.1.1.575|2|575 +1.3.6.1.2.1.10.7.2.1.1.576|2|576 +1.3.6.1.2.1.10.7.2.1.1.577|2|577 +1.3.6.1.2.1.10.7.2.1.1.578|2|578 +1.3.6.1.2.1.10.7.2.1.1.579|2|579 +1.3.6.1.2.1.10.7.2.1.1.580|2|580 +1.3.6.1.2.1.10.7.2.1.1.581|2|581 +1.3.6.1.2.1.10.7.2.1.1.582|2|582 +1.3.6.1.2.1.10.7.2.1.1.583|2|583 +1.3.6.1.2.1.10.7.2.1.1.584|2|584 +1.3.6.1.2.1.10.7.2.1.1.585|2|585 +1.3.6.1.2.1.10.7.2.1.1.586|2|586 +1.3.6.1.2.1.10.7.2.1.1.587|2|587 +1.3.6.1.2.1.10.7.2.1.1.588|2|588 +1.3.6.1.2.1.10.7.2.1.1.589|2|589 +1.3.6.1.2.1.10.7.2.1.1.590|2|590 +1.3.6.1.2.1.10.7.2.1.1.591|2|591 +1.3.6.1.2.1.10.7.2.1.1.592|2|592 +1.3.6.1.2.1.10.7.2.1.1.593|2|593 +1.3.6.1.2.1.10.7.2.1.1.594|2|594 +1.3.6.1.2.1.10.7.2.1.1.595|2|595 +1.3.6.1.2.1.10.7.2.1.1.596|2|596 +1.3.6.1.2.1.10.7.2.1.1.597|2|597 +1.3.6.1.2.1.10.7.2.1.1.598|2|598 +1.3.6.1.2.1.10.7.2.1.1.599|2|599 +1.3.6.1.2.1.10.7.2.1.1.600|2|600 +1.3.6.1.2.1.10.7.2.1.1.601|2|601 +1.3.6.1.2.1.10.7.2.1.1.602|2|602 +1.3.6.1.2.1.10.7.2.1.1.603|2|603 +1.3.6.1.2.1.10.7.2.1.1.604|2|604 +1.3.6.1.2.1.10.7.2.1.1.605|2|605 +1.3.6.1.2.1.10.7.2.1.1.606|2|606 +1.3.6.1.2.1.10.7.2.1.1.607|2|607 +1.3.6.1.2.1.10.7.2.1.1.608|2|608 +1.3.6.1.2.1.10.7.2.1.1.609|2|609 +1.3.6.1.2.1.10.7.2.1.1.610|2|610 +1.3.6.1.2.1.10.7.2.1.1.611|2|611 +1.3.6.1.2.1.10.7.2.1.1.612|2|612 +1.3.6.1.2.1.10.7.2.1.1.613|2|613 +1.3.6.1.2.1.10.7.2.1.1.614|2|614 +1.3.6.1.2.1.10.7.2.1.1.615|2|615 +1.3.6.1.2.1.10.7.2.1.1.616|2|616 +1.3.6.1.2.1.10.7.2.1.1.617|2|617 +1.3.6.1.2.1.10.7.2.1.1.618|2|618 +1.3.6.1.2.1.10.7.2.1.1.619|2|619 +1.3.6.1.2.1.10.7.2.1.1.620|2|620 +1.3.6.1.2.1.10.7.2.1.1.621|2|621 +1.3.6.1.2.1.10.7.2.1.1.622|2|622 +1.3.6.1.2.1.10.7.2.1.1.623|2|623 +1.3.6.1.2.1.10.7.2.1.1.624|2|624 +1.3.6.1.2.1.10.7.2.1.1.625|2|625 +1.3.6.1.2.1.10.7.2.1.1.626|2|626 +1.3.6.1.2.1.10.7.2.1.1.627|2|627 +1.3.6.1.2.1.10.7.2.1.1.628|2|628 +1.3.6.1.2.1.10.7.2.1.1.629|2|629 +1.3.6.1.2.1.10.7.2.1.1.630|2|630 +1.3.6.1.2.1.10.7.2.1.1.631|2|631 +1.3.6.1.2.1.10.7.2.1.1.632|2|632 +1.3.6.1.2.1.10.7.2.1.1.633|2|633 +1.3.6.1.2.1.10.7.2.1.1.634|2|634 +1.3.6.1.2.1.10.7.2.1.1.635|2|635 +1.3.6.1.2.1.10.7.2.1.1.636|2|636 +1.3.6.1.2.1.10.7.2.1.1.637|2|637 +1.3.6.1.2.1.10.7.2.1.1.638|2|638 +1.3.6.1.2.1.10.7.2.1.1.639|2|639 +1.3.6.1.2.1.10.7.2.1.1.640|2|640 +1.3.6.1.2.1.10.7.2.1.1.641|2|641 +1.3.6.1.2.1.10.7.2.1.1.642|2|642 +1.3.6.1.2.1.10.7.2.1.1.643|2|643 +1.3.6.1.2.1.10.7.2.1.1.644|2|644 +1.3.6.1.2.1.10.7.2.1.1.645|2|645 +1.3.6.1.2.1.10.7.2.1.1.646|2|646 +1.3.6.1.2.1.10.7.2.1.1.647|2|647 +1.3.6.1.2.1.10.7.2.1.1.648|2|648 +1.3.6.1.2.1.10.7.2.1.1.649|2|649 +1.3.6.1.2.1.10.7.2.1.1.650|2|650 +1.3.6.1.2.1.10.7.2.1.1.651|2|651 +1.3.6.1.2.1.10.7.2.1.1.652|2|652 +1.3.6.1.2.1.10.7.2.1.1.653|2|653 +1.3.6.1.2.1.10.7.2.1.1.654|2|654 +1.3.6.1.2.1.10.7.2.1.1.655|2|655 +1.3.6.1.2.1.10.7.2.1.1.656|2|656 +1.3.6.1.2.1.10.7.2.1.1.657|2|657 +1.3.6.1.2.1.10.7.2.1.1.658|2|658 +1.3.6.1.2.1.10.7.2.1.1.659|2|659 +1.3.6.1.2.1.10.7.2.1.1.660|2|660 +1.3.6.1.2.1.10.7.2.1.1.661|2|661 +1.3.6.1.2.1.10.7.2.1.1.662|2|662 +1.3.6.1.2.1.10.7.2.1.1.663|2|663 +1.3.6.1.2.1.10.7.2.1.1.664|2|664 +1.3.6.1.2.1.10.7.2.1.1.665|2|665 +1.3.6.1.2.1.10.7.2.1.1.666|2|666 +1.3.6.1.2.1.10.7.2.1.1.667|2|667 +1.3.6.1.2.1.10.7.2.1.1.668|2|668 +1.3.6.1.2.1.10.7.2.1.1.669|2|669 +1.3.6.1.2.1.10.7.2.1.1.670|2|670 +1.3.6.1.2.1.10.7.2.1.1.671|2|671 +1.3.6.1.2.1.10.7.2.1.1.672|2|672 +1.3.6.1.2.1.10.7.2.1.1.673|2|673 +1.3.6.1.2.1.10.7.2.1.1.674|2|674 +1.3.6.1.2.1.10.7.2.1.1.675|2|675 +1.3.6.1.2.1.10.7.2.1.1.676|2|676 +1.3.6.1.2.1.10.7.2.1.1.677|2|677 +1.3.6.1.2.1.10.7.2.1.1.678|2|678 +1.3.6.1.2.1.10.7.2.1.1.679|2|679 +1.3.6.1.2.1.10.7.2.1.1.680|2|680 +1.3.6.1.2.1.10.7.2.1.1.681|2|681 +1.3.6.1.2.1.10.7.2.1.1.682|2|682 +1.3.6.1.2.1.10.7.2.1.1.683|2|683 +1.3.6.1.2.1.10.7.2.1.1.684|2|684 +1.3.6.1.2.1.10.7.2.1.1.685|2|685 +1.3.6.1.2.1.10.7.2.1.1.686|2|686 +1.3.6.1.2.1.10.7.2.1.1.687|2|687 +1.3.6.1.2.1.10.7.2.1.1.688|2|688 +1.3.6.1.2.1.10.7.2.1.1.689|2|689 +1.3.6.1.2.1.10.7.2.1.1.690|2|690 +1.3.6.1.2.1.10.7.2.1.1.691|2|691 +1.3.6.1.2.1.10.7.2.1.1.692|2|692 +1.3.6.1.2.1.10.7.2.1.1.693|2|693 +1.3.6.1.2.1.10.7.2.1.1.694|2|694 +1.3.6.1.2.1.10.7.2.1.1.695|2|695 +1.3.6.1.2.1.10.7.2.1.1.696|2|696 +1.3.6.1.2.1.10.7.2.1.1.697|2|697 +1.3.6.1.2.1.10.7.2.1.1.698|2|698 +1.3.6.1.2.1.10.7.2.1.1.699|2|699 +1.3.6.1.2.1.10.7.2.1.1.700|2|700 +1.3.6.1.2.1.10.7.2.1.1.701|2|701 +1.3.6.1.2.1.10.7.2.1.1.702|2|702 +1.3.6.1.2.1.10.7.2.1.1.703|2|703 +1.3.6.1.2.1.10.7.2.1.1.704|2|704 +1.3.6.1.2.1.10.7.2.1.1.705|2|705 +1.3.6.1.2.1.10.7.2.1.1.706|2|706 +1.3.6.1.2.1.10.7.2.1.1.707|2|707 +1.3.6.1.2.1.10.7.2.1.1.708|2|708 +1.3.6.1.2.1.10.7.2.1.1.709|2|709 +1.3.6.1.2.1.10.7.2.1.1.710|2|710 +1.3.6.1.2.1.10.7.2.1.1.711|2|711 +1.3.6.1.2.1.10.7.2.1.1.712|2|712 +1.3.6.1.2.1.10.7.2.1.1.713|2|713 +1.3.6.1.2.1.10.7.2.1.1.714|2|714 +1.3.6.1.2.1.10.7.2.1.1.715|2|715 +1.3.6.1.2.1.10.7.2.1.1.716|2|716 +1.3.6.1.2.1.10.7.2.1.1.717|2|717 +1.3.6.1.2.1.10.7.2.1.1.718|2|718 +1.3.6.1.2.1.10.7.2.1.1.719|2|719 +1.3.6.1.2.1.10.7.2.1.1.720|2|720 +1.3.6.1.2.1.10.7.2.1.1.721|2|721 +1.3.6.1.2.1.10.7.2.1.1.722|2|722 +1.3.6.1.2.1.10.7.2.1.1.723|2|723 +1.3.6.1.2.1.10.7.2.1.1.724|2|724 +1.3.6.1.2.1.10.7.2.1.1.725|2|725 +1.3.6.1.2.1.10.7.2.1.1.726|2|726 +1.3.6.1.2.1.10.7.2.1.1.727|2|727 +1.3.6.1.2.1.10.7.2.1.1.728|2|728 +1.3.6.1.2.1.10.7.2.1.1.729|2|729 +1.3.6.1.2.1.10.7.2.1.1.730|2|730 +1.3.6.1.2.1.10.7.2.1.1.731|2|731 +1.3.6.1.2.1.10.7.2.1.1.732|2|732 +1.3.6.1.2.1.10.7.2.1.1.733|2|733 +1.3.6.1.2.1.10.7.2.1.1.734|2|734 +1.3.6.1.2.1.10.7.2.1.1.735|2|735 +1.3.6.1.2.1.10.7.2.1.1.736|2|736 +1.3.6.1.2.1.10.7.2.1.1.737|2|737 +1.3.6.1.2.1.10.7.2.1.1.738|2|738 +1.3.6.1.2.1.10.7.2.1.1.739|2|739 +1.3.6.1.2.1.10.7.2.1.1.740|2|740 +1.3.6.1.2.1.10.7.2.1.1.741|2|741 +1.3.6.1.2.1.10.7.2.1.1.742|2|742 +1.3.6.1.2.1.10.7.2.1.1.743|2|743 +1.3.6.1.2.1.10.7.2.1.1.744|2|744 +1.3.6.1.2.1.10.7.2.1.1.745|2|745 +1.3.6.1.2.1.10.7.2.1.1.746|2|746 +1.3.6.1.2.1.10.7.2.1.1.747|2|747 +1.3.6.1.2.1.10.7.2.1.1.748|2|748 +1.3.6.1.2.1.10.7.2.1.1.749|2|749 +1.3.6.1.2.1.10.7.2.1.1.750|2|750 +1.3.6.1.2.1.10.7.2.1.1.751|2|751 +1.3.6.1.2.1.10.7.2.1.19.547|2|3 +1.3.6.1.2.1.10.7.2.1.19.548|2|3 +1.3.6.1.2.1.10.7.2.1.19.549|2|3 +1.3.6.1.2.1.10.7.2.1.19.550|2|3 +1.3.6.1.2.1.10.7.2.1.19.551|2|3 +1.3.6.1.2.1.10.7.2.1.19.552|2|3 +1.3.6.1.2.1.10.7.2.1.19.553|2|3 +1.3.6.1.2.1.10.7.2.1.19.554|2|3 +1.3.6.1.2.1.10.7.2.1.19.555|2|3 +1.3.6.1.2.1.10.7.2.1.19.556|2|3 +1.3.6.1.2.1.10.7.2.1.19.557|2|3 +1.3.6.1.2.1.10.7.2.1.19.558|2|3 +1.3.6.1.2.1.10.7.2.1.19.559|2|3 +1.3.6.1.2.1.10.7.2.1.19.560|2|3 +1.3.6.1.2.1.10.7.2.1.19.561|2|3 +1.3.6.1.2.1.10.7.2.1.19.562|2|1 +1.3.6.1.2.1.10.7.2.1.19.563|2|3 +1.3.6.1.2.1.10.7.2.1.19.564|2|1 +1.3.6.1.2.1.10.7.2.1.19.565|2|3 +1.3.6.1.2.1.10.7.2.1.19.566|2|3 +1.3.6.1.2.1.10.7.2.1.19.567|2|3 +1.3.6.1.2.1.10.7.2.1.19.568|2|3 +1.3.6.1.2.1.10.7.2.1.19.569|2|1 +1.3.6.1.2.1.10.7.2.1.19.570|2|3 +1.3.6.1.2.1.10.7.2.1.19.571|2|3 +1.3.6.1.2.1.10.7.2.1.19.572|2|1 +1.3.6.1.2.1.10.7.2.1.19.573|2|1 +1.3.6.1.2.1.10.7.2.1.19.574|2|1 +1.3.6.1.2.1.10.7.2.1.19.575|2|3 +1.3.6.1.2.1.10.7.2.1.19.576|2|1 +1.3.6.1.2.1.10.7.2.1.19.577|2|3 +1.3.6.1.2.1.10.7.2.1.19.578|2|3 +1.3.6.1.2.1.10.7.2.1.19.579|2|3 +1.3.6.1.2.1.10.7.2.1.19.580|2|3 +1.3.6.1.2.1.10.7.2.1.19.581|2|3 +1.3.6.1.2.1.10.7.2.1.19.582|2|3 +1.3.6.1.2.1.10.7.2.1.19.583|2|3 +1.3.6.1.2.1.10.7.2.1.19.584|2|3 +1.3.6.1.2.1.10.7.2.1.19.585|2|3 +1.3.6.1.2.1.10.7.2.1.19.586|2|3 +1.3.6.1.2.1.10.7.2.1.19.587|2|3 +1.3.6.1.2.1.10.7.2.1.19.588|2|3 +1.3.6.1.2.1.10.7.2.1.19.589|2|3 +1.3.6.1.2.1.10.7.2.1.19.590|2|3 +1.3.6.1.2.1.10.7.2.1.19.591|2|3 +1.3.6.1.2.1.10.7.2.1.19.592|2|1 +1.3.6.1.2.1.10.7.2.1.19.593|2|1 +1.3.6.1.2.1.10.7.2.1.19.594|2|1 +1.3.6.1.2.1.10.7.2.1.19.595|2|3 +1.3.6.1.2.1.10.7.2.1.19.596|2|1 +1.3.6.1.2.1.10.7.2.1.19.597|2|1 +1.3.6.1.2.1.10.7.2.1.19.598|2|1 +1.3.6.1.2.1.10.7.2.1.19.599|2|1 +1.3.6.1.2.1.10.7.2.1.19.600|2|3 +1.3.6.1.2.1.10.7.2.1.19.601|2|3 +1.3.6.1.2.1.10.7.2.1.19.602|2|1 +1.3.6.1.2.1.10.7.2.1.19.603|2|3 +1.3.6.1.2.1.10.7.2.1.19.604|2|3 +1.3.6.1.2.1.10.7.2.1.19.605|2|1 +1.3.6.1.2.1.10.7.2.1.19.606|2|1 +1.3.6.1.2.1.10.7.2.1.19.607|2|1 +1.3.6.1.2.1.10.7.2.1.19.608|2|1 +1.3.6.1.2.1.10.7.2.1.19.609|2|1 +1.3.6.1.2.1.10.7.2.1.19.610|2|3 +1.3.6.1.2.1.10.7.2.1.19.611|2|1 +1.3.6.1.2.1.10.7.2.1.19.612|2|3 +1.3.6.1.2.1.10.7.2.1.19.613|2|3 +1.3.6.1.2.1.10.7.2.1.19.614|2|3 +1.3.6.1.2.1.10.7.2.1.19.615|2|3 +1.3.6.1.2.1.10.7.2.1.19.616|2|3 +1.3.6.1.2.1.10.7.2.1.19.617|2|3 +1.3.6.1.2.1.10.7.2.1.19.618|2|3 +1.3.6.1.2.1.10.7.2.1.19.619|2|3 +1.3.6.1.2.1.10.7.2.1.19.620|2|1 +1.3.6.1.2.1.10.7.2.1.19.621|2|1 +1.3.6.1.2.1.10.7.2.1.19.622|2|3 +1.3.6.1.2.1.10.7.2.1.19.623|2|1 +1.3.6.1.2.1.10.7.2.1.19.624|2|3 +1.3.6.1.2.1.10.7.2.1.19.625|2|1 +1.3.6.1.2.1.10.7.2.1.19.626|2|3 +1.3.6.1.2.1.10.7.2.1.19.627|2|3 +1.3.6.1.2.1.10.7.2.1.19.628|2|1 +1.3.6.1.2.1.10.7.2.1.19.629|2|3 +1.3.6.1.2.1.10.7.2.1.19.630|2|1 +1.3.6.1.2.1.10.7.2.1.19.631|2|1 +1.3.6.1.2.1.10.7.2.1.19.632|2|3 +1.3.6.1.2.1.10.7.2.1.19.633|2|3 +1.3.6.1.2.1.10.7.2.1.19.634|2|3 +1.3.6.1.2.1.10.7.2.1.19.635|2|1 +1.3.6.1.2.1.10.7.2.1.19.636|2|1 +1.3.6.1.2.1.10.7.2.1.19.637|2|1 +1.3.6.1.2.1.10.7.2.1.19.638|2|3 +1.3.6.1.2.1.10.7.2.1.19.639|2|1 +1.3.6.1.2.1.10.7.2.1.19.640|2|1 +1.3.6.1.2.1.10.7.2.1.19.641|2|1 +1.3.6.1.2.1.10.7.2.1.19.642|2|3 +1.3.6.1.2.1.10.7.2.1.19.643|2|1 +1.3.6.1.2.1.10.7.2.1.19.644|2|3 +1.3.6.1.2.1.10.7.2.1.19.645|2|1 +1.3.6.1.2.1.10.7.2.1.19.646|2|1 +1.3.6.1.2.1.10.7.2.1.19.647|2|3 +1.3.6.1.2.1.10.7.2.1.19.648|2|1 +1.3.6.1.2.1.10.7.2.1.19.649|2|3 +1.3.6.1.2.1.10.7.2.1.19.650|2|1 +1.3.6.1.2.1.10.7.2.1.19.651|2|3 +1.3.6.1.2.1.10.7.2.1.19.652|2|3 +1.3.6.1.2.1.10.7.2.1.19.653|2|1 +1.3.6.1.2.1.10.7.2.1.19.654|2|3 +1.3.6.1.2.1.10.7.2.1.19.655|2|3 +1.3.6.1.2.1.10.7.2.1.19.656|2|3 +1.3.6.1.2.1.10.7.2.1.19.657|2|3 +1.3.6.1.2.1.10.7.2.1.19.658|2|1 +1.3.6.1.2.1.10.7.2.1.19.659|2|3 +1.3.6.1.2.1.10.7.2.1.19.660|2|3 +1.3.6.1.2.1.10.7.2.1.19.661|2|3 +1.3.6.1.2.1.10.7.2.1.19.662|2|3 +1.3.6.1.2.1.10.7.2.1.19.663|2|3 +1.3.6.1.2.1.10.7.2.1.19.664|2|3 +1.3.6.1.2.1.10.7.2.1.19.665|2|3 +1.3.6.1.2.1.10.7.2.1.19.666|2|3 +1.3.6.1.2.1.10.7.2.1.19.667|2|3 +1.3.6.1.2.1.10.7.2.1.19.668|2|1 +1.3.6.1.2.1.10.7.2.1.19.669|2|3 +1.3.6.1.2.1.10.7.2.1.19.670|2|3 +1.3.6.1.2.1.10.7.2.1.19.671|2|1 +1.3.6.1.2.1.10.7.2.1.19.672|2|1 +1.3.6.1.2.1.10.7.2.1.19.673|2|1 +1.3.6.1.2.1.10.7.2.1.19.674|2|3 +1.3.6.1.2.1.10.7.2.1.19.675|2|1 +1.3.6.1.2.1.10.7.2.1.19.676|2|1 +1.3.6.1.2.1.10.7.2.1.19.677|2|3 +1.3.6.1.2.1.10.7.2.1.19.678|2|1 +1.3.6.1.2.1.10.7.2.1.19.679|2|3 +1.3.6.1.2.1.10.7.2.1.19.680|2|3 +1.3.6.1.2.1.10.7.2.1.19.681|2|1 +1.3.6.1.2.1.10.7.2.1.19.682|2|1 +1.3.6.1.2.1.10.7.2.1.19.683|2|1 +1.3.6.1.2.1.10.7.2.1.19.684|2|1 +1.3.6.1.2.1.10.7.2.1.19.685|2|3 +1.3.6.1.2.1.10.7.2.1.19.686|2|3 +1.3.6.1.2.1.10.7.2.1.19.687|2|3 +1.3.6.1.2.1.10.7.2.1.19.688|2|3 +1.3.6.1.2.1.10.7.2.1.19.689|2|3 +1.3.6.1.2.1.10.7.2.1.19.690|2|3 +1.3.6.1.2.1.10.7.2.1.19.691|2|3 +1.3.6.1.2.1.10.7.2.1.19.692|2|1 +1.3.6.1.2.1.10.7.2.1.19.693|2|1 +1.3.6.1.2.1.10.7.2.1.19.694|2|1 +1.3.6.1.2.1.10.7.2.1.19.695|2|1 +1.3.6.1.2.1.10.7.2.1.19.696|2|3 +1.3.6.1.2.1.10.7.2.1.19.697|2|3 +1.3.6.1.2.1.10.7.2.1.19.698|2|1 +1.3.6.1.2.1.10.7.2.1.19.699|2|1 +1.3.6.1.2.1.10.7.2.1.19.700|2|1 +1.3.6.1.2.1.10.7.2.1.19.701|2|1 +1.3.6.1.2.1.10.7.2.1.19.702|2|1 +1.3.6.1.2.1.10.7.2.1.19.703|2|1 +1.3.6.1.2.1.10.7.2.1.19.704|2|3 +1.3.6.1.2.1.10.7.2.1.19.705|2|3 +1.3.6.1.2.1.10.7.2.1.19.706|2|3 +1.3.6.1.2.1.10.7.2.1.19.707|2|3 +1.3.6.1.2.1.10.7.2.1.19.708|2|3 +1.3.6.1.2.1.10.7.2.1.19.709|2|3 +1.3.6.1.2.1.10.7.2.1.19.710|2|3 +1.3.6.1.2.1.10.7.2.1.19.711|2|1 +1.3.6.1.2.1.10.7.2.1.19.712|2|3 +1.3.6.1.2.1.10.7.2.1.19.713|2|3 +1.3.6.1.2.1.10.7.2.1.19.714|2|3 +1.3.6.1.2.1.10.7.2.1.19.715|2|1 +1.3.6.1.2.1.10.7.2.1.19.716|2|1 +1.3.6.1.2.1.10.7.2.1.19.717|2|3 +1.3.6.1.2.1.10.7.2.1.19.718|2|3 +1.3.6.1.2.1.10.7.2.1.19.719|2|3 +1.3.6.1.2.1.10.7.2.1.19.720|2|1 +1.3.6.1.2.1.10.7.2.1.19.721|2|3 +1.3.6.1.2.1.10.7.2.1.19.722|2|3 +1.3.6.1.2.1.10.7.2.1.19.723|2|3 +1.3.6.1.2.1.10.7.2.1.19.724|2|3 +1.3.6.1.2.1.10.7.2.1.19.725|2|3 +1.3.6.1.2.1.10.7.2.1.19.726|2|1 +1.3.6.1.2.1.10.7.2.1.19.727|2|3 +1.3.6.1.2.1.10.7.2.1.19.728|2|1 +1.3.6.1.2.1.10.7.2.1.19.729|2|3 +1.3.6.1.2.1.10.7.2.1.19.730|2|3 +1.3.6.1.2.1.10.7.2.1.19.731|2|3 +1.3.6.1.2.1.10.7.2.1.19.732|2|3 +1.3.6.1.2.1.10.7.2.1.19.733|2|3 +1.3.6.1.2.1.10.7.2.1.19.734|2|3 +1.3.6.1.2.1.10.7.2.1.19.735|2|3 +1.3.6.1.2.1.10.7.2.1.19.736|2|3 +1.3.6.1.2.1.10.7.2.1.19.737|2|3 +1.3.6.1.2.1.10.7.2.1.19.738|2|1 +1.3.6.1.2.1.10.7.2.1.19.739|2|3 +1.3.6.1.2.1.10.7.2.1.19.740|2|3 +1.3.6.1.2.1.10.7.2.1.19.741|2|1 +1.3.6.1.2.1.10.7.2.1.19.742|2|3 +1.3.6.1.2.1.10.7.2.1.19.743|2|1 +1.3.6.1.2.1.10.7.2.1.19.744|2|1 +1.3.6.1.2.1.10.7.2.1.19.745|2|3 +1.3.6.1.2.1.10.7.2.1.19.746|2|1 +1.3.6.1.2.1.10.7.2.1.19.747|2|1 +1.3.6.1.2.1.10.7.2.1.19.748|2|3 +1.3.6.1.2.1.10.7.2.1.19.749|2|3 +1.3.6.1.2.1.10.7.2.1.19.750|2|3 +1.3.6.1.2.1.10.7.2.1.19.751|2|3 +1.3.6.1.2.1.31.1.1.1.1.251|4|Vl1 +1.3.6.1.2.1.31.1.1.1.1.252|4|EO0/0 +1.3.6.1.2.1.31.1.1.1.1.253|4|Nu0 +1.3.6.1.2.1.31.1.1.1.1.254|4|SPAN RP +1.3.6.1.2.1.31.1.1.1.1.255|4|SPAN SP +1.3.6.1.2.1.31.1.1.1.1.258|4|Vl99 +1.3.6.1.2.1.31.1.1.1.1.259|4|CPP +1.3.6.1.2.1.31.1.1.1.1.260|4|VLAN-1 +1.3.6.1.2.1.31.1.1.1.1.261|4|VLAN-1002 +1.3.6.1.2.1.31.1.1.1.1.262|4|VLAN-1004 +1.3.6.1.2.1.31.1.1.1.1.263|4|VLAN-1005 +1.3.6.1.2.1.31.1.1.1.1.264|4|VLAN-1003 +1.3.6.1.2.1.31.1.1.1.1.265|4|VLAN-20 +1.3.6.1.2.1.31.1.1.1.1.266|4|VLAN-30 +1.3.6.1.2.1.31.1.1.1.1.267|4|VLAN-40 +1.3.6.1.2.1.31.1.1.1.1.268|4|VLAN-50 +1.3.6.1.2.1.31.1.1.1.1.269|4|VLAN-99 +1.3.6.1.2.1.31.1.1.1.1.270|4|Po100 +1.3.6.1.2.1.31.1.1.1.1.273|4|Po200 +1.3.6.1.2.1.31.1.1.1.1.274|4|Po2 +1.3.6.1.2.1.31.1.1.1.1.275|4|VLAN-901 +1.3.6.1.2.1.31.1.1.1.1.276|4|VLAN-902 +1.3.6.1.2.1.31.1.1.1.1.277|4|Po3 +1.3.6.1.2.1.31.1.1.1.1.278|4|Po22 +1.3.6.1.2.1.31.1.1.1.1.280|4|Po23 +1.3.6.1.2.1.31.1.1.1.1.281|4|Po4 +1.3.6.1.2.1.31.1.1.1.1.282|4|Po5 +1.3.6.1.2.1.31.1.1.1.1.283|4|Po24 +1.3.6.1.2.1.31.1.1.1.1.284|4|Po25 +1.3.6.1.2.1.31.1.1.1.1.285|4|Po6 +1.3.6.1.2.1.31.1.1.1.1.286|4|Po26 +1.3.6.1.2.1.31.1.1.1.1.287|4|Po7 +1.3.6.1.2.1.31.1.1.1.1.288|4|Po27 +1.3.6.1.2.1.31.1.1.1.1.291|4|VLAN-60 +1.3.6.1.2.1.31.1.1.1.1.292|4|VLAN-70 +1.3.6.1.2.1.31.1.1.1.1.293|4|VLAN-201 +1.3.6.1.2.1.31.1.1.1.1.294|4|VLAN-202 +1.3.6.1.2.1.31.1.1.1.1.295|4|VLAN-203 +1.3.6.1.2.1.31.1.1.1.1.395|4|Po51 +1.3.6.1.2.1.31.1.1.1.1.396|4|Po40 +1.3.6.1.2.1.31.1.1.1.1.398|4|Vl30 +1.3.6.1.2.1.31.1.1.1.1.399|4|Vl20 +1.3.6.1.2.1.31.1.1.1.1.414|4|VLAN-106 +1.3.6.1.2.1.31.1.1.1.1.415|4|Lo0 +1.3.6.1.2.1.31.1.1.1.1.417|4|Vl40 +1.3.6.1.2.1.31.1.1.1.1.418|4|Vl50 +1.3.6.1.2.1.31.1.1.1.1.438|4|VLAN-300 +1.3.6.1.2.1.31.1.1.1.1.439|4|VLAN-301 +1.3.6.1.2.1.31.1.1.1.1.440|4|VLAN-302 +1.3.6.1.2.1.31.1.1.1.1.441|4|VLAN-303 +1.3.6.1.2.1.31.1.1.1.1.442|4|VLAN-304 +1.3.6.1.2.1.31.1.1.1.1.443|4|VLAN-311 +1.3.6.1.2.1.31.1.1.1.1.444|4|VLAN-312 +1.3.6.1.2.1.31.1.1.1.1.445|4|VLAN-321 +1.3.6.1.2.1.31.1.1.1.1.446|4|VLAN-322 +1.3.6.1.2.1.31.1.1.1.1.447|4|VLAN-331 +1.3.6.1.2.1.31.1.1.1.1.448|4|VLAN-332 +1.3.6.1.2.1.31.1.1.1.1.449|4|VLAN-341 +1.3.6.1.2.1.31.1.1.1.1.450|4|VLAN-342 +1.3.6.1.2.1.31.1.1.1.1.451|4|VLAN-351 +1.3.6.1.2.1.31.1.1.1.1.452|4|VLAN-352 +1.3.6.1.2.1.31.1.1.1.1.453|4|VLAN-361 +1.3.6.1.2.1.31.1.1.1.1.454|4|VLAN-362 +1.3.6.1.2.1.31.1.1.1.1.455|4|VLAN-371 +1.3.6.1.2.1.31.1.1.1.1.456|4|VLAN-372 +1.3.6.1.2.1.31.1.1.1.1.457|4|VLAN-307 +1.3.6.1.2.1.31.1.1.1.1.462|4|VLAN-305 +1.3.6.1.2.1.31.1.1.1.1.464|4|Po52 +1.3.6.1.2.1.31.1.1.1.1.465|4|Po53 +1.3.6.1.2.1.31.1.1.1.1.467|4|VLAN-80 +1.3.6.1.2.1.31.1.1.1.1.468|4|VLAN-306 +1.3.6.1.2.1.31.1.1.1.1.474|4|VLAN-313 +1.3.6.1.2.1.31.1.1.1.1.475|4|VLAN-308 +1.3.6.1.2.1.31.1.1.1.1.476|4|VLAN-314 +1.3.6.1.2.1.31.1.1.1.1.477|4|Po54 +1.3.6.1.2.1.31.1.1.1.1.478|4|VLAN-315 +1.3.6.1.2.1.31.1.1.1.1.487|4|Po60 +1.3.6.1.2.1.31.1.1.1.1.489|4|VLAN-316 +1.3.6.1.2.1.31.1.1.1.1.490|4|VLAN-317 +1.3.6.1.2.1.31.1.1.1.1.493|4|VLAN-318 +1.3.6.1.2.1.31.1.1.1.1.494|4|Po55 +1.3.6.1.2.1.31.1.1.1.1.495|4|Po56 +1.3.6.1.2.1.31.1.1.1.1.496|4|Po31 +1.3.6.1.2.1.31.1.1.1.1.497|4|Po32 +1.3.6.1.2.1.31.1.1.1.1.502|4|VLAN-400 +1.3.6.1.2.1.31.1.1.1.1.503|4|VLAN-401 +1.3.6.1.2.1.31.1.1.1.1.504|4|VLAN-402 +1.3.6.1.2.1.31.1.1.1.1.505|4|VLAN-403 +1.3.6.1.2.1.31.1.1.1.1.506|4|Vl400 +1.3.6.1.2.1.31.1.1.1.1.509|4|Vl402 +1.3.6.1.2.1.31.1.1.1.1.510|4|VLAN-404 +1.3.6.1.2.1.31.1.1.1.1.511|4|VLAN-406 +1.3.6.1.2.1.31.1.1.1.1.513|4|VLAN-405 +1.3.6.1.2.1.31.1.1.1.1.514|4|Po57 +1.3.6.1.2.1.31.1.1.1.1.515|4|Po58 +1.3.6.1.2.1.31.1.1.1.1.516|4|VLAN-310 +1.3.6.1.2.1.31.1.1.1.1.517|4|VLAN-407 +1.3.6.1.2.1.31.1.1.1.1.518|4|Po70 +1.3.6.1.2.1.31.1.1.1.1.519|4|Po1 +1.3.6.1.2.1.31.1.1.1.1.520|4|Po71 +1.3.6.1.2.1.31.1.1.1.1.523|4|VLAN-911 +1.3.6.1.2.1.31.1.1.1.1.524|4|VLAN-912 +1.3.6.1.2.1.31.1.1.1.1.525|4|VLAN-409 +1.3.6.1.2.1.31.1.1.1.1.526|4|VLAN-410 +1.3.6.1.2.1.31.1.1.1.1.527|4|VLAN-411 +1.3.6.1.2.1.31.1.1.1.1.528|4|VLAN-412 +1.3.6.1.2.1.31.1.1.1.1.529|4|VLAN-413 +1.3.6.1.2.1.31.1.1.1.1.530|4|VLAN-414 +1.3.6.1.2.1.31.1.1.1.1.531|4|VLAN-415 +1.3.6.1.2.1.31.1.1.1.1.532|4|VLAN-416 +1.3.6.1.2.1.31.1.1.1.1.533|4|VLAN-417 +1.3.6.1.2.1.31.1.1.1.1.534|4|VLAN-418 +1.3.6.1.2.1.31.1.1.1.1.535|4|Vl409 +1.3.6.1.2.1.31.1.1.1.1.536|4|Vl410 +1.3.6.1.2.1.31.1.1.1.1.538|4|Vl412 +1.3.6.1.2.1.31.1.1.1.1.540|4|VLAN-419 +1.3.6.1.2.1.31.1.1.1.1.541|4|VLAN-29 +1.3.6.1.2.1.31.1.1.1.1.542|4|Vl416 +1.3.6.1.2.1.31.1.1.1.1.543|4|Vl415 +1.3.6.1.2.1.31.1.1.1.1.544|4|Vl420 +1.3.6.1.2.1.31.1.1.1.1.545|4|VLAN-420 +1.3.6.1.2.1.31.1.1.1.1.546|4|VLAN-421 +1.3.6.1.2.1.31.1.1.1.1.547|4|Te1/1 +1.3.6.1.2.1.31.1.1.1.1.548|4|Te1/2 +1.3.6.1.2.1.31.1.1.1.1.549|4|Te1/3 +1.3.6.1.2.1.31.1.1.1.1.550|4|Te1/4 +1.3.6.1.2.1.31.1.1.1.1.551|4|Te1/5 +1.3.6.1.2.1.31.1.1.1.1.552|4|Te1/6 +1.3.6.1.2.1.31.1.1.1.1.553|4|Te1/7 +1.3.6.1.2.1.31.1.1.1.1.554|4|Te1/8 +1.3.6.1.2.1.31.1.1.1.1.555|4|Gi3/1 +1.3.6.1.2.1.31.1.1.1.1.556|4|Gi3/2 +1.3.6.1.2.1.31.1.1.1.1.557|4|Gi3/3 +1.3.6.1.2.1.31.1.1.1.1.558|4|Gi3/4 +1.3.6.1.2.1.31.1.1.1.1.559|4|Gi3/5 +1.3.6.1.2.1.31.1.1.1.1.560|4|Gi3/6 +1.3.6.1.2.1.31.1.1.1.1.561|4|Gi3/7 +1.3.6.1.2.1.31.1.1.1.1.562|4|Gi3/8 +1.3.6.1.2.1.31.1.1.1.1.563|4|Gi3/9 +1.3.6.1.2.1.31.1.1.1.1.564|4|Gi3/10 +1.3.6.1.2.1.31.1.1.1.1.565|4|Gi3/11 +1.3.6.1.2.1.31.1.1.1.1.566|4|Gi3/12 +1.3.6.1.2.1.31.1.1.1.1.567|4|Gi3/13 +1.3.6.1.2.1.31.1.1.1.1.568|4|Gi3/14 +1.3.6.1.2.1.31.1.1.1.1.569|4|Gi3/15 +1.3.6.1.2.1.31.1.1.1.1.570|4|Gi3/16 +1.3.6.1.2.1.31.1.1.1.1.571|4|Gi3/17 +1.3.6.1.2.1.31.1.1.1.1.572|4|Gi3/18 +1.3.6.1.2.1.31.1.1.1.1.573|4|Gi3/19 +1.3.6.1.2.1.31.1.1.1.1.574|4|Gi3/20 +1.3.6.1.2.1.31.1.1.1.1.575|4|Gi3/21 +1.3.6.1.2.1.31.1.1.1.1.576|4|Gi3/22 +1.3.6.1.2.1.31.1.1.1.1.577|4|Gi3/23 +1.3.6.1.2.1.31.1.1.1.1.578|4|Gi3/24 +1.3.6.1.2.1.31.1.1.1.1.579|4|Gi3/25 +1.3.6.1.2.1.31.1.1.1.1.580|4|Gi3/26 +1.3.6.1.2.1.31.1.1.1.1.581|4|Gi3/27 +1.3.6.1.2.1.31.1.1.1.1.582|4|Gi3/28 +1.3.6.1.2.1.31.1.1.1.1.583|4|Gi3/29 +1.3.6.1.2.1.31.1.1.1.1.584|4|Gi3/30 +1.3.6.1.2.1.31.1.1.1.1.585|4|Gi3/31 +1.3.6.1.2.1.31.1.1.1.1.586|4|Gi3/32 +1.3.6.1.2.1.31.1.1.1.1.587|4|Gi3/33 +1.3.6.1.2.1.31.1.1.1.1.588|4|Gi3/34 +1.3.6.1.2.1.31.1.1.1.1.589|4|Gi3/35 +1.3.6.1.2.1.31.1.1.1.1.590|4|Gi3/36 +1.3.6.1.2.1.31.1.1.1.1.591|4|Gi3/37 +1.3.6.1.2.1.31.1.1.1.1.592|4|Gi3/38 +1.3.6.1.2.1.31.1.1.1.1.593|4|Gi3/39 +1.3.6.1.2.1.31.1.1.1.1.594|4|Gi3/40 +1.3.6.1.2.1.31.1.1.1.1.595|4|Gi3/41 +1.3.6.1.2.1.31.1.1.1.1.596|4|Gi3/42 +1.3.6.1.2.1.31.1.1.1.1.597|4|Gi3/43 +1.3.6.1.2.1.31.1.1.1.1.598|4|Gi3/44 +1.3.6.1.2.1.31.1.1.1.1.599|4|Gi3/45 +1.3.6.1.2.1.31.1.1.1.1.600|4|Gi3/46 +1.3.6.1.2.1.31.1.1.1.1.601|4|Gi3/47 +1.3.6.1.2.1.31.1.1.1.1.602|4|Gi3/48 +1.3.6.1.2.1.31.1.1.1.1.603|4|Gi4/1 +1.3.6.1.2.1.31.1.1.1.1.604|4|Gi4/2 +1.3.6.1.2.1.31.1.1.1.1.605|4|Gi4/3 +1.3.6.1.2.1.31.1.1.1.1.606|4|Gi4/4 +1.3.6.1.2.1.31.1.1.1.1.607|4|Gi4/5 +1.3.6.1.2.1.31.1.1.1.1.608|4|Gi4/6 +1.3.6.1.2.1.31.1.1.1.1.609|4|Gi4/7 +1.3.6.1.2.1.31.1.1.1.1.610|4|Gi4/8 +1.3.6.1.2.1.31.1.1.1.1.611|4|Gi4/9 +1.3.6.1.2.1.31.1.1.1.1.612|4|Gi4/10 +1.3.6.1.2.1.31.1.1.1.1.613|4|Gi4/11 +1.3.6.1.2.1.31.1.1.1.1.614|4|Gi4/12 +1.3.6.1.2.1.31.1.1.1.1.615|4|Gi4/13 +1.3.6.1.2.1.31.1.1.1.1.616|4|Gi4/14 +1.3.6.1.2.1.31.1.1.1.1.617|4|Gi4/15 +1.3.6.1.2.1.31.1.1.1.1.618|4|Gi4/16 +1.3.6.1.2.1.31.1.1.1.1.619|4|Gi4/17 +1.3.6.1.2.1.31.1.1.1.1.620|4|Gi4/18 +1.3.6.1.2.1.31.1.1.1.1.621|4|Gi4/19 +1.3.6.1.2.1.31.1.1.1.1.622|4|Gi4/20 +1.3.6.1.2.1.31.1.1.1.1.623|4|Gi4/21 +1.3.6.1.2.1.31.1.1.1.1.624|4|Gi4/22 +1.3.6.1.2.1.31.1.1.1.1.625|4|Gi4/23 +1.3.6.1.2.1.31.1.1.1.1.626|4|Gi4/24 +1.3.6.1.2.1.31.1.1.1.1.627|4|Gi4/25 +1.3.6.1.2.1.31.1.1.1.1.628|4|Gi4/26 +1.3.6.1.2.1.31.1.1.1.1.629|4|Gi4/27 +1.3.6.1.2.1.31.1.1.1.1.630|4|Gi4/28 +1.3.6.1.2.1.31.1.1.1.1.631|4|Gi4/29 +1.3.6.1.2.1.31.1.1.1.1.632|4|Gi4/30 +1.3.6.1.2.1.31.1.1.1.1.633|4|Gi4/31 +1.3.6.1.2.1.31.1.1.1.1.634|4|Gi4/32 +1.3.6.1.2.1.31.1.1.1.1.635|4|Gi4/33 +1.3.6.1.2.1.31.1.1.1.1.636|4|Gi4/34 +1.3.6.1.2.1.31.1.1.1.1.637|4|Gi4/35 +1.3.6.1.2.1.31.1.1.1.1.638|4|Gi4/36 +1.3.6.1.2.1.31.1.1.1.1.639|4|Gi4/37 +1.3.6.1.2.1.31.1.1.1.1.640|4|Gi4/38 +1.3.6.1.2.1.31.1.1.1.1.641|4|Gi4/39 +1.3.6.1.2.1.31.1.1.1.1.642|4|Gi4/40 +1.3.6.1.2.1.31.1.1.1.1.643|4|Gi4/41 +1.3.6.1.2.1.31.1.1.1.1.644|4|Gi4/42 +1.3.6.1.2.1.31.1.1.1.1.645|4|Gi4/43 +1.3.6.1.2.1.31.1.1.1.1.646|4|Gi4/44 +1.3.6.1.2.1.31.1.1.1.1.647|4|Gi4/45 +1.3.6.1.2.1.31.1.1.1.1.648|4|Gi4/46 +1.3.6.1.2.1.31.1.1.1.1.649|4|Gi4/47 +1.3.6.1.2.1.31.1.1.1.1.650|4|Gi4/48 +1.3.6.1.2.1.31.1.1.1.1.651|4|Gi5/1 +1.3.6.1.2.1.31.1.1.1.1.652|4|Gi5/2 +1.3.6.1.2.1.31.1.1.1.1.653|4|Gi5/3 +1.3.6.1.2.1.31.1.1.1.1.654|4|Te5/4 +1.3.6.1.2.1.31.1.1.1.1.655|4|Te5/5 +1.3.6.1.2.1.31.1.1.1.1.656|4|Gi6/1 +1.3.6.1.2.1.31.1.1.1.1.657|4|Gi6/2 +1.3.6.1.2.1.31.1.1.1.1.658|4|Gi6/3 +1.3.6.1.2.1.31.1.1.1.1.659|4|Gi6/4 +1.3.6.1.2.1.31.1.1.1.1.660|4|Gi6/5 +1.3.6.1.2.1.31.1.1.1.1.661|4|Gi6/6 +1.3.6.1.2.1.31.1.1.1.1.662|4|Gi6/7 +1.3.6.1.2.1.31.1.1.1.1.663|4|Gi6/8 +1.3.6.1.2.1.31.1.1.1.1.664|4|Gi6/9 +1.3.6.1.2.1.31.1.1.1.1.665|4|Gi6/10 +1.3.6.1.2.1.31.1.1.1.1.666|4|Gi6/11 +1.3.6.1.2.1.31.1.1.1.1.667|4|Gi6/12 +1.3.6.1.2.1.31.1.1.1.1.668|4|Gi6/13 +1.3.6.1.2.1.31.1.1.1.1.669|4|Gi6/14 +1.3.6.1.2.1.31.1.1.1.1.670|4|Gi6/15 +1.3.6.1.2.1.31.1.1.1.1.671|4|Gi6/16 +1.3.6.1.2.1.31.1.1.1.1.672|4|Gi6/17 +1.3.6.1.2.1.31.1.1.1.1.673|4|Gi6/18 +1.3.6.1.2.1.31.1.1.1.1.674|4|Gi6/19 +1.3.6.1.2.1.31.1.1.1.1.675|4|Gi6/20 +1.3.6.1.2.1.31.1.1.1.1.676|4|Gi6/21 +1.3.6.1.2.1.31.1.1.1.1.677|4|Gi6/22 +1.3.6.1.2.1.31.1.1.1.1.678|4|Gi6/23 +1.3.6.1.2.1.31.1.1.1.1.679|4|Gi6/24 +1.3.6.1.2.1.31.1.1.1.1.680|4|Gi6/25 +1.3.6.1.2.1.31.1.1.1.1.681|4|Gi6/26 +1.3.6.1.2.1.31.1.1.1.1.682|4|Gi6/27 +1.3.6.1.2.1.31.1.1.1.1.683|4|Gi6/28 +1.3.6.1.2.1.31.1.1.1.1.684|4|Gi6/29 +1.3.6.1.2.1.31.1.1.1.1.685|4|Gi6/30 +1.3.6.1.2.1.31.1.1.1.1.686|4|Gi6/31 +1.3.6.1.2.1.31.1.1.1.1.687|4|Gi6/32 +1.3.6.1.2.1.31.1.1.1.1.688|4|Gi6/33 +1.3.6.1.2.1.31.1.1.1.1.689|4|Gi6/34 +1.3.6.1.2.1.31.1.1.1.1.690|4|Gi6/35 +1.3.6.1.2.1.31.1.1.1.1.691|4|Gi6/36 +1.3.6.1.2.1.31.1.1.1.1.692|4|Gi6/37 +1.3.6.1.2.1.31.1.1.1.1.693|4|Gi6/38 +1.3.6.1.2.1.31.1.1.1.1.694|4|Gi6/39 +1.3.6.1.2.1.31.1.1.1.1.695|4|Gi6/40 +1.3.6.1.2.1.31.1.1.1.1.696|4|Gi6/41 +1.3.6.1.2.1.31.1.1.1.1.697|4|Gi6/42 +1.3.6.1.2.1.31.1.1.1.1.698|4|Gi6/43 +1.3.6.1.2.1.31.1.1.1.1.699|4|Gi6/44 +1.3.6.1.2.1.31.1.1.1.1.700|4|Gi6/45 +1.3.6.1.2.1.31.1.1.1.1.701|4|Gi6/46 +1.3.6.1.2.1.31.1.1.1.1.702|4|Gi6/47 +1.3.6.1.2.1.31.1.1.1.1.703|4|Gi6/48 +1.3.6.1.2.1.31.1.1.1.1.704|4|Gi7/1 +1.3.6.1.2.1.31.1.1.1.1.705|4|Gi7/2 +1.3.6.1.2.1.31.1.1.1.1.706|4|Gi7/3 +1.3.6.1.2.1.31.1.1.1.1.707|4|Gi7/4 +1.3.6.1.2.1.31.1.1.1.1.708|4|Gi7/5 +1.3.6.1.2.1.31.1.1.1.1.709|4|Gi7/6 +1.3.6.1.2.1.31.1.1.1.1.710|4|Gi7/7 +1.3.6.1.2.1.31.1.1.1.1.711|4|Gi7/8 +1.3.6.1.2.1.31.1.1.1.1.712|4|Gi7/9 +1.3.6.1.2.1.31.1.1.1.1.713|4|Gi7/10 +1.3.6.1.2.1.31.1.1.1.1.714|4|Gi7/11 +1.3.6.1.2.1.31.1.1.1.1.715|4|Gi7/12 +1.3.6.1.2.1.31.1.1.1.1.716|4|Gi7/13 +1.3.6.1.2.1.31.1.1.1.1.717|4|Gi7/14 +1.3.6.1.2.1.31.1.1.1.1.718|4|Gi7/15 +1.3.6.1.2.1.31.1.1.1.1.719|4|Gi7/16 +1.3.6.1.2.1.31.1.1.1.1.720|4|Gi7/17 +1.3.6.1.2.1.31.1.1.1.1.721|4|Gi7/18 +1.3.6.1.2.1.31.1.1.1.1.722|4|Gi7/19 +1.3.6.1.2.1.31.1.1.1.1.723|4|Gi7/20 +1.3.6.1.2.1.31.1.1.1.1.724|4|Gi7/21 +1.3.6.1.2.1.31.1.1.1.1.725|4|Gi7/22 +1.3.6.1.2.1.31.1.1.1.1.726|4|Gi7/23 +1.3.6.1.2.1.31.1.1.1.1.727|4|Gi7/24 +1.3.6.1.2.1.31.1.1.1.1.728|4|Gi7/25 +1.3.6.1.2.1.31.1.1.1.1.729|4|Gi7/26 +1.3.6.1.2.1.31.1.1.1.1.730|4|Gi7/27 +1.3.6.1.2.1.31.1.1.1.1.731|4|Gi7/28 +1.3.6.1.2.1.31.1.1.1.1.732|4|Gi7/29 +1.3.6.1.2.1.31.1.1.1.1.733|4|Gi7/30 +1.3.6.1.2.1.31.1.1.1.1.734|4|Gi7/31 +1.3.6.1.2.1.31.1.1.1.1.735|4|Gi7/32 +1.3.6.1.2.1.31.1.1.1.1.736|4|Gi7/33 +1.3.6.1.2.1.31.1.1.1.1.737|4|Gi7/34 +1.3.6.1.2.1.31.1.1.1.1.738|4|Gi7/35 +1.3.6.1.2.1.31.1.1.1.1.739|4|Gi7/36 +1.3.6.1.2.1.31.1.1.1.1.740|4|Gi7/37 +1.3.6.1.2.1.31.1.1.1.1.741|4|Gi7/38 +1.3.6.1.2.1.31.1.1.1.1.742|4|Gi7/39 +1.3.6.1.2.1.31.1.1.1.1.743|4|Gi7/40 +1.3.6.1.2.1.31.1.1.1.1.744|4|Gi7/41 +1.3.6.1.2.1.31.1.1.1.1.745|4|Gi7/42 +1.3.6.1.2.1.31.1.1.1.1.746|4|Gi7/43 +1.3.6.1.2.1.31.1.1.1.1.747|4|Gi7/44 +1.3.6.1.2.1.31.1.1.1.1.748|4|Gi7/45 +1.3.6.1.2.1.31.1.1.1.1.749|4|Gi7/46 +1.3.6.1.2.1.31.1.1.1.1.750|4|Gi7/47 +1.3.6.1.2.1.31.1.1.1.1.751|4|Gi7/48 +1.3.6.1.2.1.31.1.1.1.1.768|4|VLAN-422 +1.3.6.1.2.1.31.1.1.1.1.769|4|Vl419 +1.3.6.1.2.1.31.1.1.1.1.770|4|Vl422 +1.3.6.1.2.1.31.1.1.1.1.771|4|VLAN-430 +1.3.6.1.2.1.31.1.1.1.1.772|4|VLAN-431 +1.3.6.1.2.1.31.1.1.1.1.773|4|VLAN-432 +1.3.6.1.2.1.31.1.1.1.1.774|4|Vl430 +1.3.6.1.2.1.31.1.1.1.1.775|4|Vl431 +1.3.6.1.2.1.31.1.1.1.1.776|4|Vl432 +1.3.6.1.2.1.31.1.1.1.1.777|4|VLAN-423 +1.3.6.1.2.1.31.1.1.1.1.778|4|VLAN-424 +1.3.6.1.2.1.31.1.1.1.1.779|4|VLAN-425 +1.3.6.1.2.1.31.1.1.1.1.780|4|VLAN-390 +1.3.6.1.2.1.31.1.1.1.1.781|4|VLAN-391 +1.3.6.1.2.1.31.1.1.1.1.782|4|VLAN-500 +1.3.6.1.2.1.31.1.1.1.1.783|4|VLAN-392 +1.3.6.1.2.1.31.1.1.1.1.784|4|VLAN-433 +1.3.6.1.2.1.31.1.1.1.1.785|4|Vl433 +1.3.6.1.2.1.31.1.1.1.1.786|4|VLAN-426 +1.3.6.1.2.1.31.1.1.1.1.787|4|VLAN-427 +1.3.6.1.2.1.31.1.1.1.1.788|4|VLAN-428 +1.3.6.1.2.1.31.1.1.1.1.789|4|VLAN-434 +1.3.6.1.2.1.31.1.1.1.1.790|4|VLAN-435 +1.3.6.1.2.1.31.1.1.1.1.791|4|VLAN-436 +1.3.6.1.2.1.31.1.1.1.1.792|4|Vl434 +1.3.6.1.2.1.31.1.1.1.1.793|4|Vl435 +1.3.6.1.2.1.31.1.1.1.1.794|4|Vl436 +1.3.6.1.2.1.31.1.1.1.1.795|4|VLAN-437 +1.3.6.1.2.1.31.1.1.1.1.796|4|VLAN-438 +1.3.6.1.2.1.31.1.1.1.1.797|4|VLAN-439 +1.3.6.1.2.1.31.1.1.1.1.798|4|VLAN-441 +1.3.6.1.2.1.31.1.1.1.1.799|4|VLAN-442 +1.3.6.1.2.1.31.1.1.1.1.800|4|VLAN-440 +1.3.6.1.2.1.31.1.1.1.1.801|4|Vl428 +1.3.6.1.2.1.31.1.1.1.1.802|4|Vl441 +1.3.6.1.2.1.31.1.1.1.1.803|4|Vl442 +1.3.6.1.2.1.31.1.1.1.1.804|4|Vl437 +1.3.6.1.2.1.31.1.1.1.1.805|4|Vl438 +1.3.6.1.2.1.31.1.1.1.1.806|4|Vl439 +1.3.6.1.2.1.31.1.1.1.1.807|4|Vl440 +1.3.6.1.2.1.31.1.1.1.1.808|4|VLAN-443 +1.3.6.1.2.1.31.1.1.1.1.809|4|VLAN-444 +1.3.6.1.2.1.31.1.1.1.1.810|4|Vl443 +1.3.6.1.2.1.31.1.1.1.1.811|4|Vl444 +1.3.6.1.2.1.31.1.1.1.1.812|4|VLAN-445 +1.3.6.1.2.1.31.1.1.1.1.813|4|VLAN-446 +1.3.6.1.2.1.31.1.1.1.1.814|4|Vl446 +1.3.6.1.2.1.31.1.1.1.1.815|4|Vl445 +1.3.6.1.2.1.31.1.1.1.1.816|4|VLAN-447 +1.3.6.1.2.1.31.1.1.1.1.817|4|VLAN-448 +1.3.6.1.2.1.31.1.1.1.1.818|4|Vl448 +1.3.6.1.2.1.31.1.1.1.1.819|4|VLAN-51 +1.3.6.1.2.1.31.1.1.1.1.820|4|VLAN-449 +1.3.6.1.2.1.31.1.1.1.1.821|4|VLAN-450 +1.3.6.1.2.1.31.1.1.1.1.822|4|VLAN-451 +1.3.6.1.2.1.31.1.1.1.1.823|4|VLAN-452 +1.3.6.1.2.1.31.1.1.1.1.824|4|VLAN-601 +1.3.6.1.2.1.31.1.1.1.1.825|4|VLAN-453 +1.3.6.1.2.1.31.1.1.1.1.826|4|VLAN-454 +1.3.6.1.2.1.31.1.1.1.1.827|4|VLAN-455 +1.3.6.1.2.1.31.1.1.1.1.828|4|VLAN-459 +1.3.6.1.2.1.31.1.1.1.1.829|4|VLAN-460 +1.3.6.1.2.1.31.1.1.1.1.830|4|VLAN-461 +1.3.6.1.2.1.31.1.1.1.1.831|4|VLAN-457 +1.3.6.1.2.1.31.1.1.1.1.832|4|VLAN-458 +1.3.6.1.2.1.31.1.1.1.1.833|4|VLAN-456 +1.3.6.1.2.1.31.1.1.1.1.834|4|Vl456 +1.3.6.1.2.1.31.1.1.1.1.835|4|Vl457 +1.3.6.1.2.1.31.1.1.1.1.836|4|Vl458 +1.3.6.1.2.1.31.1.1.1.1.837|4|VLAN-462 +1.3.6.1.2.1.31.1.1.1.1.838|4|Vl462 +1.3.6.1.2.1.31.1.1.1.1.839|4|VLAN-204 +1.3.6.1.2.1.31.1.1.1.1.840|4|VLAN-205 +1.3.6.1.2.1.31.1.1.1.1.841|4|VLAN-463 +1.3.6.1.2.1.31.1.1.1.1.842|4|VLAN-464 +1.3.6.1.2.1.31.1.1.1.1.843|4|VLAN-466 +1.3.6.1.2.1.31.1.1.1.1.844|4|VLAN-290 +1.3.6.1.2.1.31.1.1.1.1.845|4|VLAN-291 +1.3.6.1.2.1.31.1.1.1.1.846|4|VLAN-467 +1.3.6.1.2.1.31.1.1.1.1.847|4|VLAN-465 +1.3.6.1.2.1.31.1.1.1.1.848|4|Vl464 +1.3.6.1.2.1.31.1.1.1.1.849|4|Vl465 +1.3.6.1.2.1.31.1.1.1.1.850|4|Vl467 +1.3.6.1.2.1.31.1.1.1.1.851|4|VLAN-469 +1.3.6.1.2.1.31.1.1.1.1.852|4|VLAN-470 +1.3.6.1.2.1.31.1.1.1.1.853|4|VLAN-480 +1.3.6.1.2.1.31.1.1.1.1.854|4|Vl480 +1.3.6.1.2.1.31.1.1.1.1.855|4|VLAN-319 +1.3.6.1.2.1.31.1.1.1.1.856|4|VLAN-476 +1.3.6.1.2.1.31.1.1.1.1.857|4|VLAN-477 +1.3.6.1.2.1.31.1.1.1.1.858|4|VLAN-478 +1.3.6.1.2.1.31.1.1.1.1.859|4|VLAN-479 +1.3.6.1.2.1.31.1.1.1.1.864|4|VLAN-471 +1.3.6.1.2.1.31.1.1.1.1.868|4|VLAN-292 +1.3.6.1.2.1.31.1.1.1.1.869|4|VLAN-483 +1.3.6.1.2.1.31.1.1.1.1.870|4|VLAN-485 +1.3.6.1.2.1.31.1.1.1.1.871|4|Vl483 +1.3.6.1.2.1.31.1.1.1.1.872|4|Vl485 +1.3.6.1.2.1.31.1.1.1.1.873|4|VLAN-487 +1.3.6.1.2.1.31.1.1.1.1.874|4|Vl475 +1.3.6.1.2.1.31.1.1.1.1.875|4|Vl474 +1.3.6.1.2.1.31.1.1.1.1.876|4|Vl472 +1.3.6.1.2.1.31.1.1.1.1.877|4|Vl473 +1.3.6.1.2.1.31.1.1.1.1.878|4|VLAN-472 +1.3.6.1.2.1.31.1.1.1.1.879|4|VLAN-473 +1.3.6.1.2.1.31.1.1.1.1.880|4|VLAN-474 +1.3.6.1.2.1.31.1.1.1.1.881|4|VLAN-475 +1.3.6.1.2.1.31.1.1.1.1.882|4|VLAN-486 +1.3.6.1.2.1.31.1.1.1.1.883|4|Vl486 +1.3.6.1.2.1.31.1.1.1.1.884|4|VLAN-484 +1.3.6.1.2.1.31.1.1.1.1.885|4|Vl484 +1.3.6.1.2.1.31.1.1.1.1.886|4|VLAN-481 +1.3.6.1.2.1.31.1.1.1.1.887|4|VLAN-482 +1.3.6.1.2.1.31.1.1.1.1.888|4|VLAN-990 +1.3.6.1.2.1.31.1.1.1.1.889|4|VLAN-991 +1.3.6.1.2.1.31.1.1.1.1.890|4|VLAN-992 +1.3.6.1.2.1.31.1.1.1.1.891|4|VLAN-700 +1.3.6.1.2.1.31.1.1.1.1.892|4|VLAN-701 +1.3.6.1.2.1.31.1.1.1.1.893|4|VLAN-710 +1.3.6.1.2.1.31.1.1.1.1.894|4|VLAN-711 +1.3.6.1.2.1.31.1.1.1.1.895|4|VLAN-712 +1.3.6.1.2.1.31.1.1.1.1.896|4|VLAN-713 +1.3.6.1.2.1.31.1.1.1.1.897|4|VLAN-714 +1.3.6.1.2.1.31.1.1.1.1.898|4|VLAN-715 +1.3.6.1.2.1.31.1.1.1.1.899|4|VLAN-602 +1.3.6.1.2.1.31.1.1.1.1.900|4|VLAN-603 +1.3.6.1.2.1.31.1.1.1.1.901|4|VLAN-604 +1.3.6.1.2.1.31.1.1.1.1.902|4|VLAN-488 +1.3.6.1.2.1.31.1.1.1.1.903|4|VLAN-489 +1.3.6.1.2.1.31.1.1.1.1.904|4|VLAN-490 +1.3.6.1.2.1.31.1.1.1.1.905|4|VLAN-491 +1.3.6.1.2.1.31.1.1.1.1.906|4|VLAN-605 +1.3.6.1.2.1.31.1.1.1.1.907|4|Vl603 +1.3.6.1.2.1.31.1.1.1.1.908|4|Vl604 +1.3.6.1.2.1.31.1.1.1.1.909|4|Vl700 +1.3.6.1.2.1.31.1.1.1.1.910|4|VLAN-71 +1.3.6.1.2.1.31.1.1.1.1.911|4|VLAN-606 +1.3.6.1.2.1.31.1.1.1.1.912|4|VLAN-607 +1.3.6.1.2.1.31.1.1.1.1.913|4|VLAN-380 +1.3.6.1.2.1.31.1.1.1.1.914|4|VLAN-375 +1.3.6.1.2.1.31.1.1.1.1.915|4|VLAN-199 +1.3.6.1.2.1.31.1.1.1.1.916|4|VLAN-493 +1.3.6.1.2.1.31.1.1.1.1.917|4|VLAN-494 +1.3.6.1.2.1.31.1.1.1.1.918|4|VLAN-495 +1.3.6.1.2.1.31.1.1.1.1.919|4|Vl494 +1.3.6.1.2.1.31.1.1.1.1.920|4|Vl495 +1.3.6.1.2.1.31.1.1.1.1.921|4|Vl493 +1.3.6.1.2.1.31.1.1.1.1.922|4|VLAN-496 +1.3.6.1.2.1.31.1.1.1.1.923|4|VLAN-497 +1.3.6.1.2.1.31.1.1.1.1.924|4|VLAN-498 +1.3.6.1.2.1.31.1.1.1.1.925|4|Vl497 +1.3.6.1.2.1.31.1.1.1.1.926|4|Vl498 +1.3.6.1.2.1.31.1.1.1.1.927|4|Vl496 +1.3.6.1.2.1.31.1.1.1.1.928|4|VLAN-716 +1.3.6.1.2.1.31.1.1.1.1.929|4|VLAN-717 +1.3.6.1.2.1.31.1.1.1.1.930|4|VLAN-718 +1.3.6.1.2.1.31.1.1.1.1.931|4|VLAN-719 +1.3.6.1.2.1.31.1.1.1.1.932|4|VLAN-720 +1.3.6.1.2.1.31.1.1.1.1.933|4|VLAN-721 +1.3.6.1.2.1.31.1.1.1.1.934|4|VLAN-722 +1.3.6.1.2.1.31.1.1.1.1.935|4|VLAN-723 +1.3.6.1.2.1.31.1.1.1.1.936|4|VLAN-724 +1.3.6.1.2.1.31.1.1.1.1.937|4|VLAN-725 +1.3.6.1.2.1.31.1.1.1.1.938|4|Vl610 +1.3.6.1.2.1.31.1.1.1.1.939|4|Vl611 +1.3.6.1.2.1.31.1.1.1.1.940|4|Vl250 +1.3.6.1.2.1.31.1.1.1.1.941|4|Vl251 +1.3.6.1.2.1.31.1.1.1.1.942|4|VLAN-610 +1.3.6.1.2.1.31.1.1.1.1.943|4|VLAN-611 +1.3.6.1.2.1.31.1.1.1.1.944|4|VLAN-250 +1.3.6.1.2.1.31.1.1.1.1.945|4|VLAN-251 +1.3.6.1.2.1.31.1.1.1.1.946|4|VLAN-252 +1.3.6.1.2.1.31.1.1.1.1.947|4|Vl425 +1.3.6.1.2.1.31.1.1.1.1.948|4|Vl424 +1.3.6.1.2.1.31.1.1.1.1.949|4|VLAN-709 +1.3.6.1.2.1.31.1.1.1.2.251|65|0 +1.3.6.1.2.1.31.1.1.1.2.252|65|0 +1.3.6.1.2.1.31.1.1.1.2.253|65|0 +1.3.6.1.2.1.31.1.1.1.2.254|65|0 +1.3.6.1.2.1.31.1.1.1.2.255|65|0 +1.3.6.1.2.1.31.1.1.1.2.258|65|0 +1.3.6.1.2.1.31.1.1.1.2.259|65|0 +1.3.6.1.2.1.31.1.1.1.2.270|65|0 +1.3.6.1.2.1.31.1.1.1.2.273|65|0 +1.3.6.1.2.1.31.1.1.1.2.274|65|0 +1.3.6.1.2.1.31.1.1.1.2.277|65|0 +1.3.6.1.2.1.31.1.1.1.2.278|65|0 +1.3.6.1.2.1.31.1.1.1.2.280|65|0 +1.3.6.1.2.1.31.1.1.1.2.281|65|0 +1.3.6.1.2.1.31.1.1.1.2.282|65|0 +1.3.6.1.2.1.31.1.1.1.2.283|65|0 +1.3.6.1.2.1.31.1.1.1.2.284|65|0 +1.3.6.1.2.1.31.1.1.1.2.285|65|0 +1.3.6.1.2.1.31.1.1.1.2.286|65|0 +1.3.6.1.2.1.31.1.1.1.2.287|65|0 +1.3.6.1.2.1.31.1.1.1.2.288|65|0 +1.3.6.1.2.1.31.1.1.1.2.395|65|0 +1.3.6.1.2.1.31.1.1.1.2.396|65|0 +1.3.6.1.2.1.31.1.1.1.2.398|65|377533 +1.3.6.1.2.1.31.1.1.1.2.399|65|0 +1.3.6.1.2.1.31.1.1.1.2.415|65|0 +1.3.6.1.2.1.31.1.1.1.2.417|65|0 +1.3.6.1.2.1.31.1.1.1.2.418|65|222 +1.3.6.1.2.1.31.1.1.1.2.464|65|0 +1.3.6.1.2.1.31.1.1.1.2.465|65|0 +1.3.6.1.2.1.31.1.1.1.2.477|65|0 +1.3.6.1.2.1.31.1.1.1.2.487|65|1450238103 +1.3.6.1.2.1.31.1.1.1.2.494|65|0 +1.3.6.1.2.1.31.1.1.1.2.495|65|0 +1.3.6.1.2.1.31.1.1.1.2.496|65|0 +1.3.6.1.2.1.31.1.1.1.2.497|65|43259086 +1.3.6.1.2.1.31.1.1.1.2.506|65|0 +1.3.6.1.2.1.31.1.1.1.2.509|65|9571 +1.3.6.1.2.1.31.1.1.1.2.514|65|0 +1.3.6.1.2.1.31.1.1.1.2.515|65|0 +1.3.6.1.2.1.31.1.1.1.2.518|65|0 +1.3.6.1.2.1.31.1.1.1.2.519|65|0 +1.3.6.1.2.1.31.1.1.1.2.520|65|0 +1.3.6.1.2.1.31.1.1.1.2.535|65|0 +1.3.6.1.2.1.31.1.1.1.2.536|65|0 +1.3.6.1.2.1.31.1.1.1.2.538|65|9 +1.3.6.1.2.1.31.1.1.1.2.542|65|4044 +1.3.6.1.2.1.31.1.1.1.2.543|65|0 +1.3.6.1.2.1.31.1.1.1.2.544|65|0 +1.3.6.1.2.1.31.1.1.1.2.547|65|973690082 +1.3.6.1.2.1.31.1.1.1.2.548|65|0 +1.3.6.1.2.1.31.1.1.1.2.549|65|0 +1.3.6.1.2.1.31.1.1.1.2.550|65|476503970 +1.3.6.1.2.1.31.1.1.1.2.551|65|0 +1.3.6.1.2.1.31.1.1.1.2.552|65|0 +1.3.6.1.2.1.31.1.1.1.2.553|65|0 +1.3.6.1.2.1.31.1.1.1.2.554|65|0 +1.3.6.1.2.1.31.1.1.1.2.555|65|7965 +1.3.6.1.2.1.31.1.1.1.2.556|65|25430128 +1.3.6.1.2.1.31.1.1.1.2.557|65|121608815 +1.3.6.1.2.1.31.1.1.1.2.558|65|121638864 +1.3.6.1.2.1.31.1.1.1.2.559|65|120801674 +1.3.6.1.2.1.31.1.1.1.2.560|65|121589669 +1.3.6.1.2.1.31.1.1.1.2.561|65|236240 +1.3.6.1.2.1.31.1.1.1.2.562|65|0 +1.3.6.1.2.1.31.1.1.1.2.563|65|6403 +1.3.6.1.2.1.31.1.1.1.2.564|65|0 +1.3.6.1.2.1.31.1.1.1.2.565|65|302743 +1.3.6.1.2.1.31.1.1.1.2.566|65|366920 +1.3.6.1.2.1.31.1.1.1.2.567|65|319531 +1.3.6.1.2.1.31.1.1.1.2.568|65|21704 +1.3.6.1.2.1.31.1.1.1.2.569|65|0 +1.3.6.1.2.1.31.1.1.1.2.570|65|191335 +1.3.6.1.2.1.31.1.1.1.2.571|65|175440 +1.3.6.1.2.1.31.1.1.1.2.572|65|0 +1.3.6.1.2.1.31.1.1.1.2.573|65|0 +1.3.6.1.2.1.31.1.1.1.2.574|65|0 +1.3.6.1.2.1.31.1.1.1.2.575|65|0 +1.3.6.1.2.1.31.1.1.1.2.576|65|0 +1.3.6.1.2.1.31.1.1.1.2.577|65|12342534 +1.3.6.1.2.1.31.1.1.1.2.578|65|170683 +1.3.6.1.2.1.31.1.1.1.2.579|65|1269065 +1.3.6.1.2.1.31.1.1.1.2.580|65|1 +1.3.6.1.2.1.31.1.1.1.2.581|65|2 +1.3.6.1.2.1.31.1.1.1.2.582|65|1053122 +1.3.6.1.2.1.31.1.1.1.2.583|65|175429 +1.3.6.1.2.1.31.1.1.1.2.584|65|0 +1.3.6.1.2.1.31.1.1.1.2.585|65|464197 +1.3.6.1.2.1.31.1.1.1.2.586|65|175460 +1.3.6.1.2.1.31.1.1.1.2.587|65|175429 +1.3.6.1.2.1.31.1.1.1.2.588|65|0 +1.3.6.1.2.1.31.1.1.1.2.589|65|2 +1.3.6.1.2.1.31.1.1.1.2.590|65|1053139 +1.3.6.1.2.1.31.1.1.1.2.591|65|3 +1.3.6.1.2.1.31.1.1.1.2.592|65|0 +1.3.6.1.2.1.31.1.1.1.2.593|65|0 +1.3.6.1.2.1.31.1.1.1.2.594|65|0 +1.3.6.1.2.1.31.1.1.1.2.595|65|175453 +1.3.6.1.2.1.31.1.1.1.2.596|65|0 +1.3.6.1.2.1.31.1.1.1.2.597|65|0 +1.3.6.1.2.1.31.1.1.1.2.598|65|0 +1.3.6.1.2.1.31.1.1.1.2.599|65|0 +1.3.6.1.2.1.31.1.1.1.2.600|65|175473 +1.3.6.1.2.1.31.1.1.1.2.601|65|390021 +1.3.6.1.2.1.31.1.1.1.2.602|65|0 +1.3.6.1.2.1.31.1.1.1.2.603|65|175475 +1.3.6.1.2.1.31.1.1.1.2.604|65|221718 +1.3.6.1.2.1.31.1.1.1.2.605|65|0 +1.3.6.1.2.1.31.1.1.1.2.606|65|0 +1.3.6.1.2.1.31.1.1.1.2.607|65|0 +1.3.6.1.2.1.31.1.1.1.2.608|65|0 +1.3.6.1.2.1.31.1.1.1.2.609|65|0 +1.3.6.1.2.1.31.1.1.1.2.610|65|0 +1.3.6.1.2.1.31.1.1.1.2.611|65|0 +1.3.6.1.2.1.31.1.1.1.2.612|65|471801 +1.3.6.1.2.1.31.1.1.1.2.613|65|1 +1.3.6.1.2.1.31.1.1.1.2.614|65|2 +1.3.6.1.2.1.31.1.1.1.2.615|65|2460396 +1.3.6.1.2.1.31.1.1.1.2.616|65|123072 +1.3.6.1.2.1.31.1.1.1.2.617|65|450693 +1.3.6.1.2.1.31.1.1.1.2.618|65|175430 +1.3.6.1.2.1.31.1.1.1.2.619|65|0 +1.3.6.1.2.1.31.1.1.1.2.620|65|0 +1.3.6.1.2.1.31.1.1.1.2.621|65|0 +1.3.6.1.2.1.31.1.1.1.2.622|65|13041326 +1.3.6.1.2.1.31.1.1.1.2.623|65|0 +1.3.6.1.2.1.31.1.1.1.2.624|65|3 +1.3.6.1.2.1.31.1.1.1.2.625|65|0 +1.3.6.1.2.1.31.1.1.1.2.626|65|113875052 +1.3.6.1.2.1.31.1.1.1.2.627|65|175462 +1.3.6.1.2.1.31.1.1.1.2.628|65|0 +1.3.6.1.2.1.31.1.1.1.2.629|65|175479 +1.3.6.1.2.1.31.1.1.1.2.630|65|0 +1.3.6.1.2.1.31.1.1.1.2.631|65|0 +1.3.6.1.2.1.31.1.1.1.2.632|65|175469 +1.3.6.1.2.1.31.1.1.1.2.633|65|12198883 +1.3.6.1.2.1.31.1.1.1.2.634|65|4624426 +1.3.6.1.2.1.31.1.1.1.2.635|65|0 +1.3.6.1.2.1.31.1.1.1.2.636|65|7439 +1.3.6.1.2.1.31.1.1.1.2.637|65|0 +1.3.6.1.2.1.31.1.1.1.2.638|65|0 +1.3.6.1.2.1.31.1.1.1.2.639|65|0 +1.3.6.1.2.1.31.1.1.1.2.640|65|0 +1.3.6.1.2.1.31.1.1.1.2.641|65|0 +1.3.6.1.2.1.31.1.1.1.2.642|65|309147 +1.3.6.1.2.1.31.1.1.1.2.643|65|0 +1.3.6.1.2.1.31.1.1.1.2.644|65|0 +1.3.6.1.2.1.31.1.1.1.2.645|65|0 +1.3.6.1.2.1.31.1.1.1.2.646|65|0 +1.3.6.1.2.1.31.1.1.1.2.647|65|10579580 +1.3.6.1.2.1.31.1.1.1.2.648|65|0 +1.3.6.1.2.1.31.1.1.1.2.649|65|2 +1.3.6.1.2.1.31.1.1.1.2.650|65|0 +1.3.6.1.2.1.31.1.1.1.2.651|65|26440744 +1.3.6.1.2.1.31.1.1.1.2.652|65|0 +1.3.6.1.2.1.31.1.1.1.2.653|65|0 +1.3.6.1.2.1.31.1.1.1.2.654|65|0 +1.3.6.1.2.1.31.1.1.1.2.655|65|0 +1.3.6.1.2.1.31.1.1.1.2.656|65|972662 +1.3.6.1.2.1.31.1.1.1.2.657|65|0 +1.3.6.1.2.1.31.1.1.1.2.658|65|0 +1.3.6.1.2.1.31.1.1.1.2.659|65|175525 +1.3.6.1.2.1.31.1.1.1.2.660|65|0 +1.3.6.1.2.1.31.1.1.1.2.661|65|3144989 +1.3.6.1.2.1.31.1.1.1.2.662|65|248926 +1.3.6.1.2.1.31.1.1.1.2.663|65|121061931 +1.3.6.1.2.1.31.1.1.1.2.664|65|0 +1.3.6.1.2.1.31.1.1.1.2.665|65|2500686 +1.3.6.1.2.1.31.1.1.1.2.666|65|138120 +1.3.6.1.2.1.31.1.1.1.2.667|65|121211626 +1.3.6.1.2.1.31.1.1.1.2.668|65|0 +1.3.6.1.2.1.31.1.1.1.2.669|65|175516 +1.3.6.1.2.1.31.1.1.1.2.670|65|459601 +1.3.6.1.2.1.31.1.1.1.2.671|65|0 +1.3.6.1.2.1.31.1.1.1.2.672|65|0 +1.3.6.1.2.1.31.1.1.1.2.673|65|0 +1.3.6.1.2.1.31.1.1.1.2.674|65|0 +1.3.6.1.2.1.31.1.1.1.2.675|65|0 +1.3.6.1.2.1.31.1.1.1.2.676|65|0 +1.3.6.1.2.1.31.1.1.1.2.677|65|309111 +1.3.6.1.2.1.31.1.1.1.2.678|65|0 +1.3.6.1.2.1.31.1.1.1.2.679|65|0 +1.3.6.1.2.1.31.1.1.1.2.680|65|0 +1.3.6.1.2.1.31.1.1.1.2.681|65|0 +1.3.6.1.2.1.31.1.1.1.2.682|65|0 +1.3.6.1.2.1.31.1.1.1.2.683|65|0 +1.3.6.1.2.1.31.1.1.1.2.684|65|0 +1.3.6.1.2.1.31.1.1.1.2.685|65|133710 +1.3.6.1.2.1.31.1.1.1.2.686|65|175433 +1.3.6.1.2.1.31.1.1.1.2.687|65|175456 +1.3.6.1.2.1.31.1.1.1.2.688|65|175432 +1.3.6.1.2.1.31.1.1.1.2.689|65|175462 +1.3.6.1.2.1.31.1.1.1.2.690|65|175379 +1.3.6.1.2.1.31.1.1.1.2.691|65|175462 +1.3.6.1.2.1.31.1.1.1.2.692|65|0 +1.3.6.1.2.1.31.1.1.1.2.693|65|0 +1.3.6.1.2.1.31.1.1.1.2.694|65|0 +1.3.6.1.2.1.31.1.1.1.2.695|65|34444 +1.3.6.1.2.1.31.1.1.1.2.696|65|99263668 +1.3.6.1.2.1.31.1.1.1.2.697|65|7810544 +1.3.6.1.2.1.31.1.1.1.2.698|65|0 +1.3.6.1.2.1.31.1.1.1.2.699|65|0 +1.3.6.1.2.1.31.1.1.1.2.700|65|0 +1.3.6.1.2.1.31.1.1.1.2.701|65|0 +1.3.6.1.2.1.31.1.1.1.2.702|65|0 +1.3.6.1.2.1.31.1.1.1.2.703|65|0 +1.3.6.1.2.1.31.1.1.1.2.704|65|0 +1.3.6.1.2.1.31.1.1.1.2.705|65|0 +1.3.6.1.2.1.31.1.1.1.2.706|65|4026224 +1.3.6.1.2.1.31.1.1.1.2.707|65|175470 +1.3.6.1.2.1.31.1.1.1.2.708|65|0 +1.3.6.1.2.1.31.1.1.1.2.709|65|0 +1.3.6.1.2.1.31.1.1.1.2.710|65|0 +1.3.6.1.2.1.31.1.1.1.2.711|65|0 +1.3.6.1.2.1.31.1.1.1.2.712|65|6825738 +1.3.6.1.2.1.31.1.1.1.2.713|65|0 +1.3.6.1.2.1.31.1.1.1.2.714|65|1653796 +1.3.6.1.2.1.31.1.1.1.2.715|65|0 +1.3.6.1.2.1.31.1.1.1.2.716|65|0 +1.3.6.1.2.1.31.1.1.1.2.717|65|175461 +1.3.6.1.2.1.31.1.1.1.2.718|65|175479 +1.3.6.1.2.1.31.1.1.1.2.719|65|175482 +1.3.6.1.2.1.31.1.1.1.2.720|65|0 +1.3.6.1.2.1.31.1.1.1.2.721|65|175461 +1.3.6.1.2.1.31.1.1.1.2.722|65|0 +1.3.6.1.2.1.31.1.1.1.2.723|65|0 +1.3.6.1.2.1.31.1.1.1.2.724|65|221724 +1.3.6.1.2.1.31.1.1.1.2.725|65|175428 +1.3.6.1.2.1.31.1.1.1.2.726|65|0 +1.3.6.1.2.1.31.1.1.1.2.727|65|309223 +1.3.6.1.2.1.31.1.1.1.2.728|65|0 +1.3.6.1.2.1.31.1.1.1.2.729|65|138101 +1.3.6.1.2.1.31.1.1.1.2.730|65|248905 +1.3.6.1.2.1.31.1.1.1.2.731|65|510483 +1.3.6.1.2.1.31.1.1.1.2.732|65|546235 +1.3.6.1.2.1.31.1.1.1.2.733|65|1585848 +1.3.6.1.2.1.31.1.1.1.2.734|65|10845270 +1.3.6.1.2.1.31.1.1.1.2.735|65|425127 +1.3.6.1.2.1.31.1.1.1.2.736|65|390020 +1.3.6.1.2.1.31.1.1.1.2.737|65|2683293 +1.3.6.1.2.1.31.1.1.1.2.738|65|0 +1.3.6.1.2.1.31.1.1.1.2.739|65|21042327 +1.3.6.1.2.1.31.1.1.1.2.740|65|3191701 +1.3.6.1.2.1.31.1.1.1.2.741|65|0 +1.3.6.1.2.1.31.1.1.1.2.742|65|1448285 +1.3.6.1.2.1.31.1.1.1.2.743|65|0 +1.3.6.1.2.1.31.1.1.1.2.744|65|0 +1.3.6.1.2.1.31.1.1.1.2.745|65|175447 +1.3.6.1.2.1.31.1.1.1.2.746|65|0 +1.3.6.1.2.1.31.1.1.1.2.747|65|0 +1.3.6.1.2.1.31.1.1.1.2.748|65|21042327 +1.3.6.1.2.1.31.1.1.1.2.749|65|0 +1.3.6.1.2.1.31.1.1.1.2.750|65|13874858 +1.3.6.1.2.1.31.1.1.1.2.751|65|0 +1.3.6.1.2.1.31.1.1.1.2.769|65|12650 +1.3.6.1.2.1.31.1.1.1.2.770|65|0 +1.3.6.1.2.1.31.1.1.1.2.774|65|0 +1.3.6.1.2.1.31.1.1.1.2.775|65|153 +1.3.6.1.2.1.31.1.1.1.2.776|65|422 +1.3.6.1.2.1.31.1.1.1.2.785|65|0 +1.3.6.1.2.1.31.1.1.1.2.792|65|0 +1.3.6.1.2.1.31.1.1.1.2.793|65|0 +1.3.6.1.2.1.31.1.1.1.2.794|65|5099 +1.3.6.1.2.1.31.1.1.1.2.801|65|18 +1.3.6.1.2.1.31.1.1.1.2.802|65|0 +1.3.6.1.2.1.31.1.1.1.2.803|65|0 +1.3.6.1.2.1.31.1.1.1.2.804|65|0 +1.3.6.1.2.1.31.1.1.1.2.805|65|0 +1.3.6.1.2.1.31.1.1.1.2.806|65|0 +1.3.6.1.2.1.31.1.1.1.2.807|65|0 +1.3.6.1.2.1.31.1.1.1.2.810|65|0 +1.3.6.1.2.1.31.1.1.1.2.811|65|0 +1.3.6.1.2.1.31.1.1.1.2.814|65|0 +1.3.6.1.2.1.31.1.1.1.2.815|65|0 +1.3.6.1.2.1.31.1.1.1.2.818|65|0 +1.3.6.1.2.1.31.1.1.1.2.834|65|0 +1.3.6.1.2.1.31.1.1.1.2.835|65|0 +1.3.6.1.2.1.31.1.1.1.2.836|65|0 +1.3.6.1.2.1.31.1.1.1.2.838|65|0 +1.3.6.1.2.1.31.1.1.1.2.848|65|0 +1.3.6.1.2.1.31.1.1.1.2.849|65|0 +1.3.6.1.2.1.31.1.1.1.2.850|65|0 +1.3.6.1.2.1.31.1.1.1.2.854|65|0 +1.3.6.1.2.1.31.1.1.1.2.871|65|0 +1.3.6.1.2.1.31.1.1.1.2.872|65|0 +1.3.6.1.2.1.31.1.1.1.2.874|65|0 +1.3.6.1.2.1.31.1.1.1.2.875|65|1932 +1.3.6.1.2.1.31.1.1.1.2.876|65|0 +1.3.6.1.2.1.31.1.1.1.2.877|65|0 +1.3.6.1.2.1.31.1.1.1.2.883|65|457 +1.3.6.1.2.1.31.1.1.1.2.885|65|0 +1.3.6.1.2.1.31.1.1.1.2.907|65|0 +1.3.6.1.2.1.31.1.1.1.2.908|65|0 +1.3.6.1.2.1.31.1.1.1.2.909|65|0 +1.3.6.1.2.1.31.1.1.1.2.919|65|0 +1.3.6.1.2.1.31.1.1.1.2.920|65|0 +1.3.6.1.2.1.31.1.1.1.2.921|65|0 +1.3.6.1.2.1.31.1.1.1.2.925|65|0 +1.3.6.1.2.1.31.1.1.1.2.926|65|0 +1.3.6.1.2.1.31.1.1.1.2.927|65|0 +1.3.6.1.2.1.31.1.1.1.2.938|65|0 +1.3.6.1.2.1.31.1.1.1.2.939|65|0 +1.3.6.1.2.1.31.1.1.1.2.940|65|0 +1.3.6.1.2.1.31.1.1.1.2.941|65|104 +1.3.6.1.2.1.31.1.1.1.2.947|65|0 +1.3.6.1.2.1.31.1.1.1.2.948|65|0 +1.3.6.1.2.1.31.1.1.1.3.251|65|0 +1.3.6.1.2.1.31.1.1.1.3.252|65|24 +1.3.6.1.2.1.31.1.1.1.3.253|65|0 +1.3.6.1.2.1.31.1.1.1.3.254|65|0 +1.3.6.1.2.1.31.1.1.1.3.255|65|0 +1.3.6.1.2.1.31.1.1.1.3.258|65|18421012 +1.3.6.1.2.1.31.1.1.1.3.259|65|0 +1.3.6.1.2.1.31.1.1.1.3.270|65|0 +1.3.6.1.2.1.31.1.1.1.3.273|65|0 +1.3.6.1.2.1.31.1.1.1.3.274|65|0 +1.3.6.1.2.1.31.1.1.1.3.277|65|0 +1.3.6.1.2.1.31.1.1.1.3.278|65|0 +1.3.6.1.2.1.31.1.1.1.3.280|65|0 +1.3.6.1.2.1.31.1.1.1.3.281|65|0 +1.3.6.1.2.1.31.1.1.1.3.282|65|0 +1.3.6.1.2.1.31.1.1.1.3.283|65|0 +1.3.6.1.2.1.31.1.1.1.3.284|65|0 +1.3.6.1.2.1.31.1.1.1.3.285|65|0 +1.3.6.1.2.1.31.1.1.1.3.286|65|0 +1.3.6.1.2.1.31.1.1.1.3.287|65|0 +1.3.6.1.2.1.31.1.1.1.3.288|65|0 +1.3.6.1.2.1.31.1.1.1.3.395|65|0 +1.3.6.1.2.1.31.1.1.1.3.396|65|0 +1.3.6.1.2.1.31.1.1.1.3.398|65|2097260700 +1.3.6.1.2.1.31.1.1.1.3.399|65|309860979 +1.3.6.1.2.1.31.1.1.1.3.415|65|0 +1.3.6.1.2.1.31.1.1.1.3.417|65|51749325 +1.3.6.1.2.1.31.1.1.1.3.418|65|317803402 +1.3.6.1.2.1.31.1.1.1.3.464|65|0 +1.3.6.1.2.1.31.1.1.1.3.465|65|0 +1.3.6.1.2.1.31.1.1.1.3.477|65|0 +1.3.6.1.2.1.31.1.1.1.3.487|65|3702144113 +1.3.6.1.2.1.31.1.1.1.3.494|65|0 +1.3.6.1.2.1.31.1.1.1.3.495|65|0 +1.3.6.1.2.1.31.1.1.1.3.496|65|0 +1.3.6.1.2.1.31.1.1.1.3.497|65|13175220 +1.3.6.1.2.1.31.1.1.1.3.506|65|13136371 +1.3.6.1.2.1.31.1.1.1.3.509|65|34800441 +1.3.6.1.2.1.31.1.1.1.3.514|65|0 +1.3.6.1.2.1.31.1.1.1.3.515|65|0 +1.3.6.1.2.1.31.1.1.1.3.518|65|0 +1.3.6.1.2.1.31.1.1.1.3.519|65|0 +1.3.6.1.2.1.31.1.1.1.3.520|65|0 +1.3.6.1.2.1.31.1.1.1.3.535|65|14257590 +1.3.6.1.2.1.31.1.1.1.3.536|65|11317484 +1.3.6.1.2.1.31.1.1.1.3.538|65|11207952 +1.3.6.1.2.1.31.1.1.1.3.542|65|87150337 +1.3.6.1.2.1.31.1.1.1.3.543|65|9354591 +1.3.6.1.2.1.31.1.1.1.3.544|65|13017806 +1.3.6.1.2.1.31.1.1.1.3.547|65|1649039603 +1.3.6.1.2.1.31.1.1.1.3.548|65|25966 +1.3.6.1.2.1.31.1.1.1.3.549|65|25966 +1.3.6.1.2.1.31.1.1.1.3.550|65|2052700174 +1.3.6.1.2.1.31.1.1.1.3.551|65|25966 +1.3.6.1.2.1.31.1.1.1.3.552|65|25966 +1.3.6.1.2.1.31.1.1.1.3.553|65|25966 +1.3.6.1.2.1.31.1.1.1.3.554|65|25966 +1.3.6.1.2.1.31.1.1.1.3.555|65|29519 +1.3.6.1.2.1.31.1.1.1.3.556|65|30206419 +1.3.6.1.2.1.31.1.1.1.3.557|65|0 +1.3.6.1.2.1.31.1.1.1.3.558|65|0 +1.3.6.1.2.1.31.1.1.1.3.559|65|1862 +1.3.6.1.2.1.31.1.1.1.3.560|65|43 +1.3.6.1.2.1.31.1.1.1.3.561|65|5850 +1.3.6.1.2.1.31.1.1.1.3.562|65|26355 +1.3.6.1.2.1.31.1.1.1.3.563|65|442014 +1.3.6.1.2.1.31.1.1.1.3.564|65|0 +1.3.6.1.2.1.31.1.1.1.3.565|65|62 +1.3.6.1.2.1.31.1.1.1.3.566|65|1404282 +1.3.6.1.2.1.31.1.1.1.3.567|65|3201363 +1.3.6.1.2.1.31.1.1.1.3.568|65|1404387 +1.3.6.1.2.1.31.1.1.1.3.569|65|0 +1.3.6.1.2.1.31.1.1.1.3.570|65|4739704 +1.3.6.1.2.1.31.1.1.1.3.571|65|40246 +1.3.6.1.2.1.31.1.1.1.3.572|65|0 +1.3.6.1.2.1.31.1.1.1.3.573|65|26355 +1.3.6.1.2.1.31.1.1.1.3.574|65|0 +1.3.6.1.2.1.31.1.1.1.3.575|65|3100 +1.3.6.1.2.1.31.1.1.1.3.576|65|0 +1.3.6.1.2.1.31.1.1.1.3.577|65|5 +1.3.6.1.2.1.31.1.1.1.3.578|65|2 +1.3.6.1.2.1.31.1.1.1.3.579|65|693557 +1.3.6.1.2.1.31.1.1.1.3.580|65|67 +1.3.6.1.2.1.31.1.1.1.3.581|65|42559 +1.3.6.1.2.1.31.1.1.1.3.582|65|12 +1.3.6.1.2.1.31.1.1.1.3.583|65|40243 +1.3.6.1.2.1.31.1.1.1.3.584|65|0 +1.3.6.1.2.1.31.1.1.1.3.585|65|25 +1.3.6.1.2.1.31.1.1.1.3.586|65|40245 +1.3.6.1.2.1.31.1.1.1.3.587|65|40247 +1.3.6.1.2.1.31.1.1.1.3.588|65|0 +1.3.6.1.2.1.31.1.1.1.3.589|65|992 +1.3.6.1.2.1.31.1.1.1.3.590|65|8 +1.3.6.1.2.1.31.1.1.1.3.591|65|9 +1.3.6.1.2.1.31.1.1.1.3.592|65|0 +1.3.6.1.2.1.31.1.1.1.3.593|65|0 +1.3.6.1.2.1.31.1.1.1.3.594|65|0 +1.3.6.1.2.1.31.1.1.1.3.595|65|40238 +1.3.6.1.2.1.31.1.1.1.3.596|65|0 +1.3.6.1.2.1.31.1.1.1.3.597|65|0 +1.3.6.1.2.1.31.1.1.1.3.598|65|0 +1.3.6.1.2.1.31.1.1.1.3.599|65|0 +1.3.6.1.2.1.31.1.1.1.3.600|65|40238 +1.3.6.1.2.1.31.1.1.1.3.601|65|4 +1.3.6.1.2.1.31.1.1.1.3.602|65|26355 +1.3.6.1.2.1.31.1.1.1.3.603|65|40237 +1.3.6.1.2.1.31.1.1.1.3.604|65|224332 +1.3.6.1.2.1.31.1.1.1.3.605|65|0 +1.3.6.1.2.1.31.1.1.1.3.606|65|0 +1.3.6.1.2.1.31.1.1.1.3.607|65|0 +1.3.6.1.2.1.31.1.1.1.3.608|65|0 +1.3.6.1.2.1.31.1.1.1.3.609|65|0 +1.3.6.1.2.1.31.1.1.1.3.610|65|90 +1.3.6.1.2.1.31.1.1.1.3.611|65|0 +1.3.6.1.2.1.31.1.1.1.3.612|65|45 +1.3.6.1.2.1.31.1.1.1.3.613|65|30 +1.3.6.1.2.1.31.1.1.1.3.614|65|6051 +1.3.6.1.2.1.31.1.1.1.3.615|65|6 +1.3.6.1.2.1.31.1.1.1.3.616|65|3222 +1.3.6.1.2.1.31.1.1.1.3.617|65|0 +1.3.6.1.2.1.31.1.1.1.3.618|65|40242 +1.3.6.1.2.1.31.1.1.1.3.619|65|0 +1.3.6.1.2.1.31.1.1.1.3.620|65|74420 +1.3.6.1.2.1.31.1.1.1.3.621|65|0 +1.3.6.1.2.1.31.1.1.1.3.622|65|14775951 +1.3.6.1.2.1.31.1.1.1.3.623|65|0 +1.3.6.1.2.1.31.1.1.1.3.624|65|301 +1.3.6.1.2.1.31.1.1.1.3.625|65|0 +1.3.6.1.2.1.31.1.1.1.3.626|65|54 +1.3.6.1.2.1.31.1.1.1.3.627|65|40231 +1.3.6.1.2.1.31.1.1.1.3.628|65|0 +1.3.6.1.2.1.31.1.1.1.3.629|65|40234 +1.3.6.1.2.1.31.1.1.1.3.630|65|0 +1.3.6.1.2.1.31.1.1.1.3.631|65|0 +1.3.6.1.2.1.31.1.1.1.3.632|65|40242 +1.3.6.1.2.1.31.1.1.1.3.633|65|3925310 +1.3.6.1.2.1.31.1.1.1.3.634|65|3863934 +1.3.6.1.2.1.31.1.1.1.3.635|65|0 +1.3.6.1.2.1.31.1.1.1.3.636|65|481 +1.3.6.1.2.1.31.1.1.1.3.637|65|0 +1.3.6.1.2.1.31.1.1.1.3.638|65|0 +1.3.6.1.2.1.31.1.1.1.3.639|65|0 +1.3.6.1.2.1.31.1.1.1.3.640|65|0 +1.3.6.1.2.1.31.1.1.1.3.641|65|0 +1.3.6.1.2.1.31.1.1.1.3.642|65|917 +1.3.6.1.2.1.31.1.1.1.3.643|65|0 +1.3.6.1.2.1.31.1.1.1.3.644|65|70660 +1.3.6.1.2.1.31.1.1.1.3.645|65|0 +1.3.6.1.2.1.31.1.1.1.3.646|65|0 +1.3.6.1.2.1.31.1.1.1.3.647|65|13220 +1.3.6.1.2.1.31.1.1.1.3.648|65|0 +1.3.6.1.2.1.31.1.1.1.3.649|65|237 +1.3.6.1.2.1.31.1.1.1.3.650|65|26617 +1.3.6.1.2.1.31.1.1.1.3.651|65|5389320 +1.3.6.1.2.1.31.1.1.1.3.652|65|0 +1.3.6.1.2.1.31.1.1.1.3.653|65|0 +1.3.6.1.2.1.31.1.1.1.3.654|65|26269 +1.3.6.1.2.1.31.1.1.1.3.655|65|26367 +1.3.6.1.2.1.31.1.1.1.3.656|65|15937643 +1.3.6.1.2.1.31.1.1.1.3.657|65|0 +1.3.6.1.2.1.31.1.1.1.3.658|65|0 +1.3.6.1.2.1.31.1.1.1.3.659|65|40250 +1.3.6.1.2.1.31.1.1.1.3.660|65|0 +1.3.6.1.2.1.31.1.1.1.3.661|65|67647997 +1.3.6.1.2.1.31.1.1.1.3.662|65|399042 +1.3.6.1.2.1.31.1.1.1.3.663|65|0 +1.3.6.1.2.1.31.1.1.1.3.664|65|240715 +1.3.6.1.2.1.31.1.1.1.3.665|65|7507109 +1.3.6.1.2.1.31.1.1.1.3.666|65|2 +1.3.6.1.2.1.31.1.1.1.3.667|65|0 +1.3.6.1.2.1.31.1.1.1.3.668|65|0 +1.3.6.1.2.1.31.1.1.1.3.669|65|40246 +1.3.6.1.2.1.31.1.1.1.3.670|65|0 +1.3.6.1.2.1.31.1.1.1.3.671|65|0 +1.3.6.1.2.1.31.1.1.1.3.672|65|0 +1.3.6.1.2.1.31.1.1.1.3.673|65|0 +1.3.6.1.2.1.31.1.1.1.3.674|65|95 +1.3.6.1.2.1.31.1.1.1.3.675|65|0 +1.3.6.1.2.1.31.1.1.1.3.676|65|26479 +1.3.6.1.2.1.31.1.1.1.3.677|65|801 +1.3.6.1.2.1.31.1.1.1.3.678|65|0 +1.3.6.1.2.1.31.1.1.1.3.679|65|3621121 +1.3.6.1.2.1.31.1.1.1.3.680|65|0 +1.3.6.1.2.1.31.1.1.1.3.681|65|0 +1.3.6.1.2.1.31.1.1.1.3.682|65|26479 +1.3.6.1.2.1.31.1.1.1.3.683|65|0 +1.3.6.1.2.1.31.1.1.1.3.684|65|0 +1.3.6.1.2.1.31.1.1.1.3.685|65|867 +1.3.6.1.2.1.31.1.1.1.3.686|65|40241 +1.3.6.1.2.1.31.1.1.1.3.687|65|40241 +1.3.6.1.2.1.31.1.1.1.3.688|65|40244 +1.3.6.1.2.1.31.1.1.1.3.689|65|40240 +1.3.6.1.2.1.31.1.1.1.3.690|65|40161 +1.3.6.1.2.1.31.1.1.1.3.691|65|40245 +1.3.6.1.2.1.31.1.1.1.3.692|65|0 +1.3.6.1.2.1.31.1.1.1.3.693|65|0 +1.3.6.1.2.1.31.1.1.1.3.694|65|0 +1.3.6.1.2.1.31.1.1.1.3.695|65|26717 +1.3.6.1.2.1.31.1.1.1.3.696|65|109409 +1.3.6.1.2.1.31.1.1.1.3.697|65|1270212 +1.3.6.1.2.1.31.1.1.1.3.698|65|0 +1.3.6.1.2.1.31.1.1.1.3.699|65|0 +1.3.6.1.2.1.31.1.1.1.3.700|65|0 +1.3.6.1.2.1.31.1.1.1.3.701|65|0 +1.3.6.1.2.1.31.1.1.1.3.702|65|0 +1.3.6.1.2.1.31.1.1.1.3.703|65|26479 +1.3.6.1.2.1.31.1.1.1.3.704|65|0 +1.3.6.1.2.1.31.1.1.1.3.705|65|17855 +1.3.6.1.2.1.31.1.1.1.3.706|65|12267436 +1.3.6.1.2.1.31.1.1.1.3.707|65|40251 +1.3.6.1.2.1.31.1.1.1.3.708|65|0 +1.3.6.1.2.1.31.1.1.1.3.709|65|0 +1.3.6.1.2.1.31.1.1.1.3.710|65|0 +1.3.6.1.2.1.31.1.1.1.3.711|65|0 +1.3.6.1.2.1.31.1.1.1.3.712|65|37248300 +1.3.6.1.2.1.31.1.1.1.3.713|65|0 +1.3.6.1.2.1.31.1.1.1.3.714|65|3506003 +1.3.6.1.2.1.31.1.1.1.3.715|65|26360 +1.3.6.1.2.1.31.1.1.1.3.716|65|0 +1.3.6.1.2.1.31.1.1.1.3.717|65|40236 +1.3.6.1.2.1.31.1.1.1.3.718|65|40236 +1.3.6.1.2.1.31.1.1.1.3.719|65|40236 +1.3.6.1.2.1.31.1.1.1.3.720|65|0 +1.3.6.1.2.1.31.1.1.1.3.721|65|40261 +1.3.6.1.2.1.31.1.1.1.3.722|65|0 +1.3.6.1.2.1.31.1.1.1.3.723|65|0 +1.3.6.1.2.1.31.1.1.1.3.724|65|143986 +1.3.6.1.2.1.31.1.1.1.3.725|65|40225 +1.3.6.1.2.1.31.1.1.1.3.726|65|26360 +1.3.6.1.2.1.31.1.1.1.3.727|65|825 +1.3.6.1.2.1.31.1.1.1.3.728|65|0 +1.3.6.1.2.1.31.1.1.1.3.729|65|0 +1.3.6.1.2.1.31.1.1.1.3.730|65|521696 +1.3.6.1.2.1.31.1.1.1.3.731|65|2623519 +1.3.6.1.2.1.31.1.1.1.3.732|65|23481 +1.3.6.1.2.1.31.1.1.1.3.733|65|67 +1.3.6.1.2.1.31.1.1.1.3.734|65|135605 +1.3.6.1.2.1.31.1.1.1.3.735|65|9 +1.3.6.1.2.1.31.1.1.1.3.736|65|28 +1.3.6.1.2.1.31.1.1.1.3.737|65|26 +1.3.6.1.2.1.31.1.1.1.3.738|65|26360 +1.3.6.1.2.1.31.1.1.1.3.739|65|141 +1.3.6.1.2.1.31.1.1.1.3.740|65|539329 +1.3.6.1.2.1.31.1.1.1.3.741|65|0 +1.3.6.1.2.1.31.1.1.1.3.742|65|414043 +1.3.6.1.2.1.31.1.1.1.3.743|65|0 +1.3.6.1.2.1.31.1.1.1.3.744|65|0 +1.3.6.1.2.1.31.1.1.1.3.745|65|40231 +1.3.6.1.2.1.31.1.1.1.3.746|65|0 +1.3.6.1.2.1.31.1.1.1.3.747|65|26360 +1.3.6.1.2.1.31.1.1.1.3.748|65|5740 +1.3.6.1.2.1.31.1.1.1.3.749|65|13 +1.3.6.1.2.1.31.1.1.1.3.750|65|62 +1.3.6.1.2.1.31.1.1.1.3.751|65|70129 +1.3.6.1.2.1.31.1.1.1.3.769|65|48614764 +1.3.6.1.2.1.31.1.1.1.3.770|65|10801817 +1.3.6.1.2.1.31.1.1.1.3.774|65|10766520 +1.3.6.1.2.1.31.1.1.1.3.775|65|9947723 +1.3.6.1.2.1.31.1.1.1.3.776|65|9200241 +1.3.6.1.2.1.31.1.1.1.3.785|65|8550277 +1.3.6.1.2.1.31.1.1.1.3.792|65|10822439 +1.3.6.1.2.1.31.1.1.1.3.793|65|10899967 +1.3.6.1.2.1.31.1.1.1.3.794|65|11003853 +1.3.6.1.2.1.31.1.1.1.3.801|65|10258056 +1.3.6.1.2.1.31.1.1.1.3.802|65|9227597 +1.3.6.1.2.1.31.1.1.1.3.803|65|13158782 +1.3.6.1.2.1.31.1.1.1.3.804|65|29389167 +1.3.6.1.2.1.31.1.1.1.3.805|65|14416706 +1.3.6.1.2.1.31.1.1.1.3.806|65|23350585 +1.3.6.1.2.1.31.1.1.1.3.807|65|10766484 +1.3.6.1.2.1.31.1.1.1.3.810|65|8605418 +1.3.6.1.2.1.31.1.1.1.3.811|65|8550459 +1.3.6.1.2.1.31.1.1.1.3.814|65|8663548 +1.3.6.1.2.1.31.1.1.1.3.815|65|29396530 +1.3.6.1.2.1.31.1.1.1.3.818|65|8550249 +1.3.6.1.2.1.31.1.1.1.3.834|65|13016508 +1.3.6.1.2.1.31.1.1.1.3.835|65|11364197 +1.3.6.1.2.1.31.1.1.1.3.836|65|9407041 +1.3.6.1.2.1.31.1.1.1.3.838|65|31842353 +1.3.6.1.2.1.31.1.1.1.3.848|65|12215028 +1.3.6.1.2.1.31.1.1.1.3.849|65|13006873 +1.3.6.1.2.1.31.1.1.1.3.850|65|8550495 +1.3.6.1.2.1.31.1.1.1.3.854|65|2293179 +1.3.6.1.2.1.31.1.1.1.3.871|65|13005563 +1.3.6.1.2.1.31.1.1.1.3.872|65|10788817 +1.3.6.1.2.1.31.1.1.1.3.874|65|11062079 +1.3.6.1.2.1.31.1.1.1.3.875|65|13603306 +1.3.6.1.2.1.31.1.1.1.3.876|65|10766965 +1.3.6.1.2.1.31.1.1.1.3.877|65|31789104 +1.3.6.1.2.1.31.1.1.1.3.883|65|12360508 +1.3.6.1.2.1.31.1.1.1.3.885|65|10791095 +1.3.6.1.2.1.31.1.1.1.3.907|65|28101747 +1.3.6.1.2.1.31.1.1.1.3.908|65|7538439 +1.3.6.1.2.1.31.1.1.1.3.909|65|7613679 +1.3.6.1.2.1.31.1.1.1.3.919|65|4192351 +1.3.6.1.2.1.31.1.1.1.3.920|65|4044166 +1.3.6.1.2.1.31.1.1.1.3.921|65|4693787 +1.3.6.1.2.1.31.1.1.1.3.925|65|2964199 +1.3.6.1.2.1.31.1.1.1.3.926|65|2838307 +1.3.6.1.2.1.31.1.1.1.3.927|65|3411111 +1.3.6.1.2.1.31.1.1.1.3.938|65|1464999 +1.3.6.1.2.1.31.1.1.1.3.939|65|1464161 +1.3.6.1.2.1.31.1.1.1.3.940|65|1466117 +1.3.6.1.2.1.31.1.1.1.3.941|65|1720740 +1.3.6.1.2.1.31.1.1.1.3.947|65|915390 +1.3.6.1.2.1.31.1.1.1.3.948|65|913461 +1.3.6.1.2.1.31.1.1.1.4.251|65|0 +1.3.6.1.2.1.31.1.1.1.4.252|65|0 +1.3.6.1.2.1.31.1.1.1.4.253|65|0 +1.3.6.1.2.1.31.1.1.1.4.254|65|0 +1.3.6.1.2.1.31.1.1.1.4.255|65|0 +1.3.6.1.2.1.31.1.1.1.4.258|65|0 +1.3.6.1.2.1.31.1.1.1.4.259|65|0 +1.3.6.1.2.1.31.1.1.1.4.270|65|0 +1.3.6.1.2.1.31.1.1.1.4.273|65|0 +1.3.6.1.2.1.31.1.1.1.4.274|65|0 +1.3.6.1.2.1.31.1.1.1.4.277|65|0 +1.3.6.1.2.1.31.1.1.1.4.278|65|0 +1.3.6.1.2.1.31.1.1.1.4.280|65|0 +1.3.6.1.2.1.31.1.1.1.4.281|65|0 +1.3.6.1.2.1.31.1.1.1.4.282|65|0 +1.3.6.1.2.1.31.1.1.1.4.283|65|0 +1.3.6.1.2.1.31.1.1.1.4.284|65|0 +1.3.6.1.2.1.31.1.1.1.4.285|65|0 +1.3.6.1.2.1.31.1.1.1.4.286|65|0 +1.3.6.1.2.1.31.1.1.1.4.287|65|0 +1.3.6.1.2.1.31.1.1.1.4.288|65|0 +1.3.6.1.2.1.31.1.1.1.4.395|65|0 +1.3.6.1.2.1.31.1.1.1.4.396|65|0 +1.3.6.1.2.1.31.1.1.1.4.398|65|0 +1.3.6.1.2.1.31.1.1.1.4.399|65|0 +1.3.6.1.2.1.31.1.1.1.4.415|65|0 +1.3.6.1.2.1.31.1.1.1.4.417|65|0 +1.3.6.1.2.1.31.1.1.1.4.418|65|0 +1.3.6.1.2.1.31.1.1.1.4.464|65|0 +1.3.6.1.2.1.31.1.1.1.4.465|65|0 +1.3.6.1.2.1.31.1.1.1.4.477|65|0 +1.3.6.1.2.1.31.1.1.1.4.487|65|0 +1.3.6.1.2.1.31.1.1.1.4.494|65|0 +1.3.6.1.2.1.31.1.1.1.4.495|65|0 +1.3.6.1.2.1.31.1.1.1.4.496|65|0 +1.3.6.1.2.1.31.1.1.1.4.497|65|0 +1.3.6.1.2.1.31.1.1.1.4.506|65|0 +1.3.6.1.2.1.31.1.1.1.4.509|65|0 +1.3.6.1.2.1.31.1.1.1.4.514|65|0 +1.3.6.1.2.1.31.1.1.1.4.515|65|0 +1.3.6.1.2.1.31.1.1.1.4.518|65|0 +1.3.6.1.2.1.31.1.1.1.4.519|65|0 +1.3.6.1.2.1.31.1.1.1.4.520|65|0 +1.3.6.1.2.1.31.1.1.1.4.535|65|0 +1.3.6.1.2.1.31.1.1.1.4.536|65|0 +1.3.6.1.2.1.31.1.1.1.4.538|65|0 +1.3.6.1.2.1.31.1.1.1.4.542|65|0 +1.3.6.1.2.1.31.1.1.1.4.543|65|0 +1.3.6.1.2.1.31.1.1.1.4.544|65|0 +1.3.6.1.2.1.31.1.1.1.4.547|65|2126271428 +1.3.6.1.2.1.31.1.1.1.4.548|65|0 +1.3.6.1.2.1.31.1.1.1.4.549|65|0 +1.3.6.1.2.1.31.1.1.1.4.550|65|337652467 +1.3.6.1.2.1.31.1.1.1.4.551|65|0 +1.3.6.1.2.1.31.1.1.1.4.552|65|0 +1.3.6.1.2.1.31.1.1.1.4.553|65|0 +1.3.6.1.2.1.31.1.1.1.4.554|65|0 +1.3.6.1.2.1.31.1.1.1.4.555|65|98857998 +1.3.6.1.2.1.31.1.1.1.4.556|65|27823737 +1.3.6.1.2.1.31.1.1.1.4.557|65|49844672 +1.3.6.1.2.1.31.1.1.1.4.558|65|49844611 +1.3.6.1.2.1.31.1.1.1.4.559|65|37892170 +1.3.6.1.2.1.31.1.1.1.4.560|65|37526813 +1.3.6.1.2.1.31.1.1.1.4.561|65|109312799 +1.3.6.1.2.1.31.1.1.1.4.562|65|0 +1.3.6.1.2.1.31.1.1.1.4.563|65|109306042 +1.3.6.1.2.1.31.1.1.1.4.564|65|0 +1.3.6.1.2.1.31.1.1.1.4.565|65|82701185 +1.3.6.1.2.1.31.1.1.1.4.566|65|805775994 +1.3.6.1.2.1.31.1.1.1.4.567|65|805867626 +1.3.6.1.2.1.31.1.1.1.4.568|65|806120214 +1.3.6.1.2.1.31.1.1.1.4.569|65|0 +1.3.6.1.2.1.31.1.1.1.4.570|65|779919525 +1.3.6.1.2.1.31.1.1.1.4.571|65|49667957 +1.3.6.1.2.1.31.1.1.1.4.572|65|0 +1.3.6.1.2.1.31.1.1.1.4.573|65|0 +1.3.6.1.2.1.31.1.1.1.4.574|65|0 +1.3.6.1.2.1.31.1.1.1.4.575|65|27621534 +1.3.6.1.2.1.31.1.1.1.4.576|65|0 +1.3.6.1.2.1.31.1.1.1.4.577|65|12290407 +1.3.6.1.2.1.31.1.1.1.4.578|65|1095757 +1.3.6.1.2.1.31.1.1.1.4.579|65|14077685 +1.3.6.1.2.1.31.1.1.1.4.580|65|95828579 +1.3.6.1.2.1.31.1.1.1.4.581|65|95828407 +1.3.6.1.2.1.31.1.1.1.4.582|65|27872217 +1.3.6.1.2.1.31.1.1.1.4.583|65|49666831 +1.3.6.1.2.1.31.1.1.1.4.584|65|109313112 +1.3.6.1.2.1.31.1.1.1.4.585|65|109312861 +1.3.6.1.2.1.31.1.1.1.4.586|65|49667994 +1.3.6.1.2.1.31.1.1.1.4.587|65|49666940 +1.3.6.1.2.1.31.1.1.1.4.588|65|504737350 +1.3.6.1.2.1.31.1.1.1.4.589|65|603474626 +1.3.6.1.2.1.31.1.1.1.4.590|65|27872165 +1.3.6.1.2.1.31.1.1.1.4.591|65|27872151 +1.3.6.1.2.1.31.1.1.1.4.592|65|0 +1.3.6.1.2.1.31.1.1.1.4.593|65|0 +1.3.6.1.2.1.31.1.1.1.4.594|65|0 +1.3.6.1.2.1.31.1.1.1.4.595|65|49275605 +1.3.6.1.2.1.31.1.1.1.4.596|65|0 +1.3.6.1.2.1.31.1.1.1.4.597|65|0 +1.3.6.1.2.1.31.1.1.1.4.598|65|0 +1.3.6.1.2.1.31.1.1.1.4.599|65|0 +1.3.6.1.2.1.31.1.1.1.4.600|65|49667993 +1.3.6.1.2.1.31.1.1.1.4.601|65|27823736 +1.3.6.1.2.1.31.1.1.1.4.602|65|0 +1.3.6.1.2.1.31.1.1.1.4.603|65|49667550 +1.3.6.1.2.1.31.1.1.1.4.604|65|113868599 +1.3.6.1.2.1.31.1.1.1.4.605|65|0 +1.3.6.1.2.1.31.1.1.1.4.606|65|0 +1.3.6.1.2.1.31.1.1.1.4.607|65|0 +1.3.6.1.2.1.31.1.1.1.4.608|65|0 +1.3.6.1.2.1.31.1.1.1.4.609|65|0 +1.3.6.1.2.1.31.1.1.1.4.610|65|109312734 +1.3.6.1.2.1.31.1.1.1.4.611|65|0 +1.3.6.1.2.1.31.1.1.1.4.612|65|109312813 +1.3.6.1.2.1.31.1.1.1.4.613|65|109312771 +1.3.6.1.2.1.31.1.1.1.4.614|65|109312736 +1.3.6.1.2.1.31.1.1.1.4.615|65|3421065 +1.3.6.1.2.1.31.1.1.1.4.616|65|109185807 +1.3.6.1.2.1.31.1.1.1.4.617|65|109312758 +1.3.6.1.2.1.31.1.1.1.4.618|65|49667589 +1.3.6.1.2.1.31.1.1.1.4.619|65|109312718 +1.3.6.1.2.1.31.1.1.1.4.620|65|108509835 +1.3.6.1.2.1.31.1.1.1.4.621|65|0 +1.3.6.1.2.1.31.1.1.1.4.622|65|36854748 +1.3.6.1.2.1.31.1.1.1.4.623|65|0 +1.3.6.1.2.1.31.1.1.1.4.624|65|11504134 +1.3.6.1.2.1.31.1.1.1.4.625|65|0 +1.3.6.1.2.1.31.1.1.1.4.626|65|49844411 +1.3.6.1.2.1.31.1.1.1.4.627|65|49667563 +1.3.6.1.2.1.31.1.1.1.4.628|65|0 +1.3.6.1.2.1.31.1.1.1.4.629|65|49668201 +1.3.6.1.2.1.31.1.1.1.4.630|65|0 +1.3.6.1.2.1.31.1.1.1.4.631|65|0 +1.3.6.1.2.1.31.1.1.1.4.632|65|49665974 +1.3.6.1.2.1.31.1.1.1.4.633|65|2557878933 +1.3.6.1.2.1.31.1.1.1.4.634|65|607460283 +1.3.6.1.2.1.31.1.1.1.4.635|65|0 +1.3.6.1.2.1.31.1.1.1.4.636|65|71980 +1.3.6.1.2.1.31.1.1.1.4.637|65|0 +1.3.6.1.2.1.31.1.1.1.4.638|65|515304049 +1.3.6.1.2.1.31.1.1.1.4.639|65|0 +1.3.6.1.2.1.31.1.1.1.4.640|65|0 +1.3.6.1.2.1.31.1.1.1.4.641|65|11238367 +1.3.6.1.2.1.31.1.1.1.4.642|65|13487650 +1.3.6.1.2.1.31.1.1.1.4.643|65|0 +1.3.6.1.2.1.31.1.1.1.4.644|65|109312719 +1.3.6.1.2.1.31.1.1.1.4.645|65|0 +1.3.6.1.2.1.31.1.1.1.4.646|65|0 +1.3.6.1.2.1.31.1.1.1.4.647|65|13946041 +1.3.6.1.2.1.31.1.1.1.4.648|65|0 +1.3.6.1.2.1.31.1.1.1.4.649|65|603472209 +1.3.6.1.2.1.31.1.1.1.4.650|65|0 +1.3.6.1.2.1.31.1.1.1.4.651|65|480580098 +1.3.6.1.2.1.31.1.1.1.4.652|65|0 +1.3.6.1.2.1.31.1.1.1.4.653|65|0 +1.3.6.1.2.1.31.1.1.1.4.654|65|0 +1.3.6.1.2.1.31.1.1.1.4.655|65|0 +1.3.6.1.2.1.31.1.1.1.4.656|65|602564597 +1.3.6.1.2.1.31.1.1.1.4.657|65|603472455 +1.3.6.1.2.1.31.1.1.1.4.658|65|0 +1.3.6.1.2.1.31.1.1.1.4.659|65|49668299 +1.3.6.1.2.1.31.1.1.1.4.660|65|603472454 +1.3.6.1.2.1.31.1.1.1.4.661|65|11544096 +1.3.6.1.2.1.31.1.1.1.4.662|65|52693486 +1.3.6.1.2.1.31.1.1.1.4.663|65|49844539 +1.3.6.1.2.1.31.1.1.1.4.664|65|603472317 +1.3.6.1.2.1.31.1.1.1.4.665|65|601147442 +1.3.6.1.2.1.31.1.1.1.4.666|65|49844483 +1.3.6.1.2.1.31.1.1.1.4.667|65|49844480 +1.3.6.1.2.1.31.1.1.1.4.668|65|0 +1.3.6.1.2.1.31.1.1.1.4.669|65|51069052 +1.3.6.1.2.1.31.1.1.1.4.670|65|110714145 +1.3.6.1.2.1.31.1.1.1.4.671|65|0 +1.3.6.1.2.1.31.1.1.1.4.672|65|0 +1.3.6.1.2.1.31.1.1.1.4.673|65|0 +1.3.6.1.2.1.31.1.1.1.4.674|65|110713688 +1.3.6.1.2.1.31.1.1.1.4.675|65|0 +1.3.6.1.2.1.31.1.1.1.4.676|65|0 +1.3.6.1.2.1.31.1.1.1.4.677|65|13490948 +1.3.6.1.2.1.31.1.1.1.4.678|65|0 +1.3.6.1.2.1.31.1.1.1.4.679|65|110712144 +1.3.6.1.2.1.31.1.1.1.4.680|65|110714142 +1.3.6.1.2.1.31.1.1.1.4.681|65|0 +1.3.6.1.2.1.31.1.1.1.4.682|65|0 +1.3.6.1.2.1.31.1.1.1.4.683|65|0 +1.3.6.1.2.1.31.1.1.1.4.684|65|0 +1.3.6.1.2.1.31.1.1.1.4.685|65|15063572 +1.3.6.1.2.1.31.1.1.1.4.686|65|51069051 +1.3.6.1.2.1.31.1.1.1.4.687|65|51067101 +1.3.6.1.2.1.31.1.1.1.4.688|65|51069074 +1.3.6.1.2.1.31.1.1.1.4.689|65|51066884 +1.3.6.1.2.1.31.1.1.1.4.690|65|51067927 +1.3.6.1.2.1.31.1.1.1.4.691|65|51069175 +1.3.6.1.2.1.31.1.1.1.4.692|65|0 +1.3.6.1.2.1.31.1.1.1.4.693|65|0 +1.3.6.1.2.1.31.1.1.1.4.694|65|0 +1.3.6.1.2.1.31.1.1.1.4.695|65|4316498 +1.3.6.1.2.1.31.1.1.1.4.696|65|448852855 +1.3.6.1.2.1.31.1.1.1.4.697|65|20866632 +1.3.6.1.2.1.31.1.1.1.4.698|65|0 +1.3.6.1.2.1.31.1.1.1.4.699|65|0 +1.3.6.1.2.1.31.1.1.1.4.700|65|0 +1.3.6.1.2.1.31.1.1.1.4.701|65|0 +1.3.6.1.2.1.31.1.1.1.4.702|65|0 +1.3.6.1.2.1.31.1.1.1.4.703|65|0 +1.3.6.1.2.1.31.1.1.1.4.704|65|515305553 +1.3.6.1.2.1.31.1.1.1.4.705|65|515305755 +1.3.6.1.2.1.31.1.1.1.4.706|65|561719203 +1.3.6.1.2.1.31.1.1.1.4.707|65|49665707 +1.3.6.1.2.1.31.1.1.1.4.708|65|3651742909 +1.3.6.1.2.1.31.1.1.1.4.709|65|515305668 +1.3.6.1.2.1.31.1.1.1.4.710|65|515305694 +1.3.6.1.2.1.31.1.1.1.4.711|65|0 +1.3.6.1.2.1.31.1.1.1.4.712|65|558954855 +1.3.6.1.2.1.31.1.1.1.4.713|65|565743454 +1.3.6.1.2.1.31.1.1.1.4.714|65|564339512 +1.3.6.1.2.1.31.1.1.1.4.715|65|0 +1.3.6.1.2.1.31.1.1.1.4.716|65|0 +1.3.6.1.2.1.31.1.1.1.4.717|65|51069244 +1.3.6.1.2.1.31.1.1.1.4.718|65|51067651 +1.3.6.1.2.1.31.1.1.1.4.719|65|49669067 +1.3.6.1.2.1.31.1.1.1.4.720|65|0 +1.3.6.1.2.1.31.1.1.1.4.721|65|51069165 +1.3.6.1.2.1.31.1.1.1.4.722|65|110714309 +1.3.6.1.2.1.31.1.1.1.4.723|65|70511519 +1.3.6.1.2.1.31.1.1.1.4.724|65|115269585 +1.3.6.1.2.1.31.1.1.1.4.725|65|51067840 +1.3.6.1.2.1.31.1.1.1.4.726|65|0 +1.3.6.1.2.1.31.1.1.1.4.727|65|14888026 +1.3.6.1.2.1.31.1.1.1.4.728|65|0 +1.3.6.1.2.1.31.1.1.1.4.729|65|49844529 +1.3.6.1.2.1.31.1.1.1.4.730|65|52693547 +1.3.6.1.2.1.31.1.1.1.4.731|65|11503047 +1.3.6.1.2.1.31.1.1.1.4.732|65|12693537 +1.3.6.1.2.1.31.1.1.1.4.733|65|61176895 +1.3.6.1.2.1.31.1.1.1.4.734|65|2720757 +1.3.6.1.2.1.31.1.1.1.4.735|65|12272871 +1.3.6.1.2.1.31.1.1.1.4.736|65|33111944 +1.3.6.1.2.1.31.1.1.1.4.737|65|37812661 +1.3.6.1.2.1.31.1.1.1.4.738|65|0 +1.3.6.1.2.1.31.1.1.1.4.739|65|452277841 +1.3.6.1.2.1.31.1.1.1.4.740|65|376238544 +1.3.6.1.2.1.31.1.1.1.4.741|65|0 +1.3.6.1.2.1.31.1.1.1.4.742|65|471938721 +1.3.6.1.2.1.31.1.1.1.4.743|65|0 +1.3.6.1.2.1.31.1.1.1.4.744|65|0 +1.3.6.1.2.1.31.1.1.1.4.745|65|49669042 +1.3.6.1.2.1.31.1.1.1.4.746|65|0 +1.3.6.1.2.1.31.1.1.1.4.747|65|0 +1.3.6.1.2.1.31.1.1.1.4.748|65|452277799 +1.3.6.1.2.1.31.1.1.1.4.749|65|11860721 +1.3.6.1.2.1.31.1.1.1.4.750|65|3411579 +1.3.6.1.2.1.31.1.1.1.4.751|65|110714299 +1.3.6.1.2.1.31.1.1.1.4.769|65|0 +1.3.6.1.2.1.31.1.1.1.4.770|65|0 +1.3.6.1.2.1.31.1.1.1.4.774|65|0 +1.3.6.1.2.1.31.1.1.1.4.775|65|0 +1.3.6.1.2.1.31.1.1.1.4.776|65|0 +1.3.6.1.2.1.31.1.1.1.4.785|65|0 +1.3.6.1.2.1.31.1.1.1.4.792|65|0 +1.3.6.1.2.1.31.1.1.1.4.793|65|0 +1.3.6.1.2.1.31.1.1.1.4.794|65|0 +1.3.6.1.2.1.31.1.1.1.4.801|65|0 +1.3.6.1.2.1.31.1.1.1.4.802|65|0 +1.3.6.1.2.1.31.1.1.1.4.803|65|0 +1.3.6.1.2.1.31.1.1.1.4.804|65|0 +1.3.6.1.2.1.31.1.1.1.4.805|65|0 +1.3.6.1.2.1.31.1.1.1.4.806|65|0 +1.3.6.1.2.1.31.1.1.1.4.807|65|0 +1.3.6.1.2.1.31.1.1.1.4.810|65|0 +1.3.6.1.2.1.31.1.1.1.4.811|65|0 +1.3.6.1.2.1.31.1.1.1.4.814|65|0 +1.3.6.1.2.1.31.1.1.1.4.815|65|0 +1.3.6.1.2.1.31.1.1.1.4.818|65|0 +1.3.6.1.2.1.31.1.1.1.4.834|65|0 +1.3.6.1.2.1.31.1.1.1.4.835|65|0 +1.3.6.1.2.1.31.1.1.1.4.836|65|0 +1.3.6.1.2.1.31.1.1.1.4.838|65|0 +1.3.6.1.2.1.31.1.1.1.4.848|65|0 +1.3.6.1.2.1.31.1.1.1.4.849|65|0 +1.3.6.1.2.1.31.1.1.1.4.850|65|0 +1.3.6.1.2.1.31.1.1.1.4.854|65|0 +1.3.6.1.2.1.31.1.1.1.4.871|65|0 +1.3.6.1.2.1.31.1.1.1.4.872|65|0 +1.3.6.1.2.1.31.1.1.1.4.874|65|0 +1.3.6.1.2.1.31.1.1.1.4.875|65|0 +1.3.6.1.2.1.31.1.1.1.4.876|65|0 +1.3.6.1.2.1.31.1.1.1.4.877|65|0 +1.3.6.1.2.1.31.1.1.1.4.883|65|0 +1.3.6.1.2.1.31.1.1.1.4.885|65|0 +1.3.6.1.2.1.31.1.1.1.4.907|65|0 +1.3.6.1.2.1.31.1.1.1.4.908|65|0 +1.3.6.1.2.1.31.1.1.1.4.909|65|0 +1.3.6.1.2.1.31.1.1.1.4.919|65|0 +1.3.6.1.2.1.31.1.1.1.4.920|65|0 +1.3.6.1.2.1.31.1.1.1.4.921|65|0 +1.3.6.1.2.1.31.1.1.1.4.925|65|0 +1.3.6.1.2.1.31.1.1.1.4.926|65|0 +1.3.6.1.2.1.31.1.1.1.4.927|65|0 +1.3.6.1.2.1.31.1.1.1.4.938|65|0 +1.3.6.1.2.1.31.1.1.1.4.939|65|0 +1.3.6.1.2.1.31.1.1.1.4.940|65|0 +1.3.6.1.2.1.31.1.1.1.4.941|65|0 +1.3.6.1.2.1.31.1.1.1.4.947|65|0 +1.3.6.1.2.1.31.1.1.1.4.948|65|0 +1.3.6.1.2.1.31.1.1.1.5.251|65|0 +1.3.6.1.2.1.31.1.1.1.5.252|65|0 +1.3.6.1.2.1.31.1.1.1.5.253|65|0 +1.3.6.1.2.1.31.1.1.1.5.254|65|0 +1.3.6.1.2.1.31.1.1.1.5.255|65|0 +1.3.6.1.2.1.31.1.1.1.5.258|65|0 +1.3.6.1.2.1.31.1.1.1.5.259|65|0 +1.3.6.1.2.1.31.1.1.1.5.270|65|0 +1.3.6.1.2.1.31.1.1.1.5.273|65|0 +1.3.6.1.2.1.31.1.1.1.5.274|65|0 +1.3.6.1.2.1.31.1.1.1.5.277|65|0 +1.3.6.1.2.1.31.1.1.1.5.278|65|0 +1.3.6.1.2.1.31.1.1.1.5.280|65|0 +1.3.6.1.2.1.31.1.1.1.5.281|65|0 +1.3.6.1.2.1.31.1.1.1.5.282|65|0 +1.3.6.1.2.1.31.1.1.1.5.283|65|0 +1.3.6.1.2.1.31.1.1.1.5.284|65|0 +1.3.6.1.2.1.31.1.1.1.5.285|65|0 +1.3.6.1.2.1.31.1.1.1.5.286|65|0 +1.3.6.1.2.1.31.1.1.1.5.287|65|0 +1.3.6.1.2.1.31.1.1.1.5.288|65|0 +1.3.6.1.2.1.31.1.1.1.5.395|65|0 +1.3.6.1.2.1.31.1.1.1.5.396|65|0 +1.3.6.1.2.1.31.1.1.1.5.398|65|0 +1.3.6.1.2.1.31.1.1.1.5.399|65|0 +1.3.6.1.2.1.31.1.1.1.5.415|65|0 +1.3.6.1.2.1.31.1.1.1.5.417|65|0 +1.3.6.1.2.1.31.1.1.1.5.418|65|0 +1.3.6.1.2.1.31.1.1.1.5.464|65|0 +1.3.6.1.2.1.31.1.1.1.5.465|65|0 +1.3.6.1.2.1.31.1.1.1.5.477|65|0 +1.3.6.1.2.1.31.1.1.1.5.487|65|2601637560 +1.3.6.1.2.1.31.1.1.1.5.494|65|0 +1.3.6.1.2.1.31.1.1.1.5.495|65|0 +1.3.6.1.2.1.31.1.1.1.5.496|65|0 +1.3.6.1.2.1.31.1.1.1.5.497|65|3174312896 +1.3.6.1.2.1.31.1.1.1.5.506|65|0 +1.3.6.1.2.1.31.1.1.1.5.509|65|0 +1.3.6.1.2.1.31.1.1.1.5.514|65|0 +1.3.6.1.2.1.31.1.1.1.5.515|65|0 +1.3.6.1.2.1.31.1.1.1.5.518|65|0 +1.3.6.1.2.1.31.1.1.1.5.519|65|0 +1.3.6.1.2.1.31.1.1.1.5.520|65|0 +1.3.6.1.2.1.31.1.1.1.5.535|65|0 +1.3.6.1.2.1.31.1.1.1.5.536|65|0 +1.3.6.1.2.1.31.1.1.1.5.538|65|0 +1.3.6.1.2.1.31.1.1.1.5.542|65|0 +1.3.6.1.2.1.31.1.1.1.5.543|65|0 +1.3.6.1.2.1.31.1.1.1.5.544|65|0 +1.3.6.1.2.1.31.1.1.1.5.547|65|63701591 +1.3.6.1.2.1.31.1.1.1.5.548|65|25966 +1.3.6.1.2.1.31.1.1.1.5.549|65|25966 +1.3.6.1.2.1.31.1.1.1.5.550|65|74249067 +1.3.6.1.2.1.31.1.1.1.5.551|65|25966 +1.3.6.1.2.1.31.1.1.1.5.552|65|25966 +1.3.6.1.2.1.31.1.1.1.5.553|65|25966 +1.3.6.1.2.1.31.1.1.1.5.554|65|25966 +1.3.6.1.2.1.31.1.1.1.5.555|65|1773001860 +1.3.6.1.2.1.31.1.1.1.5.556|65|93 +1.3.6.1.2.1.31.1.1.1.5.557|65|91289326 +1.3.6.1.2.1.31.1.1.1.5.558|65|91289326 +1.3.6.1.2.1.31.1.1.1.5.559|65|71235458 +1.3.6.1.2.1.31.1.1.1.5.560|65|69083485 +1.3.6.1.2.1.31.1.1.1.5.561|65|2037326372 +1.3.6.1.2.1.31.1.1.1.5.562|65|26355 +1.3.6.1.2.1.31.1.1.1.5.563|65|2036903666 +1.3.6.1.2.1.31.1.1.1.5.564|65|0 +1.3.6.1.2.1.31.1.1.1.5.565|65|837695363 +1.3.6.1.2.1.31.1.1.1.5.566|65|3256214320 +1.3.6.1.2.1.31.1.1.1.5.567|65|3254417410 +1.3.6.1.2.1.31.1.1.1.5.568|65|3256214709 +1.3.6.1.2.1.31.1.1.1.5.569|65|0 +1.3.6.1.2.1.31.1.1.1.5.570|65|3252834329 +1.3.6.1.2.1.31.1.1.1.5.571|65|91243046 +1.3.6.1.2.1.31.1.1.1.5.572|65|0 +1.3.6.1.2.1.31.1.1.1.5.573|65|26355 +1.3.6.1.2.1.31.1.1.1.5.574|65|0 +1.3.6.1.2.1.31.1.1.1.5.575|65|2075812 +1.3.6.1.2.1.31.1.1.1.5.576|65|0 +1.3.6.1.2.1.31.1.1.1.5.577|65|16 +1.3.6.1.2.1.31.1.1.1.5.578|65|4 +1.3.6.1.2.1.31.1.1.1.5.579|65|10140140 +1.3.6.1.2.1.31.1.1.1.5.580|65|1846368091 +1.3.6.1.2.1.31.1.1.1.5.581|65|1846389328 +1.3.6.1.2.1.31.1.1.1.5.582|65|2090006 +1.3.6.1.2.1.31.1.1.1.5.583|65|91241222 +1.3.6.1.2.1.31.1.1.1.5.584|65|2037344368 +1.3.6.1.2.1.31.1.1.1.5.585|65|2037330735 +1.3.6.1.2.1.31.1.1.1.5.586|65|91243666 +1.3.6.1.2.1.31.1.1.1.5.587|65|91241247 +1.3.6.1.2.1.31.1.1.1.5.588|65|3058976173 +1.3.6.1.2.1.31.1.1.1.5.589|65|3183330068 +1.3.6.1.2.1.31.1.1.1.5.590|65|2090009 +1.3.6.1.2.1.31.1.1.1.5.591|65|2090005 +1.3.6.1.2.1.31.1.1.1.5.592|65|0 +1.3.6.1.2.1.31.1.1.1.5.593|65|0 +1.3.6.1.2.1.31.1.1.1.5.594|65|0 +1.3.6.1.2.1.31.1.1.1.5.595|65|91238083 +1.3.6.1.2.1.31.1.1.1.5.596|65|0 +1.3.6.1.2.1.31.1.1.1.5.597|65|0 +1.3.6.1.2.1.31.1.1.1.5.598|65|0 +1.3.6.1.2.1.31.1.1.1.5.599|65|0 +1.3.6.1.2.1.31.1.1.1.5.600|65|91244529 +1.3.6.1.2.1.31.1.1.1.5.601|65|29 +1.3.6.1.2.1.31.1.1.1.5.602|65|26355 +1.3.6.1.2.1.31.1.1.1.5.603|65|91241935 +1.3.6.1.2.1.31.1.1.1.5.604|65|2037105336 +1.3.6.1.2.1.31.1.1.1.5.605|65|0 +1.3.6.1.2.1.31.1.1.1.5.606|65|0 +1.3.6.1.2.1.31.1.1.1.5.607|65|0 +1.3.6.1.2.1.31.1.1.1.5.608|65|0 +1.3.6.1.2.1.31.1.1.1.5.609|65|0 +1.3.6.1.2.1.31.1.1.1.5.610|65|2037338110 +1.3.6.1.2.1.31.1.1.1.5.611|65|0 +1.3.6.1.2.1.31.1.1.1.5.612|65|2037338123 +1.3.6.1.2.1.31.1.1.1.5.613|65|2037338144 +1.3.6.1.2.1.31.1.1.1.5.614|65|2037332105 +1.3.6.1.2.1.31.1.1.1.5.615|65|40 +1.3.6.1.2.1.31.1.1.1.5.616|65|2037240657 +1.3.6.1.2.1.31.1.1.1.5.617|65|2037338082 +1.3.6.1.2.1.31.1.1.1.5.618|65|91241963 +1.3.6.1.2.1.31.1.1.1.5.619|65|2037338078 +1.3.6.1.2.1.31.1.1.1.5.620|65|2012163246 +1.3.6.1.2.1.31.1.1.1.5.621|65|0 +1.3.6.1.2.1.31.1.1.1.5.622|65|76508397 +1.3.6.1.2.1.31.1.1.1.5.623|65|0 +1.3.6.1.2.1.31.1.1.1.5.624|65|65 +1.3.6.1.2.1.31.1.1.1.5.625|65|0 +1.3.6.1.2.1.31.1.1.1.5.626|65|91288479 +1.3.6.1.2.1.31.1.1.1.5.627|65|91243271 +1.3.6.1.2.1.31.1.1.1.5.628|65|0 +1.3.6.1.2.1.31.1.1.1.5.629|65|91245039 +1.3.6.1.2.1.31.1.1.1.5.630|65|0 +1.3.6.1.2.1.31.1.1.1.5.631|65|0 +1.3.6.1.2.1.31.1.1.1.5.632|65|91238490 +1.3.6.1.2.1.31.1.1.1.5.633|65|1605421179 +1.3.6.1.2.1.31.1.1.1.5.634|65|1031708908 +1.3.6.1.2.1.31.1.1.1.5.635|65|0 +1.3.6.1.2.1.31.1.1.1.5.636|65|1579305 +1.3.6.1.2.1.31.1.1.1.5.637|65|0 +1.3.6.1.2.1.31.1.1.1.5.638|65|3067042474 +1.3.6.1.2.1.31.1.1.1.5.639|65|0 +1.3.6.1.2.1.31.1.1.1.5.640|65|0 +1.3.6.1.2.1.31.1.1.1.5.641|65|20298328 +1.3.6.1.2.1.31.1.1.1.5.642|65|128276 +1.3.6.1.2.1.31.1.1.1.5.643|65|0 +1.3.6.1.2.1.31.1.1.1.5.644|65|2037267160 +1.3.6.1.2.1.31.1.1.1.5.645|65|0 +1.3.6.1.2.1.31.1.1.1.5.646|65|0 +1.3.6.1.2.1.31.1.1.1.5.647|65|982895 +1.3.6.1.2.1.31.1.1.1.5.648|65|0 +1.3.6.1.2.1.31.1.1.1.5.649|65|3183320165 +1.3.6.1.2.1.31.1.1.1.5.650|65|26617 +1.3.6.1.2.1.31.1.1.1.5.651|65|1189426372 +1.3.6.1.2.1.31.1.1.1.5.652|65|0 +1.3.6.1.2.1.31.1.1.1.5.653|65|0 +1.3.6.1.2.1.31.1.1.1.5.654|65|26269 +1.3.6.1.2.1.31.1.1.1.5.655|65|26367 +1.3.6.1.2.1.31.1.1.1.5.656|65|3167380265 +1.3.6.1.2.1.31.1.1.1.5.657|65|3183317425 +1.3.6.1.2.1.31.1.1.1.5.658|65|0 +1.3.6.1.2.1.31.1.1.1.5.659|65|91245739 +1.3.6.1.2.1.31.1.1.1.5.660|65|3183316692 +1.3.6.1.2.1.31.1.1.1.5.661|65|1529897 +1.3.6.1.2.1.31.1.1.1.5.662|65|90889882 +1.3.6.1.2.1.31.1.1.1.5.663|65|91288659 +1.3.6.1.2.1.31.1.1.1.5.664|65|3183076410 +1.3.6.1.2.1.31.1.1.1.5.665|65|3175810781 +1.3.6.1.2.1.31.1.1.1.5.666|65|91288712 +1.3.6.1.2.1.31.1.1.1.5.667|65|91288744 +1.3.6.1.2.1.31.1.1.1.5.668|65|0 +1.3.6.1.2.1.31.1.1.1.5.669|65|91244559 +1.3.6.1.2.1.31.1.1.1.5.670|65|2037339142 +1.3.6.1.2.1.31.1.1.1.5.671|65|0 +1.3.6.1.2.1.31.1.1.1.5.672|65|0 +1.3.6.1.2.1.31.1.1.1.5.673|65|0 +1.3.6.1.2.1.31.1.1.1.5.674|65|2037314913 +1.3.6.1.2.1.31.1.1.1.5.675|65|0 +1.3.6.1.2.1.31.1.1.1.5.676|65|26479 +1.3.6.1.2.1.31.1.1.1.5.677|65|128397 +1.3.6.1.2.1.31.1.1.1.5.678|65|0 +1.3.6.1.2.1.31.1.1.1.5.679|65|2033675969 +1.3.6.1.2.1.31.1.1.1.5.680|65|2037339011 +1.3.6.1.2.1.31.1.1.1.5.681|65|0 +1.3.6.1.2.1.31.1.1.1.5.682|65|26479 +1.3.6.1.2.1.31.1.1.1.5.683|65|0 +1.3.6.1.2.1.31.1.1.1.5.684|65|0 +1.3.6.1.2.1.31.1.1.1.5.685|65|128336 +1.3.6.1.2.1.31.1.1.1.5.686|65|91242258 +1.3.6.1.2.1.31.1.1.1.5.687|65|91238207 +1.3.6.1.2.1.31.1.1.1.5.688|65|91242160 +1.3.6.1.2.1.31.1.1.1.5.689|65|91237704 +1.3.6.1.2.1.31.1.1.1.5.690|65|91240390 +1.3.6.1.2.1.31.1.1.1.5.691|65|91242597 +1.3.6.1.2.1.31.1.1.1.5.692|65|0 +1.3.6.1.2.1.31.1.1.1.5.693|65|0 +1.3.6.1.2.1.31.1.1.1.5.694|65|0 +1.3.6.1.2.1.31.1.1.1.5.695|65|94122272 +1.3.6.1.2.1.31.1.1.1.5.696|65|2612396400 +1.3.6.1.2.1.31.1.1.1.5.697|65|819705 +1.3.6.1.2.1.31.1.1.1.5.698|65|0 +1.3.6.1.2.1.31.1.1.1.5.699|65|0 +1.3.6.1.2.1.31.1.1.1.5.700|65|0 +1.3.6.1.2.1.31.1.1.1.5.701|65|0 +1.3.6.1.2.1.31.1.1.1.5.702|65|0 +1.3.6.1.2.1.31.1.1.1.5.703|65|26479 +1.3.6.1.2.1.31.1.1.1.5.704|65|3067048707 +1.3.6.1.2.1.31.1.1.1.5.705|65|3067031489 +1.3.6.1.2.1.31.1.1.1.5.706|65|3093957511 +1.3.6.1.2.1.31.1.1.1.5.707|65|91238010 +1.3.6.1.2.1.31.1.1.1.5.708|65|3839697100 +1.3.6.1.2.1.31.1.1.1.5.709|65|3067049107 +1.3.6.1.2.1.31.1.1.1.5.710|65|3067049023 +1.3.6.1.2.1.31.1.1.1.5.711|65|0 +1.3.6.1.2.1.31.1.1.1.5.712|65|3068976225 +1.3.6.1.2.1.31.1.1.1.5.713|65|3106224186 +1.3.6.1.2.1.31.1.1.1.5.714|65|3102718459 +1.3.6.1.2.1.31.1.1.1.5.715|65|26360 +1.3.6.1.2.1.31.1.1.1.5.716|65|0 +1.3.6.1.2.1.31.1.1.1.5.717|65|91242901 +1.3.6.1.2.1.31.1.1.1.5.718|65|91240008 +1.3.6.1.2.1.31.1.1.1.5.719|65|91248897 +1.3.6.1.2.1.31.1.1.1.5.720|65|0 +1.3.6.1.2.1.31.1.1.1.5.721|65|91242897 +1.3.6.1.2.1.31.1.1.1.5.722|65|2037341935 +1.3.6.1.2.1.31.1.1.1.5.723|65|579433353 +1.3.6.1.2.1.31.1.1.1.5.724|65|2037180352 +1.3.6.1.2.1.31.1.1.1.5.725|65|91240399 +1.3.6.1.2.1.31.1.1.1.5.726|65|26360 +1.3.6.1.2.1.31.1.1.1.5.727|65|128388 +1.3.6.1.2.1.31.1.1.1.5.728|65|0 +1.3.6.1.2.1.31.1.1.1.5.729|65|91289083 +1.3.6.1.2.1.31.1.1.1.5.730|65|90767543 +1.3.6.1.2.1.31.1.1.1.5.731|65|145 +1.3.6.1.2.1.31.1.1.1.5.732|65|188388470 +1.3.6.1.2.1.31.1.1.1.5.733|65|20218048 +1.3.6.1.2.1.31.1.1.1.5.734|65|146 +1.3.6.1.2.1.31.1.1.1.5.735|65|166 +1.3.6.1.2.1.31.1.1.1.5.736|65|10264 +1.3.6.1.2.1.31.1.1.1.5.737|65|8075399 +1.3.6.1.2.1.31.1.1.1.5.738|65|26360 +1.3.6.1.2.1.31.1.1.1.5.739|65|3062188144 +1.3.6.1.2.1.31.1.1.1.5.740|65|1304307040 +1.3.6.1.2.1.31.1.1.1.5.741|65|0 +1.3.6.1.2.1.31.1.1.1.5.742|65|3061447510 +1.3.6.1.2.1.31.1.1.1.5.743|65|0 +1.3.6.1.2.1.31.1.1.1.5.744|65|0 +1.3.6.1.2.1.31.1.1.1.5.745|65|91248861 +1.3.6.1.2.1.31.1.1.1.5.746|65|0 +1.3.6.1.2.1.31.1.1.1.5.747|65|26360 +1.3.6.1.2.1.31.1.1.1.5.748|65|3062182408 +1.3.6.1.2.1.31.1.1.1.5.749|65|2603265 +1.3.6.1.2.1.31.1.1.1.5.750|65|12 +1.3.6.1.2.1.31.1.1.1.5.751|65|2037271391 +1.3.6.1.2.1.31.1.1.1.5.769|65|0 +1.3.6.1.2.1.31.1.1.1.5.770|65|0 +1.3.6.1.2.1.31.1.1.1.5.774|65|0 +1.3.6.1.2.1.31.1.1.1.5.775|65|0 +1.3.6.1.2.1.31.1.1.1.5.776|65|0 +1.3.6.1.2.1.31.1.1.1.5.785|65|0 +1.3.6.1.2.1.31.1.1.1.5.792|65|0 +1.3.6.1.2.1.31.1.1.1.5.793|65|0 +1.3.6.1.2.1.31.1.1.1.5.794|65|0 +1.3.6.1.2.1.31.1.1.1.5.801|65|0 +1.3.6.1.2.1.31.1.1.1.5.802|65|0 +1.3.6.1.2.1.31.1.1.1.5.803|65|0 +1.3.6.1.2.1.31.1.1.1.5.804|65|0 +1.3.6.1.2.1.31.1.1.1.5.805|65|0 +1.3.6.1.2.1.31.1.1.1.5.806|65|0 +1.3.6.1.2.1.31.1.1.1.5.807|65|0 +1.3.6.1.2.1.31.1.1.1.5.810|65|0 +1.3.6.1.2.1.31.1.1.1.5.811|65|0 +1.3.6.1.2.1.31.1.1.1.5.814|65|0 +1.3.6.1.2.1.31.1.1.1.5.815|65|0 +1.3.6.1.2.1.31.1.1.1.5.818|65|0 +1.3.6.1.2.1.31.1.1.1.5.834|65|0 +1.3.6.1.2.1.31.1.1.1.5.835|65|0 +1.3.6.1.2.1.31.1.1.1.5.836|65|0 +1.3.6.1.2.1.31.1.1.1.5.838|65|0 +1.3.6.1.2.1.31.1.1.1.5.848|65|0 +1.3.6.1.2.1.31.1.1.1.5.849|65|0 +1.3.6.1.2.1.31.1.1.1.5.850|65|0 +1.3.6.1.2.1.31.1.1.1.5.854|65|0 +1.3.6.1.2.1.31.1.1.1.5.871|65|0 +1.3.6.1.2.1.31.1.1.1.5.872|65|0 +1.3.6.1.2.1.31.1.1.1.5.874|65|0 +1.3.6.1.2.1.31.1.1.1.5.875|65|0 +1.3.6.1.2.1.31.1.1.1.5.876|65|0 +1.3.6.1.2.1.31.1.1.1.5.877|65|0 +1.3.6.1.2.1.31.1.1.1.5.883|65|0 +1.3.6.1.2.1.31.1.1.1.5.885|65|0 +1.3.6.1.2.1.31.1.1.1.5.907|65|0 +1.3.6.1.2.1.31.1.1.1.5.908|65|0 +1.3.6.1.2.1.31.1.1.1.5.909|65|0 +1.3.6.1.2.1.31.1.1.1.5.919|65|0 +1.3.6.1.2.1.31.1.1.1.5.920|65|0 +1.3.6.1.2.1.31.1.1.1.5.921|65|0 +1.3.6.1.2.1.31.1.1.1.5.925|65|0 +1.3.6.1.2.1.31.1.1.1.5.926|65|0 +1.3.6.1.2.1.31.1.1.1.5.927|65|0 +1.3.6.1.2.1.31.1.1.1.5.938|65|0 +1.3.6.1.2.1.31.1.1.1.5.939|65|0 +1.3.6.1.2.1.31.1.1.1.5.940|65|0 +1.3.6.1.2.1.31.1.1.1.5.941|65|0 +1.3.6.1.2.1.31.1.1.1.5.947|65|0 +1.3.6.1.2.1.31.1.1.1.5.948|65|0 +1.3.6.1.2.1.31.1.1.1.6.251|70|0 +1.3.6.1.2.1.31.1.1.1.6.252|70|4439647044640 +1.3.6.1.2.1.31.1.1.1.6.254|70|0 +1.3.6.1.2.1.31.1.1.1.6.255|70|0 +1.3.6.1.2.1.31.1.1.1.6.258|70|79866757027 +1.3.6.1.2.1.31.1.1.1.6.259|70|0 +1.3.6.1.2.1.31.1.1.1.6.260|70|103308466 +1.3.6.1.2.1.31.1.1.1.6.261|70|0 +1.3.6.1.2.1.31.1.1.1.6.262|70|0 +1.3.6.1.2.1.31.1.1.1.6.263|70|0 +1.3.6.1.2.1.31.1.1.1.6.264|70|0 +1.3.6.1.2.1.31.1.1.1.6.265|70|75336011214 +1.3.6.1.2.1.31.1.1.1.6.266|70|2462621445810098 +1.3.6.1.2.1.31.1.1.1.6.267|70|4624594966 +1.3.6.1.2.1.31.1.1.1.6.268|70|91491778429730 +1.3.6.1.2.1.31.1.1.1.6.269|70|4378333940282 +1.3.6.1.2.1.31.1.1.1.6.270|70|0 +1.3.6.1.2.1.31.1.1.1.6.273|70|0 +1.3.6.1.2.1.31.1.1.1.6.274|70|0 +1.3.6.1.2.1.31.1.1.1.6.275|70|1195055407 +1.3.6.1.2.1.31.1.1.1.6.276|70|405042612 +1.3.6.1.2.1.31.1.1.1.6.277|70|0 +1.3.6.1.2.1.31.1.1.1.6.278|70|0 +1.3.6.1.2.1.31.1.1.1.6.280|70|0 +1.3.6.1.2.1.31.1.1.1.6.281|70|0 +1.3.6.1.2.1.31.1.1.1.6.282|70|0 +1.3.6.1.2.1.31.1.1.1.6.283|70|0 +1.3.6.1.2.1.31.1.1.1.6.284|70|0 +1.3.6.1.2.1.31.1.1.1.6.285|70|0 +1.3.6.1.2.1.31.1.1.1.6.286|70|0 +1.3.6.1.2.1.31.1.1.1.6.287|70|0 +1.3.6.1.2.1.31.1.1.1.6.288|70|0 +1.3.6.1.2.1.31.1.1.1.6.291|70|501435452 +1.3.6.1.2.1.31.1.1.1.6.292|70|6731362789 +1.3.6.1.2.1.31.1.1.1.6.293|70|105752447 +1.3.6.1.2.1.31.1.1.1.6.294|70|0 +1.3.6.1.2.1.31.1.1.1.6.295|70|674506344919 +1.3.6.1.2.1.31.1.1.1.6.395|70|0 +1.3.6.1.2.1.31.1.1.1.6.396|70|0 +1.3.6.1.2.1.31.1.1.1.6.398|70|65351533841900 +1.3.6.1.2.1.31.1.1.1.6.399|70|35523975321 +1.3.6.1.2.1.31.1.1.1.6.414|70|0 +1.3.6.1.2.1.31.1.1.1.6.415|70|0 +1.3.6.1.2.1.31.1.1.1.6.417|70|4083167834 +1.3.6.1.2.1.31.1.1.1.6.418|70|91163522906612 +1.3.6.1.2.1.31.1.1.1.6.438|70|4468902027 +1.3.6.1.2.1.31.1.1.1.6.439|70|372090262 +1.3.6.1.2.1.31.1.1.1.6.440|70|441623226 +1.3.6.1.2.1.31.1.1.1.6.441|70|229427882 +1.3.6.1.2.1.31.1.1.1.6.442|70|335347279 +1.3.6.1.2.1.31.1.1.1.6.443|70|1138574572 +1.3.6.1.2.1.31.1.1.1.6.444|70|1042853052 +1.3.6.1.2.1.31.1.1.1.6.445|70|145882998 +1.3.6.1.2.1.31.1.1.1.6.446|70|6900 +1.3.6.1.2.1.31.1.1.1.6.447|70|408341257 +1.3.6.1.2.1.31.1.1.1.6.448|70|125806 +1.3.6.1.2.1.31.1.1.1.6.449|70|188969342 +1.3.6.1.2.1.31.1.1.1.6.450|70|204392020 +1.3.6.1.2.1.31.1.1.1.6.451|70|155159450 +1.3.6.1.2.1.31.1.1.1.6.452|70|271008195 +1.3.6.1.2.1.31.1.1.1.6.453|70|265741114 +1.3.6.1.2.1.31.1.1.1.6.454|70|6900 +1.3.6.1.2.1.31.1.1.1.6.455|70|24898181 +1.3.6.1.2.1.31.1.1.1.6.456|70|93975947 +1.3.6.1.2.1.31.1.1.1.6.457|70|178772986 +1.3.6.1.2.1.31.1.1.1.6.462|70|19751842 +1.3.6.1.2.1.31.1.1.1.6.464|70|0 +1.3.6.1.2.1.31.1.1.1.6.465|70|0 +1.3.6.1.2.1.31.1.1.1.6.467|70|0 +1.3.6.1.2.1.31.1.1.1.6.468|70|280788 +1.3.6.1.2.1.31.1.1.1.6.474|70|526543839824 +1.3.6.1.2.1.31.1.1.1.6.475|70|7175162053 +1.3.6.1.2.1.31.1.1.1.6.476|70|921520709 +1.3.6.1.2.1.31.1.1.1.6.477|70|0 +1.3.6.1.2.1.31.1.1.1.6.478|70|91913359446 +1.3.6.1.2.1.31.1.1.1.6.487|70|3227501827441324 +1.3.6.1.2.1.31.1.1.1.6.489|70|12014094 +1.3.6.1.2.1.31.1.1.1.6.490|70|0 +1.3.6.1.2.1.31.1.1.1.6.493|70|325739179227 +1.3.6.1.2.1.31.1.1.1.6.494|70|0 +1.3.6.1.2.1.31.1.1.1.6.495|70|0 +1.3.6.1.2.1.31.1.1.1.6.496|70|0 +1.3.6.1.2.1.31.1.1.1.6.497|70|53376901192605 +1.3.6.1.2.1.31.1.1.1.6.502|70|3954325836320 +1.3.6.1.2.1.31.1.1.1.6.503|70|0 +1.3.6.1.2.1.31.1.1.1.6.504|70|238503442201584 +1.3.6.1.2.1.31.1.1.1.6.505|70|9907584 +1.3.6.1.2.1.31.1.1.1.6.506|70|3954446528994 +1.3.6.1.2.1.31.1.1.1.6.509|70|238502665961828 +1.3.6.1.2.1.31.1.1.1.6.510|70|0 +1.3.6.1.2.1.31.1.1.1.6.511|70|0 +1.3.6.1.2.1.31.1.1.1.6.513|70|801678639 +1.3.6.1.2.1.31.1.1.1.6.514|70|0 +1.3.6.1.2.1.31.1.1.1.6.515|70|0 +1.3.6.1.2.1.31.1.1.1.6.516|70|21678705893828 +1.3.6.1.2.1.31.1.1.1.6.517|70|190360512444 +1.3.6.1.2.1.31.1.1.1.6.518|70|0 +1.3.6.1.2.1.31.1.1.1.6.519|70|0 +1.3.6.1.2.1.31.1.1.1.6.520|70|0 +1.3.6.1.2.1.31.1.1.1.6.523|70|1063791587 +1.3.6.1.2.1.31.1.1.1.6.524|70|6381967934 +1.3.6.1.2.1.31.1.1.1.6.525|70|2431145804461 +1.3.6.1.2.1.31.1.1.1.6.526|70|4558232594157 +1.3.6.1.2.1.31.1.1.1.6.527|70|0 +1.3.6.1.2.1.31.1.1.1.6.528|70|25389509539980 +1.3.6.1.2.1.31.1.1.1.6.529|70|543250600 +1.3.6.1.2.1.31.1.1.1.6.530|70|4870117326 +1.3.6.1.2.1.31.1.1.1.6.531|70|8726427307814 +1.3.6.1.2.1.31.1.1.1.6.532|70|14291422560367 +1.3.6.1.2.1.31.1.1.1.6.533|70|6501696 +1.3.6.1.2.1.31.1.1.1.6.534|70|271957962 +1.3.6.1.2.1.31.1.1.1.6.535|70|2422320554714 +1.3.6.1.2.1.31.1.1.1.6.536|70|4557769218972 +1.3.6.1.2.1.31.1.1.1.6.538|70|25389504248075 +1.3.6.1.2.1.31.1.1.1.6.540|70|52005488680240 +1.3.6.1.2.1.31.1.1.1.6.541|70|11752508377 +1.3.6.1.2.1.31.1.1.1.6.542|70|14324886291345 +1.3.6.1.2.1.31.1.1.1.6.543|70|8726202468487 +1.3.6.1.2.1.31.1.1.1.6.544|70|717402020915 +1.3.6.1.2.1.31.1.1.1.6.545|70|717413488244 +1.3.6.1.2.1.31.1.1.1.6.546|70|111159812 +1.3.6.1.2.1.31.1.1.1.6.547|70|1305308502801155 +1.3.6.1.2.1.31.1.1.1.6.548|70|2181144 +1.3.6.1.2.1.31.1.1.1.6.549|70|2181144 +1.3.6.1.2.1.31.1.1.1.6.550|70|1921682425093659 +1.3.6.1.2.1.31.1.1.1.6.551|70|2181144 +1.3.6.1.2.1.31.1.1.1.6.552|70|2181144 +1.3.6.1.2.1.31.1.1.1.6.553|70|2181144 +1.3.6.1.2.1.31.1.1.1.6.554|70|2181144 +1.3.6.1.2.1.31.1.1.1.6.555|70|107105578 +1.3.6.1.2.1.31.1.1.1.6.556|70|978332201655 +1.3.6.1.2.1.31.1.1.1.6.557|70|7843617106 +1.3.6.1.2.1.31.1.1.1.6.558|70|7784909720 +1.3.6.1.2.1.31.1.1.1.6.559|70|8155587456 +1.3.6.1.2.1.31.1.1.1.6.560|70|7993540083 +1.3.6.1.2.1.31.1.1.1.6.561|70|703535453 +1.3.6.1.2.1.31.1.1.1.6.562|70|2213820 +1.3.6.1.2.1.31.1.1.1.6.563|70|100430294802 +1.3.6.1.2.1.31.1.1.1.6.564|70|0 +1.3.6.1.2.1.31.1.1.1.6.565|70|43961680 +1.3.6.1.2.1.31.1.1.1.6.566|70|4395978658583 +1.3.6.1.2.1.31.1.1.1.6.567|70|4639604961971 +1.3.6.1.2.1.31.1.1.1.6.568|70|4220973574698 +1.3.6.1.2.1.31.1.1.1.6.569|70|0 +1.3.6.1.2.1.31.1.1.1.6.570|70|3976671326627 +1.3.6.1.2.1.31.1.1.1.6.571|70|3902726016 +1.3.6.1.2.1.31.1.1.1.6.572|70|0 +1.3.6.1.2.1.31.1.1.1.6.573|70|2213820 +1.3.6.1.2.1.31.1.1.1.6.574|70|0 +1.3.6.1.2.1.31.1.1.1.6.575|70|1007149920006 +1.3.6.1.2.1.31.1.1.1.6.576|70|0 +1.3.6.1.2.1.31.1.1.1.6.577|70|15224609516941 +1.3.6.1.2.1.31.1.1.1.6.578|70|552628270152 +1.3.6.1.2.1.31.1.1.1.6.579|70|3085417185 +1.3.6.1.2.1.31.1.1.1.6.580|70|230546 +1.3.6.1.2.1.31.1.1.1.6.581|70|135746696 +1.3.6.1.2.1.31.1.1.1.6.582|70|157174864609 +1.3.6.1.2.1.31.1.1.1.6.583|70|3904441565 +1.3.6.1.2.1.31.1.1.1.6.584|70|1164 +1.3.6.1.2.1.31.1.1.1.6.585|70|29934058 +1.3.6.1.2.1.31.1.1.1.6.586|70|3971684452 +1.3.6.1.2.1.31.1.1.1.6.587|70|3903702306 +1.3.6.1.2.1.31.1.1.1.6.588|70|576 +1.3.6.1.2.1.31.1.1.1.6.589|70|240070287863 +1.3.6.1.2.1.31.1.1.1.6.590|70|149123358050 +1.3.6.1.2.1.31.1.1.1.6.591|70|713869774 +1.3.6.1.2.1.31.1.1.1.6.592|70|0 +1.3.6.1.2.1.31.1.1.1.6.593|70|0 +1.3.6.1.2.1.31.1.1.1.6.594|70|0 +1.3.6.1.2.1.31.1.1.1.6.595|70|3692298028 +1.3.6.1.2.1.31.1.1.1.6.596|70|0 +1.3.6.1.2.1.31.1.1.1.6.597|70|0 +1.3.6.1.2.1.31.1.1.1.6.598|70|0 +1.3.6.1.2.1.31.1.1.1.6.599|70|0 +1.3.6.1.2.1.31.1.1.1.6.600|70|3970879304 +1.3.6.1.2.1.31.1.1.1.6.601|70|171300636419 +1.3.6.1.2.1.31.1.1.1.6.602|70|2213820 +1.3.6.1.2.1.31.1.1.1.6.603|70|3624990735 +1.3.6.1.2.1.31.1.1.1.6.604|70|3558541902653 +1.3.6.1.2.1.31.1.1.1.6.605|70|0 +1.3.6.1.2.1.31.1.1.1.6.606|70|0 +1.3.6.1.2.1.31.1.1.1.6.607|70|0 +1.3.6.1.2.1.31.1.1.1.6.608|70|0 +1.3.6.1.2.1.31.1.1.1.6.609|70|0 +1.3.6.1.2.1.31.1.1.1.6.610|70|553096652054 +1.3.6.1.2.1.31.1.1.1.6.611|70|0 +1.3.6.1.2.1.31.1.1.1.6.612|70|120961173 +1.3.6.1.2.1.31.1.1.1.6.613|70|1408246794 +1.3.6.1.2.1.31.1.1.1.6.614|70|24343151210 +1.3.6.1.2.1.31.1.1.1.6.615|70|1085126198150 +1.3.6.1.2.1.31.1.1.1.6.616|70|376108082333 +1.3.6.1.2.1.31.1.1.1.6.617|70|29080472 +1.3.6.1.2.1.31.1.1.1.6.618|70|3908266542 +1.3.6.1.2.1.31.1.1.1.6.619|70|1364 +1.3.6.1.2.1.31.1.1.1.6.620|70|14576230188 +1.3.6.1.2.1.31.1.1.1.6.621|70|0 +1.3.6.1.2.1.31.1.1.1.6.622|70|2763977377318 +1.3.6.1.2.1.31.1.1.1.6.623|70|0 +1.3.6.1.2.1.31.1.1.1.6.624|70|291800629784 +1.3.6.1.2.1.31.1.1.1.6.625|70|0 +1.3.6.1.2.1.31.1.1.1.6.626|70|7466261527 +1.3.6.1.2.1.31.1.1.1.6.627|70|3266447083 +1.3.6.1.2.1.31.1.1.1.6.628|70|0 +1.3.6.1.2.1.31.1.1.1.6.629|70|3626421186 +1.3.6.1.2.1.31.1.1.1.6.630|70|0 +1.3.6.1.2.1.31.1.1.1.6.631|70|0 +1.3.6.1.2.1.31.1.1.1.6.632|70|3969409707 +1.3.6.1.2.1.31.1.1.1.6.633|70|22011224568282 +1.3.6.1.2.1.31.1.1.1.6.634|70|18068283670473 +1.3.6.1.2.1.31.1.1.1.6.635|70|0 +1.3.6.1.2.1.31.1.1.1.6.636|70|335141001 +1.3.6.1.2.1.31.1.1.1.6.637|70|0 +1.3.6.1.2.1.31.1.1.1.6.638|70|648 +1.3.6.1.2.1.31.1.1.1.6.639|70|0 +1.3.6.1.2.1.31.1.1.1.6.640|70|0 +1.3.6.1.2.1.31.1.1.1.6.641|70|648 +1.3.6.1.2.1.31.1.1.1.6.642|70|583450713 +1.3.6.1.2.1.31.1.1.1.6.643|70|0 +1.3.6.1.2.1.31.1.1.1.6.644|70|21887947798 +1.3.6.1.2.1.31.1.1.1.6.645|70|0 +1.3.6.1.2.1.31.1.1.1.6.646|70|0 +1.3.6.1.2.1.31.1.1.1.6.647|70|17710787607 +1.3.6.1.2.1.31.1.1.1.6.648|70|0 +1.3.6.1.2.1.31.1.1.1.6.649|70|35290667325 +1.3.6.1.2.1.31.1.1.1.6.650|70|2235828 +1.3.6.1.2.1.31.1.1.1.6.651|70|13316226038586 +1.3.6.1.2.1.31.1.1.1.6.652|70|0 +1.3.6.1.2.1.31.1.1.1.6.653|70|0 +1.3.6.1.2.1.31.1.1.1.6.654|70|2206596 +1.3.6.1.2.1.31.1.1.1.6.655|70|2214828 +1.3.6.1.2.1.31.1.1.1.6.656|70|1167520110863 +1.3.6.1.2.1.31.1.1.1.6.657|70|2610 +1.3.6.1.2.1.31.1.1.1.6.658|70|0 +1.3.6.1.2.1.31.1.1.1.6.659|70|3640365436 +1.3.6.1.2.1.31.1.1.1.6.660|70|4566 +1.3.6.1.2.1.31.1.1.1.6.661|70|5040011607 +1.3.6.1.2.1.31.1.1.1.6.662|70|219819293542 +1.3.6.1.2.1.31.1.1.1.6.663|70|7869404561 +1.3.6.1.2.1.31.1.1.1.6.664|70|133566592782 +1.3.6.1.2.1.31.1.1.1.6.665|70|7988118694293 +1.3.6.1.2.1.31.1.1.1.6.666|70|25276808 +1.3.6.1.2.1.31.1.1.1.6.667|70|7757555416 +1.3.6.1.2.1.31.1.1.1.6.668|70|0 +1.3.6.1.2.1.31.1.1.1.6.669|70|4260361189 +1.3.6.1.2.1.31.1.1.1.6.670|70|29659798 +1.3.6.1.2.1.31.1.1.1.6.671|70|0 +1.3.6.1.2.1.31.1.1.1.6.672|70|0 +1.3.6.1.2.1.31.1.1.1.6.673|70|0 +1.3.6.1.2.1.31.1.1.1.6.674|70|249189872 +1.3.6.1.2.1.31.1.1.1.6.675|70|0 +1.3.6.1.2.1.31.1.1.1.6.676|70|2224236 +1.3.6.1.2.1.31.1.1.1.6.677|70|1651932364 +1.3.6.1.2.1.31.1.1.1.6.678|70|0 +1.3.6.1.2.1.31.1.1.1.6.679|70|120677306742 +1.3.6.1.2.1.31.1.1.1.6.680|70|1128 +1.3.6.1.2.1.31.1.1.1.6.681|70|0 +1.3.6.1.2.1.31.1.1.1.6.682|70|2224236 +1.3.6.1.2.1.31.1.1.1.6.683|70|0 +1.3.6.1.2.1.31.1.1.1.6.684|70|0 +1.3.6.1.2.1.31.1.1.1.6.685|70|394358136 +1.3.6.1.2.1.31.1.1.1.6.686|70|3904121012 +1.3.6.1.2.1.31.1.1.1.6.687|70|3971759957 +1.3.6.1.2.1.31.1.1.1.6.688|70|3904220388 +1.3.6.1.2.1.31.1.1.1.6.689|70|7970546548 +1.3.6.1.2.1.31.1.1.1.6.690|70|3904936807 +1.3.6.1.2.1.31.1.1.1.6.691|70|3979684356 +1.3.6.1.2.1.31.1.1.1.6.692|70|0 +1.3.6.1.2.1.31.1.1.1.6.693|70|0 +1.3.6.1.2.1.31.1.1.1.6.694|70|0 +1.3.6.1.2.1.31.1.1.1.6.695|70|346173973 +1.3.6.1.2.1.31.1.1.1.6.696|70|14915138056755 +1.3.6.1.2.1.31.1.1.1.6.697|70|935226067957 +1.3.6.1.2.1.31.1.1.1.6.698|70|0 +1.3.6.1.2.1.31.1.1.1.6.699|70|0 +1.3.6.1.2.1.31.1.1.1.6.700|70|0 +1.3.6.1.2.1.31.1.1.1.6.701|70|0 +1.3.6.1.2.1.31.1.1.1.6.702|70|0 +1.3.6.1.2.1.31.1.1.1.6.703|70|2224236 +1.3.6.1.2.1.31.1.1.1.6.704|70|720 +1.3.6.1.2.1.31.1.1.1.6.705|70|294710111040 +1.3.6.1.2.1.31.1.1.1.6.706|70|82118951400 +1.3.6.1.2.1.31.1.1.1.6.707|70|3968229785 +1.3.6.1.2.1.31.1.1.1.6.708|70|720 +1.3.6.1.2.1.31.1.1.1.6.709|70|720 +1.3.6.1.2.1.31.1.1.1.6.710|70|720 +1.3.6.1.2.1.31.1.1.1.6.711|70|0 +1.3.6.1.2.1.31.1.1.1.6.712|70|2216241083084 +1.3.6.1.2.1.31.1.1.1.6.713|70|720 +1.3.6.1.2.1.31.1.1.1.6.714|70|3811617108319 +1.3.6.1.2.1.31.1.1.1.6.715|70|2214240 +1.3.6.1.2.1.31.1.1.1.6.716|70|0 +1.3.6.1.2.1.31.1.1.1.6.717|70|3687554185 +1.3.6.1.2.1.31.1.1.1.6.718|70|3625737690 +1.3.6.1.2.1.31.1.1.1.6.719|70|7253250398 +1.3.6.1.2.1.31.1.1.1.6.720|70|0 +1.3.6.1.2.1.31.1.1.1.6.721|70|3972732030 +1.3.6.1.2.1.31.1.1.1.6.722|70|1308 +1.3.6.1.2.1.31.1.1.1.6.723|70|2532 +1.3.6.1.2.1.31.1.1.1.6.724|70|2437854742823 +1.3.6.1.2.1.31.1.1.1.6.725|70|3906327798 +1.3.6.1.2.1.31.1.1.1.6.726|70|2214240 +1.3.6.1.2.1.31.1.1.1.6.727|70|1172356005 +1.3.6.1.2.1.31.1.1.1.6.728|70|0 +1.3.6.1.2.1.31.1.1.1.6.729|70|25273059 +1.3.6.1.2.1.31.1.1.1.6.730|70|987891140493 +1.3.6.1.2.1.31.1.1.1.6.731|70|959790203495 +1.3.6.1.2.1.31.1.1.1.6.732|70|203744715035 +1.3.6.1.2.1.31.1.1.1.6.733|70|63007057962 +1.3.6.1.2.1.31.1.1.1.6.734|70|1359356564 +1.3.6.1.2.1.31.1.1.1.6.735|70|92489617671 +1.3.6.1.2.1.31.1.1.1.6.736|70|42214030203 +1.3.6.1.2.1.31.1.1.1.6.737|70|44153951009 +1.3.6.1.2.1.31.1.1.1.6.738|70|2214240 +1.3.6.1.2.1.31.1.1.1.6.739|70|5007291462 +1.3.6.1.2.1.31.1.1.1.6.740|70|472327867 +1.3.6.1.2.1.31.1.1.1.6.741|70|0 +1.3.6.1.2.1.31.1.1.1.6.742|70|104951194773 +1.3.6.1.2.1.31.1.1.1.6.743|70|0 +1.3.6.1.2.1.31.1.1.1.6.744|70|0 +1.3.6.1.2.1.31.1.1.1.6.745|70|3879265925 +1.3.6.1.2.1.31.1.1.1.6.746|70|0 +1.3.6.1.2.1.31.1.1.1.6.747|70|2214240 +1.3.6.1.2.1.31.1.1.1.6.748|70|167682453661 +1.3.6.1.2.1.31.1.1.1.6.749|70|5703437324 +1.3.6.1.2.1.31.1.1.1.6.750|70|1968230518189 +1.3.6.1.2.1.31.1.1.1.6.751|70|20567723193 +1.3.6.1.2.1.31.1.1.1.6.768|70|35137000728104 +1.3.6.1.2.1.31.1.1.1.6.769|70|48628199967528 +1.3.6.1.2.1.31.1.1.1.6.770|70|35136503720753 +1.3.6.1.2.1.31.1.1.1.6.771|70|508037321379 +1.3.6.1.2.1.31.1.1.1.6.772|70|12149209511418 +1.3.6.1.2.1.31.1.1.1.6.773|70|1205545729042 +1.3.6.1.2.1.31.1.1.1.6.774|70|508026185862 +1.3.6.1.2.1.31.1.1.1.6.775|70|12149220041766 +1.3.6.1.2.1.31.1.1.1.6.776|70|1205558697204 +1.3.6.1.2.1.31.1.1.1.6.777|70|8312946 +1.3.6.1.2.1.31.1.1.1.6.778|70|329831387 +1.3.6.1.2.1.31.1.1.1.6.779|70|143671172 +1.3.6.1.2.1.31.1.1.1.6.780|70|377073708001 +1.3.6.1.2.1.31.1.1.1.6.781|70|33484090107 +1.3.6.1.2.1.31.1.1.1.6.782|70|607157653 +1.3.6.1.2.1.31.1.1.1.6.783|70|638418962 +1.3.6.1.2.1.31.1.1.1.6.784|70|562860780 +1.3.6.1.2.1.31.1.1.1.6.785|70|562860846 +1.3.6.1.2.1.31.1.1.1.6.786|70|92947895 +1.3.6.1.2.1.31.1.1.1.6.787|70|933908060 +1.3.6.1.2.1.31.1.1.1.6.788|70|15005607459952 +1.3.6.1.2.1.31.1.1.1.6.789|70|1491408231773 +1.3.6.1.2.1.31.1.1.1.6.790|70|2601514781489 +1.3.6.1.2.1.31.1.1.1.6.791|70|52145418276286 +1.3.6.1.2.1.31.1.1.1.6.792|70|1491405134539 +1.3.6.1.2.1.31.1.1.1.6.793|70|2601515460713 +1.3.6.1.2.1.31.1.1.1.6.794|70|52145430042737 +1.3.6.1.2.1.31.1.1.1.6.795|70|205160194895 +1.3.6.1.2.1.31.1.1.1.6.796|70|1840023558336 +1.3.6.1.2.1.31.1.1.1.6.797|70|6710991290684 +1.3.6.1.2.1.31.1.1.1.6.798|70|5538140091 +1.3.6.1.2.1.31.1.1.1.6.799|70|1898911118701 +1.3.6.1.2.1.31.1.1.1.6.800|70|426904879563 +1.3.6.1.2.1.31.1.1.1.6.801|70|15005606797762 +1.3.6.1.2.1.31.1.1.1.6.802|70|5537437547 +1.3.6.1.2.1.31.1.1.1.6.803|70|1898911515391 +1.3.6.1.2.1.31.1.1.1.6.804|70|205159736314 +1.3.6.1.2.1.31.1.1.1.6.805|70|1840034736129 +1.3.6.1.2.1.31.1.1.1.6.806|70|6710987230566 +1.3.6.1.2.1.31.1.1.1.6.807|70|426903852857 +1.3.6.1.2.1.31.1.1.1.6.808|70|3562105340 +1.3.6.1.2.1.31.1.1.1.6.809|70|3287579104 +1.3.6.1.2.1.31.1.1.1.6.810|70|3072389745 +1.3.6.1.2.1.31.1.1.1.6.811|70|3287855055 +1.3.6.1.2.1.31.1.1.1.6.812|70|1188535886148 +1.3.6.1.2.1.31.1.1.1.6.813|70|3233214435545 +1.3.6.1.2.1.31.1.1.1.6.814|70|3233215743143 +1.3.6.1.2.1.31.1.1.1.6.815|70|1188731769857 +1.3.6.1.2.1.31.1.1.1.6.816|70|1102172368 +1.3.6.1.2.1.31.1.1.1.6.817|70|171664470355 +1.3.6.1.2.1.31.1.1.1.6.818|70|171529492088 +1.3.6.1.2.1.31.1.1.1.6.819|70|8883150696107 +1.3.6.1.2.1.31.1.1.1.6.820|70|441191791 +1.3.6.1.2.1.31.1.1.1.6.821|70|498674737 +1.3.6.1.2.1.31.1.1.1.6.822|70|904616287 +1.3.6.1.2.1.31.1.1.1.6.823|70|214754086 +1.3.6.1.2.1.31.1.1.1.6.824|70|817887 +1.3.6.1.2.1.31.1.1.1.6.825|70|278999128 +1.3.6.1.2.1.31.1.1.1.6.826|70|712638994 +1.3.6.1.2.1.31.1.1.1.6.827|70|168499611 +1.3.6.1.2.1.31.1.1.1.6.828|70|0 +1.3.6.1.2.1.31.1.1.1.6.829|70|0 +1.3.6.1.2.1.31.1.1.1.6.830|70|0 +1.3.6.1.2.1.31.1.1.1.6.831|70|208532481516464 +1.3.6.1.2.1.31.1.1.1.6.832|70|3056825412 +1.3.6.1.2.1.31.1.1.1.6.833|70|2361787207317 +1.3.6.1.2.1.31.1.1.1.6.834|70|2361786072991 +1.3.6.1.2.1.31.1.1.1.6.835|70|208532481432620 +1.3.6.1.2.1.31.1.1.1.6.836|70|3055600053 +1.3.6.1.2.1.31.1.1.1.6.837|70|3149390837 +1.3.6.1.2.1.31.1.1.1.6.838|70|3149020317 +1.3.6.1.2.1.31.1.1.1.6.839|70|655467 +1.3.6.1.2.1.31.1.1.1.6.840|70|59802 +1.3.6.1.2.1.31.1.1.1.6.841|70|25565112953 +1.3.6.1.2.1.31.1.1.1.6.842|70|12595881250599 +1.3.6.1.2.1.31.1.1.1.6.843|70|334976010 +1.3.6.1.2.1.31.1.1.1.6.844|70|9798796 +1.3.6.1.2.1.31.1.1.1.6.845|70|7086872 +1.3.6.1.2.1.31.1.1.1.6.846|70|971417314945 +1.3.6.1.2.1.31.1.1.1.6.847|70|569423944005 +1.3.6.1.2.1.31.1.1.1.6.848|70|12595881262967 +1.3.6.1.2.1.31.1.1.1.6.849|70|569423246939 +1.3.6.1.2.1.31.1.1.1.6.850|70|971417141318 +1.3.6.1.2.1.31.1.1.1.6.851|70|8529551 +1.3.6.1.2.1.31.1.1.1.6.852|70|8409033 +1.3.6.1.2.1.31.1.1.1.6.853|70|43100897569 +1.3.6.1.2.1.31.1.1.1.6.854|70|43100901116 +1.3.6.1.2.1.31.1.1.1.6.855|70|0 +1.3.6.1.2.1.31.1.1.1.6.856|70|209248783 +1.3.6.1.2.1.31.1.1.1.6.857|70|191746297 +1.3.6.1.2.1.31.1.1.1.6.858|70|208375742 +1.3.6.1.2.1.31.1.1.1.6.859|70|2580 +1.3.6.1.2.1.31.1.1.1.6.864|70|502230 +1.3.6.1.2.1.31.1.1.1.6.868|70|672685499 +1.3.6.1.2.1.31.1.1.1.6.869|70|104529278104 +1.3.6.1.2.1.31.1.1.1.6.870|70|786725564 +1.3.6.1.2.1.31.1.1.1.6.871|70|104528803983 +1.3.6.1.2.1.31.1.1.1.6.872|70|786725694 +1.3.6.1.2.1.31.1.1.1.6.873|70|104790692 +1.3.6.1.2.1.31.1.1.1.6.874|70|104040900266 +1.3.6.1.2.1.31.1.1.1.6.875|70|10474754431010 +1.3.6.1.2.1.31.1.1.1.6.876|70|440298222741 +1.3.6.1.2.1.31.1.1.1.6.877|70|1090671771396 +1.3.6.1.2.1.31.1.1.1.6.878|70|440300433161 +1.3.6.1.2.1.31.1.1.1.6.879|70|1090671859517 +1.3.6.1.2.1.31.1.1.1.6.880|70|10474754858431 +1.3.6.1.2.1.31.1.1.1.6.881|70|104040476818 +1.3.6.1.2.1.31.1.1.1.6.882|70|373449588238 +1.3.6.1.2.1.31.1.1.1.6.883|70|373464674680 +1.3.6.1.2.1.31.1.1.1.6.884|70|47542229019 +1.3.6.1.2.1.31.1.1.1.6.885|70|47542238209 +1.3.6.1.2.1.31.1.1.1.6.886|70|0 +1.3.6.1.2.1.31.1.1.1.6.887|70|166590156 +1.3.6.1.2.1.31.1.1.1.6.888|70|1180785023703 +1.3.6.1.2.1.31.1.1.1.6.889|70|1160287110508 +1.3.6.1.2.1.31.1.1.1.6.890|70|144260248297 +1.3.6.1.2.1.31.1.1.1.6.891|70|8504773189358 +1.3.6.1.2.1.31.1.1.1.6.892|70|11094818602 +1.3.6.1.2.1.31.1.1.1.6.893|70|71251331 +1.3.6.1.2.1.31.1.1.1.6.894|70|24869493 +1.3.6.1.2.1.31.1.1.1.6.895|70|40455060 +1.3.6.1.2.1.31.1.1.1.6.896|70|9439223 +1.3.6.1.2.1.31.1.1.1.6.897|70|2573096 +1.3.6.1.2.1.31.1.1.1.6.898|70|33306284 +1.3.6.1.2.1.31.1.1.1.6.899|70|199079553 +1.3.6.1.2.1.31.1.1.1.6.900|70|98261088713 +1.3.6.1.2.1.31.1.1.1.6.901|70|621482187768 +1.3.6.1.2.1.31.1.1.1.6.902|70|64704204 +1.3.6.1.2.1.31.1.1.1.6.903|70|28052366 +1.3.6.1.2.1.31.1.1.1.6.904|70|66484573 +1.3.6.1.2.1.31.1.1.1.6.905|70|298620 +1.3.6.1.2.1.31.1.1.1.6.906|70|185455446 +1.3.6.1.2.1.31.1.1.1.6.907|70|98260700629 +1.3.6.1.2.1.31.1.1.1.6.908|70|621482225692 +1.3.6.1.2.1.31.1.1.1.6.909|70|8504831771996 +1.3.6.1.2.1.31.1.1.1.6.910|70|1182950100 +1.3.6.1.2.1.31.1.1.1.6.911|70|393766556 +1.3.6.1.2.1.31.1.1.1.6.912|70|353295534 +1.3.6.1.2.1.31.1.1.1.6.913|70|2741376 +1.3.6.1.2.1.31.1.1.1.6.914|70|3240 +1.3.6.1.2.1.31.1.1.1.6.915|70|645936522 +1.3.6.1.2.1.31.1.1.1.6.916|70|585620090043 +1.3.6.1.2.1.31.1.1.1.6.917|70|3523536381548 +1.3.6.1.2.1.31.1.1.1.6.918|70|81176906578 +1.3.6.1.2.1.31.1.1.1.6.919|70|3523536372009 +1.3.6.1.2.1.31.1.1.1.6.920|70|81176889943 +1.3.6.1.2.1.31.1.1.1.6.921|70|585619724640 +1.3.6.1.2.1.31.1.1.1.6.922|70|21561841698 +1.3.6.1.2.1.31.1.1.1.6.923|70|694147103835 +1.3.6.1.2.1.31.1.1.1.6.924|70|7273122514 +1.3.6.1.2.1.31.1.1.1.6.925|70|694147121733 +1.3.6.1.2.1.31.1.1.1.6.926|70|7273135504 +1.3.6.1.2.1.31.1.1.1.6.927|70|21561831626 +1.3.6.1.2.1.31.1.1.1.6.928|70|2442379 +1.3.6.1.2.1.31.1.1.1.6.929|70|66690 +1.3.6.1.2.1.31.1.1.1.6.930|70|1170918 +1.3.6.1.2.1.31.1.1.1.6.931|70|1910367 +1.3.6.1.2.1.31.1.1.1.6.932|70|66690 +1.3.6.1.2.1.31.1.1.1.6.933|70|66690 +1.3.6.1.2.1.31.1.1.1.6.934|70|66690 +1.3.6.1.2.1.31.1.1.1.6.935|70|66690 +1.3.6.1.2.1.31.1.1.1.6.936|70|66690 +1.3.6.1.2.1.31.1.1.1.6.937|70|65220 +1.3.6.1.2.1.31.1.1.1.6.938|70|308853917 +1.3.6.1.2.1.31.1.1.1.6.939|70|88247723463 +1.3.6.1.2.1.31.1.1.1.6.940|70|684734371 +1.3.6.1.2.1.31.1.1.1.6.941|70|755469316511 +1.3.6.1.2.1.31.1.1.1.6.942|70|308881451 +1.3.6.1.2.1.31.1.1.1.6.943|70|88247780096 +1.3.6.1.2.1.31.1.1.1.6.944|70|684734606 +1.3.6.1.2.1.31.1.1.1.6.945|70|755469278614 +1.3.6.1.2.1.31.1.1.1.6.946|70|231044 +1.3.6.1.2.1.31.1.1.1.6.947|70|140957231 +1.3.6.1.2.1.31.1.1.1.6.948|70|328605963 +1.3.6.1.2.1.31.1.1.1.6.949|70|38301151 +1.3.6.1.2.1.31.1.1.1.7.251|70|0 +1.3.6.1.2.1.31.1.1.1.7.252|70|14120343722 +1.3.6.1.2.1.31.1.1.1.7.254|70|0 +1.3.6.1.2.1.31.1.1.1.7.255|70|0 +1.3.6.1.2.1.31.1.1.1.7.258|70|721852539 +1.3.6.1.2.1.31.1.1.1.7.259|70|0 +1.3.6.1.2.1.31.1.1.1.7.260|70|70 +1.3.6.1.2.1.31.1.1.1.7.261|70|0 +1.3.6.1.2.1.31.1.1.1.7.262|70|0 +1.3.6.1.2.1.31.1.1.1.7.263|70|0 +1.3.6.1.2.1.31.1.1.1.7.264|70|0 +1.3.6.1.2.1.31.1.1.1.7.265|70|92366633 +1.3.6.1.2.1.31.1.1.1.7.266|70|2178545253582 +1.3.6.1.2.1.31.1.1.1.7.267|70|5947961 +1.3.6.1.2.1.31.1.1.1.7.268|70|66093151234 +1.3.6.1.2.1.31.1.1.1.7.269|70|21673819687 +1.3.6.1.2.1.31.1.1.1.7.270|70|0 +1.3.6.1.2.1.31.1.1.1.7.273|70|0 +1.3.6.1.2.1.31.1.1.1.7.274|70|0 +1.3.6.1.2.1.31.1.1.1.7.275|70|1136667 +1.3.6.1.2.1.31.1.1.1.7.276|70|508801 +1.3.6.1.2.1.31.1.1.1.7.277|70|0 +1.3.6.1.2.1.31.1.1.1.7.278|70|0 +1.3.6.1.2.1.31.1.1.1.7.280|70|0 +1.3.6.1.2.1.31.1.1.1.7.281|70|0 +1.3.6.1.2.1.31.1.1.1.7.282|70|0 +1.3.6.1.2.1.31.1.1.1.7.283|70|0 +1.3.6.1.2.1.31.1.1.1.7.284|70|0 +1.3.6.1.2.1.31.1.1.1.7.285|70|0 +1.3.6.1.2.1.31.1.1.1.7.286|70|0 +1.3.6.1.2.1.31.1.1.1.7.287|70|0 +1.3.6.1.2.1.31.1.1.1.7.288|70|0 +1.3.6.1.2.1.31.1.1.1.7.291|70|0 +1.3.6.1.2.1.31.1.1.1.7.292|70|87297 +1.3.6.1.2.1.31.1.1.1.7.293|70|102122 +1.3.6.1.2.1.31.1.1.1.7.294|70|0 +1.3.6.1.2.1.31.1.1.1.7.295|70|565102344 +1.3.6.1.2.1.31.1.1.1.7.395|70|0 +1.3.6.1.2.1.31.1.1.1.7.396|70|0 +1.3.6.1.2.1.31.1.1.1.7.398|70|244926471500 +1.3.6.1.2.1.31.1.1.1.7.399|70|10982784 +1.3.6.1.2.1.31.1.1.1.7.414|70|0 +1.3.6.1.2.1.31.1.1.1.7.415|70|0 +1.3.6.1.2.1.31.1.1.1.7.417|70|6104 +1.3.6.1.2.1.31.1.1.1.7.418|70|65063415312 +1.3.6.1.2.1.31.1.1.1.7.438|70|19323349 +1.3.6.1.2.1.31.1.1.1.7.439|70|185395 +1.3.6.1.2.1.31.1.1.1.7.440|70|202661 +1.3.6.1.2.1.31.1.1.1.7.441|70|105350 +1.3.6.1.2.1.31.1.1.1.7.442|70|721571 +1.3.6.1.2.1.31.1.1.1.7.443|70|236734 +1.3.6.1.2.1.31.1.1.1.7.444|70|155944 +1.3.6.1.2.1.31.1.1.1.7.445|70|55369 +1.3.6.1.2.1.31.1.1.1.7.446|70|0 +1.3.6.1.2.1.31.1.1.1.7.447|70|260040 +1.3.6.1.2.1.31.1.1.1.7.448|70|104 +1.3.6.1.2.1.31.1.1.1.7.449|70|95652 +1.3.6.1.2.1.31.1.1.1.7.450|70|73296 +1.3.6.1.2.1.31.1.1.1.7.451|70|62256 +1.3.6.1.2.1.31.1.1.1.7.452|70|182115 +1.3.6.1.2.1.31.1.1.1.7.453|70|138810 +1.3.6.1.2.1.31.1.1.1.7.454|70|0 +1.3.6.1.2.1.31.1.1.1.7.455|70|11784 +1.3.6.1.2.1.31.1.1.1.7.456|70|46058 +1.3.6.1.2.1.31.1.1.1.7.457|70|7576 +1.3.6.1.2.1.31.1.1.1.7.462|70|12128 +1.3.6.1.2.1.31.1.1.1.7.464|70|0 +1.3.6.1.2.1.31.1.1.1.7.465|70|0 +1.3.6.1.2.1.31.1.1.1.7.467|70|0 +1.3.6.1.2.1.31.1.1.1.7.468|70|0 +1.3.6.1.2.1.31.1.1.1.7.474|70|1181003526 +1.3.6.1.2.1.31.1.1.1.7.475|70|2788122 +1.3.6.1.2.1.31.1.1.1.7.476|70|140166 +1.3.6.1.2.1.31.1.1.1.7.477|70|0 +1.3.6.1.2.1.31.1.1.1.7.478|70|300771553 +1.3.6.1.2.1.31.1.1.1.7.487|70|2519766283733 +1.3.6.1.2.1.31.1.1.1.7.489|70|11965 +1.3.6.1.2.1.31.1.1.1.7.490|70|0 +1.3.6.1.2.1.31.1.1.1.7.493|70|1461768696 +1.3.6.1.2.1.31.1.1.1.7.494|70|0 +1.3.6.1.2.1.31.1.1.1.7.495|70|0 +1.3.6.1.2.1.31.1.1.1.7.496|70|0 +1.3.6.1.2.1.31.1.1.1.7.497|70|382065513241 +1.3.6.1.2.1.31.1.1.1.7.502|70|33009316688 +1.3.6.1.2.1.31.1.1.1.7.503|70|0 +1.3.6.1.2.1.31.1.1.1.7.504|70|187046194649 +1.3.6.1.2.1.31.1.1.1.7.505|70|318 +1.3.6.1.2.1.31.1.1.1.7.506|70|33010419378 +1.3.6.1.2.1.31.1.1.1.7.509|70|187045965951 +1.3.6.1.2.1.31.1.1.1.7.510|70|0 +1.3.6.1.2.1.31.1.1.1.7.511|70|0 +1.3.6.1.2.1.31.1.1.1.7.513|70|109212 +1.3.6.1.2.1.31.1.1.1.7.514|70|0 +1.3.6.1.2.1.31.1.1.1.7.515|70|0 +1.3.6.1.2.1.31.1.1.1.7.516|70|37984917847 +1.3.6.1.2.1.31.1.1.1.7.517|70|162798893 +1.3.6.1.2.1.31.1.1.1.7.518|70|0 +1.3.6.1.2.1.31.1.1.1.7.519|70|0 +1.3.6.1.2.1.31.1.1.1.7.520|70|0 +1.3.6.1.2.1.31.1.1.1.7.523|70|2828506 +1.3.6.1.2.1.31.1.1.1.7.524|70|37172713 +1.3.6.1.2.1.31.1.1.1.7.525|70|5563621664 +1.3.6.1.2.1.31.1.1.1.7.526|70|6486382599 +1.3.6.1.2.1.31.1.1.1.7.527|70|0 +1.3.6.1.2.1.31.1.1.1.7.528|70|19598577781 +1.3.6.1.2.1.31.1.1.1.7.529|70|97616 +1.3.6.1.2.1.31.1.1.1.7.530|70|5121296 +1.3.6.1.2.1.31.1.1.1.7.531|70|6529779122 +1.3.6.1.2.1.31.1.1.1.7.532|70|10609800727 +1.3.6.1.2.1.31.1.1.1.7.533|70|1982 +1.3.6.1.2.1.31.1.1.1.7.534|70|5114 +1.3.6.1.2.1.31.1.1.1.7.535|70|5548627593 +1.3.6.1.2.1.31.1.1.1.7.536|70|6486362659 +1.3.6.1.2.1.31.1.1.1.7.538|70|19598590012 +1.3.6.1.2.1.31.1.1.1.7.540|70|43964412330 +1.3.6.1.2.1.31.1.1.1.7.541|70|96227937 +1.3.6.1.2.1.31.1.1.1.7.542|70|10773454646 +1.3.6.1.2.1.31.1.1.1.7.543|70|6527973257 +1.3.6.1.2.1.31.1.1.1.7.544|70|4414410603 +1.3.6.1.2.1.31.1.1.1.7.545|70|4414525301 +1.3.6.1.2.1.31.1.1.1.7.546|70|3414 +1.3.6.1.2.1.31.1.1.1.7.547|70|1086346174469 +1.3.6.1.2.1.31.1.1.1.7.548|70|0 +1.3.6.1.2.1.31.1.1.1.7.549|70|0 +1.3.6.1.2.1.31.1.1.1.7.550|70|1433063193127 +1.3.6.1.2.1.31.1.1.1.7.551|70|0 +1.3.6.1.2.1.31.1.1.1.7.552|70|0 +1.3.6.1.2.1.31.1.1.1.7.553|70|0 +1.3.6.1.2.1.31.1.1.1.7.554|70|0 +1.3.6.1.2.1.31.1.1.1.7.555|70|1482 +1.3.6.1.2.1.31.1.1.1.7.556|70|1024868994 +1.3.6.1.2.1.31.1.1.1.7.557|70|493597 +1.3.6.1.2.1.31.1.1.1.7.558|70|324 +1.3.6.1.2.1.31.1.1.1.7.559|70|4022459 +1.3.6.1.2.1.31.1.1.1.7.560|70|2189093 +1.3.6.1.2.1.31.1.1.1.7.561|70|8558663 +1.3.6.1.2.1.31.1.1.1.7.562|70|0 +1.3.6.1.2.1.31.1.1.1.7.563|70|107116588 +1.3.6.1.2.1.31.1.1.1.7.564|70|0 +1.3.6.1.2.1.31.1.1.1.7.565|70|81766 +1.3.6.1.2.1.31.1.1.1.7.566|70|3484450338 +1.3.6.1.2.1.31.1.1.1.7.567|70|3662872858 +1.3.6.1.2.1.31.1.1.1.7.568|70|3308549058 +1.3.6.1.2.1.31.1.1.1.7.569|70|0 +1.3.6.1.2.1.31.1.1.1.7.570|70|3168020851 +1.3.6.1.2.1.31.1.1.1.7.571|70|16201938 +1.3.6.1.2.1.31.1.1.1.7.572|70|0 +1.3.6.1.2.1.31.1.1.1.7.573|70|0 +1.3.6.1.2.1.31.1.1.1.7.574|70|0 +1.3.6.1.2.1.31.1.1.1.7.575|70|4002228183 +1.3.6.1.2.1.31.1.1.1.7.576|70|0 +1.3.6.1.2.1.31.1.1.1.7.577|70|33210768022 +1.3.6.1.2.1.31.1.1.1.7.578|70|2034183029 +1.3.6.1.2.1.31.1.1.1.7.579|70|10601338 +1.3.6.1.2.1.31.1.1.1.7.580|70|3419 +1.3.6.1.2.1.31.1.1.1.7.581|70|215087 +1.3.6.1.2.1.31.1.1.1.7.582|70|476928720 +1.3.6.1.2.1.31.1.1.1.7.583|70|16214726 +1.3.6.1.2.1.31.1.1.1.7.584|70|0 +1.3.6.1.2.1.31.1.1.1.7.585|70|3449 +1.3.6.1.2.1.31.1.1.1.7.586|70|16791926 +1.3.6.1.2.1.31.1.1.1.7.587|70|16213213 +1.3.6.1.2.1.31.1.1.1.7.588|70|0 +1.3.6.1.2.1.31.1.1.1.7.589|70|2395367608 +1.3.6.1.2.1.31.1.1.1.7.590|70|460077949 +1.3.6.1.2.1.31.1.1.1.7.591|70|7383176 +1.3.6.1.2.1.31.1.1.1.7.592|70|0 +1.3.6.1.2.1.31.1.1.1.7.593|70|0 +1.3.6.1.2.1.31.1.1.1.7.594|70|0 +1.3.6.1.2.1.31.1.1.1.7.595|70|16729714 +1.3.6.1.2.1.31.1.1.1.7.596|70|0 +1.3.6.1.2.1.31.1.1.1.7.597|70|0 +1.3.6.1.2.1.31.1.1.1.7.598|70|0 +1.3.6.1.2.1.31.1.1.1.7.599|70|0 +1.3.6.1.2.1.31.1.1.1.7.600|70|16790849 +1.3.6.1.2.1.31.1.1.1.7.601|70|1248040294 +1.3.6.1.2.1.31.1.1.1.7.602|70|0 +1.3.6.1.2.1.31.1.1.1.7.603|70|16142630 +1.3.6.1.2.1.31.1.1.1.7.604|70|5220151511 +1.3.6.1.2.1.31.1.1.1.7.605|70|0 +1.3.6.1.2.1.31.1.1.1.7.606|70|0 +1.3.6.1.2.1.31.1.1.1.7.607|70|0 +1.3.6.1.2.1.31.1.1.1.7.608|70|0 +1.3.6.1.2.1.31.1.1.1.7.609|70|0 +1.3.6.1.2.1.31.1.1.1.7.610|70|546694842 +1.3.6.1.2.1.31.1.1.1.7.611|70|0 +1.3.6.1.2.1.31.1.1.1.7.612|70|1162606 +1.3.6.1.2.1.31.1.1.1.7.613|70|12100063 +1.3.6.1.2.1.31.1.1.1.7.614|70|56044290 +1.3.6.1.2.1.31.1.1.1.7.615|70|2573290330 +1.3.6.1.2.1.31.1.1.1.7.616|70|875314635 +1.3.6.1.2.1.31.1.1.1.7.617|70|3551 +1.3.6.1.2.1.31.1.1.1.7.618|70|16227604 +1.3.6.1.2.1.31.1.1.1.7.619|70|2 +1.3.6.1.2.1.31.1.1.1.7.620|70|10316489 +1.3.6.1.2.1.31.1.1.1.7.621|70|0 +1.3.6.1.2.1.31.1.1.1.7.622|70|7658057817 +1.3.6.1.2.1.31.1.1.1.7.623|70|0 +1.3.6.1.2.1.31.1.1.1.7.624|70|520383452 +1.3.6.1.2.1.31.1.1.1.7.625|70|0 +1.3.6.1.2.1.31.1.1.1.7.626|70|1968947 +1.3.6.1.2.1.31.1.1.1.7.627|70|14276254 +1.3.6.1.2.1.31.1.1.1.7.628|70|0 +1.3.6.1.2.1.31.1.1.1.7.629|70|16147767 +1.3.6.1.2.1.31.1.1.1.7.630|70|0 +1.3.6.1.2.1.31.1.1.1.7.631|70|0 +1.3.6.1.2.1.31.1.1.1.7.632|70|16776955 +1.3.6.1.2.1.31.1.1.1.7.633|70|87686438000 +1.3.6.1.2.1.31.1.1.1.7.634|70|190590717235 +1.3.6.1.2.1.31.1.1.1.7.635|70|0 +1.3.6.1.2.1.31.1.1.1.7.636|70|4312019 +1.3.6.1.2.1.31.1.1.1.7.637|70|0 +1.3.6.1.2.1.31.1.1.1.7.638|70|0 +1.3.6.1.2.1.31.1.1.1.7.639|70|0 +1.3.6.1.2.1.31.1.1.1.7.640|70|0 +1.3.6.1.2.1.31.1.1.1.7.641|70|0 +1.3.6.1.2.1.31.1.1.1.7.642|70|1945067 +1.3.6.1.2.1.31.1.1.1.7.643|70|0 +1.3.6.1.2.1.31.1.1.1.7.644|70|70082035 +1.3.6.1.2.1.31.1.1.1.7.645|70|0 +1.3.6.1.2.1.31.1.1.1.7.646|70|0 +1.3.6.1.2.1.31.1.1.1.7.647|70|73594241 +1.3.6.1.2.1.31.1.1.1.7.648|70|0 +1.3.6.1.2.1.31.1.1.1.7.649|70|370517782 +1.3.6.1.2.1.31.1.1.1.7.650|70|0 +1.3.6.1.2.1.31.1.1.1.7.651|70|103859329750 +1.3.6.1.2.1.31.1.1.1.7.652|70|0 +1.3.6.1.2.1.31.1.1.1.7.653|70|0 +1.3.6.1.2.1.31.1.1.1.7.654|70|0 +1.3.6.1.2.1.31.1.1.1.7.655|70|0 +1.3.6.1.2.1.31.1.1.1.7.656|70|1195751609 +1.3.6.1.2.1.31.1.1.1.7.657|70|0 +1.3.6.1.2.1.31.1.1.1.7.658|70|0 +1.3.6.1.2.1.31.1.1.1.7.659|70|16137020 +1.3.6.1.2.1.31.1.1.1.7.660|70|0 +1.3.6.1.2.1.31.1.1.1.7.661|70|159 +1.3.6.1.2.1.31.1.1.1.7.662|70|1479386691 +1.3.6.1.2.1.31.1.1.1.7.663|70|1810683 +1.3.6.1.2.1.31.1.1.1.7.664|70|113625552 +1.3.6.1.2.1.31.1.1.1.7.665|70|6160924474 +1.3.6.1.2.1.31.1.1.1.7.666|70|0 +1.3.6.1.2.1.31.1.1.1.7.667|70|151 +1.3.6.1.2.1.31.1.1.1.7.668|70|0 +1.3.6.1.2.1.31.1.1.1.7.669|70|19191219 +1.3.6.1.2.1.31.1.1.1.7.670|70|3622 +1.3.6.1.2.1.31.1.1.1.7.671|70|0 +1.3.6.1.2.1.31.1.1.1.7.672|70|0 +1.3.6.1.2.1.31.1.1.1.7.673|70|0 +1.3.6.1.2.1.31.1.1.1.7.674|70|2812884 +1.3.6.1.2.1.31.1.1.1.7.675|70|0 +1.3.6.1.2.1.31.1.1.1.7.676|70|0 +1.3.6.1.2.1.31.1.1.1.7.677|70|7361956 +1.3.6.1.2.1.31.1.1.1.7.678|70|0 +1.3.6.1.2.1.31.1.1.1.7.679|70|105316189 +1.3.6.1.2.1.31.1.1.1.7.680|70|0 +1.3.6.1.2.1.31.1.1.1.7.681|70|0 +1.3.6.1.2.1.31.1.1.1.7.682|70|0 +1.3.6.1.2.1.31.1.1.1.7.683|70|0 +1.3.6.1.2.1.31.1.1.1.7.684|70|0 +1.3.6.1.2.1.31.1.1.1.7.685|70|1714730 +1.3.6.1.2.1.31.1.1.1.7.686|70|16214416 +1.3.6.1.2.1.31.1.1.1.7.687|70|16793164 +1.3.6.1.2.1.31.1.1.1.7.688|70|16214589 +1.3.6.1.2.1.31.1.1.1.7.689|70|33655394 +1.3.6.1.2.1.31.1.1.1.7.690|70|16215096 +1.3.6.1.2.1.31.1.1.1.7.691|70|16815815 +1.3.6.1.2.1.31.1.1.1.7.692|70|0 +1.3.6.1.2.1.31.1.1.1.7.693|70|0 +1.3.6.1.2.1.31.1.1.1.7.694|70|0 +1.3.6.1.2.1.31.1.1.1.7.695|70|1759573 +1.3.6.1.2.1.31.1.1.1.7.696|70|45203295018 +1.3.6.1.2.1.31.1.1.1.7.697|70|9360127487 +1.3.6.1.2.1.31.1.1.1.7.698|70|0 +1.3.6.1.2.1.31.1.1.1.7.699|70|0 +1.3.6.1.2.1.31.1.1.1.7.700|70|0 +1.3.6.1.2.1.31.1.1.1.7.701|70|0 +1.3.6.1.2.1.31.1.1.1.7.702|70|0 +1.3.6.1.2.1.31.1.1.1.7.703|70|0 +1.3.6.1.2.1.31.1.1.1.7.704|70|0 +1.3.6.1.2.1.31.1.1.1.7.705|70|248890617 +1.3.6.1.2.1.31.1.1.1.7.706|70|201585625 +1.3.6.1.2.1.31.1.1.1.7.707|70|16781224 +1.3.6.1.2.1.31.1.1.1.7.708|70|0 +1.3.6.1.2.1.31.1.1.1.7.709|70|0 +1.3.6.1.2.1.31.1.1.1.7.710|70|0 +1.3.6.1.2.1.31.1.1.1.7.711|70|0 +1.3.6.1.2.1.31.1.1.1.7.712|70|7347534632 +1.3.6.1.2.1.31.1.1.1.7.713|70|0 +1.3.6.1.2.1.31.1.1.1.7.714|70|5880503294 +1.3.6.1.2.1.31.1.1.1.7.715|70|0 +1.3.6.1.2.1.31.1.1.1.7.716|70|0 +1.3.6.1.2.1.31.1.1.1.7.717|70|16720627 +1.3.6.1.2.1.31.1.1.1.7.718|70|16144729 +1.3.6.1.2.1.31.1.1.1.7.719|70|34970980 +1.3.6.1.2.1.31.1.1.1.7.720|70|0 +1.3.6.1.2.1.31.1.1.1.7.721|70|16797313 +1.3.6.1.2.1.31.1.1.1.7.722|70|0 +1.3.6.1.2.1.31.1.1.1.7.723|70|0 +1.3.6.1.2.1.31.1.1.1.7.724|70|3467558834 +1.3.6.1.2.1.31.1.1.1.7.725|70|16221489 +1.3.6.1.2.1.31.1.1.1.7.726|70|0 +1.3.6.1.2.1.31.1.1.1.7.727|70|6348002 +1.3.6.1.2.1.31.1.1.1.7.728|70|0 +1.3.6.1.2.1.31.1.1.1.7.729|70|0 +1.3.6.1.2.1.31.1.1.1.7.730|70|3475790054 +1.3.6.1.2.1.31.1.1.1.7.731|70|985102712 +1.3.6.1.2.1.31.1.1.1.7.732|70|729799668 +1.3.6.1.2.1.31.1.1.1.7.733|70|285514450 +1.3.6.1.2.1.31.1.1.1.7.734|70|14065 +1.3.6.1.2.1.31.1.1.1.7.735|70|252231573 +1.3.6.1.2.1.31.1.1.1.7.736|70|152996288 +1.3.6.1.2.1.31.1.1.1.7.737|70|180660838 +1.3.6.1.2.1.31.1.1.1.7.738|70|0 +1.3.6.1.2.1.31.1.1.1.7.739|70|6875360 +1.3.6.1.2.1.31.1.1.1.7.740|70|15507 +1.3.6.1.2.1.31.1.1.1.7.741|70|0 +1.3.6.1.2.1.31.1.1.1.7.742|70|1267306069 +1.3.6.1.2.1.31.1.1.1.7.743|70|0 +1.3.6.1.2.1.31.1.1.1.7.744|70|0 +1.3.6.1.2.1.31.1.1.1.7.745|70|18684874 +1.3.6.1.2.1.31.1.1.1.7.746|70|0 +1.3.6.1.2.1.31.1.1.1.7.747|70|0 +1.3.6.1.2.1.31.1.1.1.7.748|70|742406070 +1.3.6.1.2.1.31.1.1.1.7.749|70|44719780 +1.3.6.1.2.1.31.1.1.1.7.750|70|5003584580 +1.3.6.1.2.1.31.1.1.1.7.751|70|68982018 +1.3.6.1.2.1.31.1.1.1.7.768|70|33832970776 +1.3.6.1.2.1.31.1.1.1.7.769|70|41034712264 +1.3.6.1.2.1.31.1.1.1.7.770|70|33825774644 +1.3.6.1.2.1.31.1.1.1.7.771|70|2881562968 +1.3.6.1.2.1.31.1.1.1.7.772|70|9029554176 +1.3.6.1.2.1.31.1.1.1.7.773|70|999635661 +1.3.6.1.2.1.31.1.1.1.7.774|70|2881452907 +1.3.6.1.2.1.31.1.1.1.7.775|70|9029564000 +1.3.6.1.2.1.31.1.1.1.7.776|70|999645757 +1.3.6.1.2.1.31.1.1.1.7.777|70|21782 +1.3.6.1.2.1.31.1.1.1.7.778|70|961785 +1.3.6.1.2.1.31.1.1.1.7.779|70|822254 +1.3.6.1.2.1.31.1.1.1.7.780|70|901797577 +1.3.6.1.2.1.31.1.1.1.7.781|70|42619731 +1.3.6.1.2.1.31.1.1.1.7.782|70|405292 +1.3.6.1.2.1.31.1.1.1.7.783|70|301300 +1.3.6.1.2.1.31.1.1.1.7.784|70|1584 +1.3.6.1.2.1.31.1.1.1.7.785|70|1584 +1.3.6.1.2.1.31.1.1.1.7.786|70|55205 +1.3.6.1.2.1.31.1.1.1.7.787|70|179650 +1.3.6.1.2.1.31.1.1.1.7.788|70|11240135151 +1.3.6.1.2.1.31.1.1.1.7.789|70|8280172903 +1.3.6.1.2.1.31.1.1.1.7.790|70|3276270742 +1.3.6.1.2.1.31.1.1.1.7.791|70|38427223508 +1.3.6.1.2.1.31.1.1.1.7.792|70|8280129601 +1.3.6.1.2.1.31.1.1.1.7.793|70|3276263710 +1.3.6.1.2.1.31.1.1.1.7.794|70|38427239488 +1.3.6.1.2.1.31.1.1.1.7.795|70|767019651 +1.3.6.1.2.1.31.1.1.1.7.796|70|1489400556 +1.3.6.1.2.1.31.1.1.1.7.797|70|5594660821 +1.3.6.1.2.1.31.1.1.1.7.798|70|10584170 +1.3.6.1.2.1.31.1.1.1.7.799|70|3909823992 +1.3.6.1.2.1.31.1.1.1.7.800|70|1759972825 +1.3.6.1.2.1.31.1.1.1.7.801|70|11240132225 +1.3.6.1.2.1.31.1.1.1.7.802|70|10584007 +1.3.6.1.2.1.31.1.1.1.7.803|70|3909829031 +1.3.6.1.2.1.31.1.1.1.7.804|70|767010880 +1.3.6.1.2.1.31.1.1.1.7.805|70|1489412480 +1.3.6.1.2.1.31.1.1.1.7.806|70|5594667900 +1.3.6.1.2.1.31.1.1.1.7.807|70|1759958302 +1.3.6.1.2.1.31.1.1.1.7.808|70|6716936 +1.3.6.1.2.1.31.1.1.1.7.809|70|5400642 +1.3.6.1.2.1.31.1.1.1.7.810|70|3641145 +1.3.6.1.2.1.31.1.1.1.7.811|70|5402561 +1.3.6.1.2.1.31.1.1.1.7.812|70|3140950955 +1.3.6.1.2.1.31.1.1.1.7.813|70|4726444481 +1.3.6.1.2.1.31.1.1.1.7.814|70|4726457906 +1.3.6.1.2.1.31.1.1.1.7.815|70|3142308425 +1.3.6.1.2.1.31.1.1.1.7.816|70|838 +1.3.6.1.2.1.31.1.1.1.7.817|70|1248041348 +1.3.6.1.2.1.31.1.1.1.7.818|70|1245931256 +1.3.6.1.2.1.31.1.1.1.7.819|70|40424097343 +1.3.6.1.2.1.31.1.1.1.7.820|70|168 +1.3.6.1.2.1.31.1.1.1.7.821|70|309 +1.3.6.1.2.1.31.1.1.1.7.822|70|269 +1.3.6.1.2.1.31.1.1.1.7.823|70|0 +1.3.6.1.2.1.31.1.1.1.7.824|70|122 +1.3.6.1.2.1.31.1.1.1.7.825|70|961916 +1.3.6.1.2.1.31.1.1.1.7.826|70|58300 +1.3.6.1.2.1.31.1.1.1.7.827|70|2772 +1.3.6.1.2.1.31.1.1.1.7.828|70|0 +1.3.6.1.2.1.31.1.1.1.7.829|70|0 +1.3.6.1.2.1.31.1.1.1.7.830|70|0 +1.3.6.1.2.1.31.1.1.1.7.831|70|151490768097 +1.3.6.1.2.1.31.1.1.1.7.832|70|11639414 +1.3.6.1.2.1.31.1.1.1.7.833|70|35728376821 +1.3.6.1.2.1.31.1.1.1.7.834|70|35728360977 +1.3.6.1.2.1.31.1.1.1.7.835|70|151490768142 +1.3.6.1.2.1.31.1.1.1.7.836|70|11638471 +1.3.6.1.2.1.31.1.1.1.7.837|70|5037820 +1.3.6.1.2.1.31.1.1.1.7.838|70|5032074 +1.3.6.1.2.1.31.1.1.1.7.839|70|1712 +1.3.6.1.2.1.31.1.1.1.7.840|70|182 +1.3.6.1.2.1.31.1.1.1.7.841|70|131706827 +1.3.6.1.2.1.31.1.1.1.7.842|70|9600349194 +1.3.6.1.2.1.31.1.1.1.7.843|70|3690 +1.3.6.1.2.1.31.1.1.1.7.844|70|8181 +1.3.6.1.2.1.31.1.1.1.7.845|70|11 +1.3.6.1.2.1.31.1.1.1.7.846|70|1024783745 +1.3.6.1.2.1.31.1.1.1.7.847|70|2438546837 +1.3.6.1.2.1.31.1.1.1.7.848|70|9600349070 +1.3.6.1.2.1.31.1.1.1.7.849|70|2438536928 +1.3.6.1.2.1.31.1.1.1.7.850|70|1024780901 +1.3.6.1.2.1.31.1.1.1.7.851|70|511 +1.3.6.1.2.1.31.1.1.1.7.852|70|10627 +1.3.6.1.2.1.31.1.1.1.7.853|70|178074075 +1.3.6.1.2.1.31.1.1.1.7.854|70|178074086 +1.3.6.1.2.1.31.1.1.1.7.855|70|0 +1.3.6.1.2.1.31.1.1.1.7.856|70|159201 +1.3.6.1.2.1.31.1.1.1.7.857|70|7888 +1.3.6.1.2.1.31.1.1.1.7.858|70|56 +1.3.6.1.2.1.31.1.1.1.7.859|70|0 +1.3.6.1.2.1.31.1.1.1.7.864|70|96 +1.3.6.1.2.1.31.1.1.1.7.868|70|179184 +1.3.6.1.2.1.31.1.1.1.7.869|70|172523204 +1.3.6.1.2.1.31.1.1.1.7.870|70|15833 +1.3.6.1.2.1.31.1.1.1.7.871|70|172516500 +1.3.6.1.2.1.31.1.1.1.7.872|70|15833 +1.3.6.1.2.1.31.1.1.1.7.873|70|34033 +1.3.6.1.2.1.31.1.1.1.7.874|70|140382979 +1.3.6.1.2.1.31.1.1.1.7.875|70|8254187419 +1.3.6.1.2.1.31.1.1.1.7.876|70|2192480772 +1.3.6.1.2.1.31.1.1.1.7.877|70|1141679896 +1.3.6.1.2.1.31.1.1.1.7.878|70|2192512208 +1.3.6.1.2.1.31.1.1.1.7.879|70|1141695518 +1.3.6.1.2.1.31.1.1.1.7.880|70|8254188736 +1.3.6.1.2.1.31.1.1.1.7.881|70|140386631 +1.3.6.1.2.1.31.1.1.1.7.882|70|321588602 +1.3.6.1.2.1.31.1.1.1.7.883|70|321785931 +1.3.6.1.2.1.31.1.1.1.7.884|70|91418393 +1.3.6.1.2.1.31.1.1.1.7.885|70|91418449 +1.3.6.1.2.1.31.1.1.1.7.886|70|0 +1.3.6.1.2.1.31.1.1.1.7.887|70|0 +1.3.6.1.2.1.31.1.1.1.7.888|70|1747804253 +1.3.6.1.2.1.31.1.1.1.7.889|70|1698996062 +1.3.6.1.2.1.31.1.1.1.7.890|70|480719586 +1.3.6.1.2.1.31.1.1.1.7.891|70|7128394919 +1.3.6.1.2.1.31.1.1.1.7.892|70|84196 +1.3.6.1.2.1.31.1.1.1.7.893|70|1921 +1.3.6.1.2.1.31.1.1.1.7.894|70|1357 +1.3.6.1.2.1.31.1.1.1.7.895|70|181 +1.3.6.1.2.1.31.1.1.1.7.896|70|28084 +1.3.6.1.2.1.31.1.1.1.7.897|70|4 +1.3.6.1.2.1.31.1.1.1.7.898|70|2262 +1.3.6.1.2.1.31.1.1.1.7.899|70|124 +1.3.6.1.2.1.31.1.1.1.7.900|70|480885022 +1.3.6.1.2.1.31.1.1.1.7.901|70|2137568504 +1.3.6.1.2.1.31.1.1.1.7.902|70|1739 +1.3.6.1.2.1.31.1.1.1.7.903|70|3886 +1.3.6.1.2.1.31.1.1.1.7.904|70|6724 +1.3.6.1.2.1.31.1.1.1.7.905|70|0 +1.3.6.1.2.1.31.1.1.1.7.906|70|79 +1.3.6.1.2.1.31.1.1.1.7.907|70|480870169 +1.3.6.1.2.1.31.1.1.1.7.908|70|2137568363 +1.3.6.1.2.1.31.1.1.1.7.909|70|7129031819 +1.3.6.1.2.1.31.1.1.1.7.910|70|199970 +1.3.6.1.2.1.31.1.1.1.7.911|70|714069 +1.3.6.1.2.1.31.1.1.1.7.912|70|21808 +1.3.6.1.2.1.31.1.1.1.7.913|70|682 +1.3.6.1.2.1.31.1.1.1.7.914|70|0 +1.3.6.1.2.1.31.1.1.1.7.915|70|27368 +1.3.6.1.2.1.31.1.1.1.7.916|70|1129863551 +1.3.6.1.2.1.31.1.1.1.7.917|70|2629128620 +1.3.6.1.2.1.31.1.1.1.7.918|70|129484872 +1.3.6.1.2.1.31.1.1.1.7.919|70|2629128412 +1.3.6.1.2.1.31.1.1.1.7.920|70|129483760 +1.3.6.1.2.1.31.1.1.1.7.921|70|1129858199 +1.3.6.1.2.1.31.1.1.1.7.922|70|201791040 +1.3.6.1.2.1.31.1.1.1.7.923|70|508394719 +1.3.6.1.2.1.31.1.1.1.7.924|70|7644155 +1.3.6.1.2.1.31.1.1.1.7.925|70|508394833 +1.3.6.1.2.1.31.1.1.1.7.926|70|7644307 +1.3.6.1.2.1.31.1.1.1.7.927|70|201790871 +1.3.6.1.2.1.31.1.1.1.7.928|70|4 +1.3.6.1.2.1.31.1.1.1.7.929|70|0 +1.3.6.1.2.1.31.1.1.1.7.930|70|5 +1.3.6.1.2.1.31.1.1.1.7.931|70|2 +1.3.6.1.2.1.31.1.1.1.7.932|70|0 +1.3.6.1.2.1.31.1.1.1.7.933|70|0 +1.3.6.1.2.1.31.1.1.1.7.934|70|0 +1.3.6.1.2.1.31.1.1.1.7.935|70|0 +1.3.6.1.2.1.31.1.1.1.7.936|70|0 +1.3.6.1.2.1.31.1.1.1.7.937|70|0 +1.3.6.1.2.1.31.1.1.1.7.938|70|1128676 +1.3.6.1.2.1.31.1.1.1.7.939|70|296303842 +1.3.6.1.2.1.31.1.1.1.7.940|70|1194277 +1.3.6.1.2.1.31.1.1.1.7.941|70|610981763 +1.3.6.1.2.1.31.1.1.1.7.942|70|1129026 +1.3.6.1.2.1.31.1.1.1.7.943|70|296304421 +1.3.6.1.2.1.31.1.1.1.7.944|70|1194258 +1.3.6.1.2.1.31.1.1.1.7.945|70|610981497 +1.3.6.1.2.1.31.1.1.1.7.946|70|803 +1.3.6.1.2.1.31.1.1.1.7.947|70|822248 +1.3.6.1.2.1.31.1.1.1.7.948|70|961457 +1.3.6.1.2.1.31.1.1.1.7.949|70|97 +1.3.6.1.2.1.31.1.1.1.8.251|70|0 +1.3.6.1.2.1.31.1.1.1.8.252|70|0 +1.3.6.1.2.1.31.1.1.1.8.254|70|0 +1.3.6.1.2.1.31.1.1.1.8.255|70|0 +1.3.6.1.2.1.31.1.1.1.8.258|70|0 +1.3.6.1.2.1.31.1.1.1.8.259|70|0 +1.3.6.1.2.1.31.1.1.1.8.270|70|0 +1.3.6.1.2.1.31.1.1.1.8.273|70|0 +1.3.6.1.2.1.31.1.1.1.8.274|70|0 +1.3.6.1.2.1.31.1.1.1.8.277|70|0 +1.3.6.1.2.1.31.1.1.1.8.278|70|0 +1.3.6.1.2.1.31.1.1.1.8.280|70|0 +1.3.6.1.2.1.31.1.1.1.8.281|70|0 +1.3.6.1.2.1.31.1.1.1.8.282|70|0 +1.3.6.1.2.1.31.1.1.1.8.283|70|0 +1.3.6.1.2.1.31.1.1.1.8.284|70|0 +1.3.6.1.2.1.31.1.1.1.8.285|70|0 +1.3.6.1.2.1.31.1.1.1.8.286|70|0 +1.3.6.1.2.1.31.1.1.1.8.287|70|0 +1.3.6.1.2.1.31.1.1.1.8.288|70|0 +1.3.6.1.2.1.31.1.1.1.8.395|70|0 +1.3.6.1.2.1.31.1.1.1.8.396|70|0 +1.3.6.1.2.1.31.1.1.1.8.398|70|377533 +1.3.6.1.2.1.31.1.1.1.8.399|70|0 +1.3.6.1.2.1.31.1.1.1.8.415|70|0 +1.3.6.1.2.1.31.1.1.1.8.417|70|0 +1.3.6.1.2.1.31.1.1.1.8.418|70|222 +1.3.6.1.2.1.31.1.1.1.8.464|70|0 +1.3.6.1.2.1.31.1.1.1.8.465|70|0 +1.3.6.1.2.1.31.1.1.1.8.477|70|0 +1.3.6.1.2.1.31.1.1.1.8.487|70|1450238238 +1.3.6.1.2.1.31.1.1.1.8.494|70|0 +1.3.6.1.2.1.31.1.1.1.8.495|70|0 +1.3.6.1.2.1.31.1.1.1.8.496|70|0 +1.3.6.1.2.1.31.1.1.1.8.497|70|43259091 +1.3.6.1.2.1.31.1.1.1.8.506|70|0 +1.3.6.1.2.1.31.1.1.1.8.509|70|9571 +1.3.6.1.2.1.31.1.1.1.8.514|70|0 +1.3.6.1.2.1.31.1.1.1.8.515|70|0 +1.3.6.1.2.1.31.1.1.1.8.518|70|0 +1.3.6.1.2.1.31.1.1.1.8.519|70|0 +1.3.6.1.2.1.31.1.1.1.8.520|70|0 +1.3.6.1.2.1.31.1.1.1.8.535|70|0 +1.3.6.1.2.1.31.1.1.1.8.536|70|0 +1.3.6.1.2.1.31.1.1.1.8.538|70|9 +1.3.6.1.2.1.31.1.1.1.8.542|70|4044 +1.3.6.1.2.1.31.1.1.1.8.543|70|0 +1.3.6.1.2.1.31.1.1.1.8.544|70|0 +1.3.6.1.2.1.31.1.1.1.8.547|70|973690159 +1.3.6.1.2.1.31.1.1.1.8.548|70|0 +1.3.6.1.2.1.31.1.1.1.8.549|70|0 +1.3.6.1.2.1.31.1.1.1.8.550|70|476504028 +1.3.6.1.2.1.31.1.1.1.8.551|70|0 +1.3.6.1.2.1.31.1.1.1.8.552|70|0 +1.3.6.1.2.1.31.1.1.1.8.553|70|0 +1.3.6.1.2.1.31.1.1.1.8.554|70|0 +1.3.6.1.2.1.31.1.1.1.8.555|70|7965 +1.3.6.1.2.1.31.1.1.1.8.556|70|25430131 +1.3.6.1.2.1.31.1.1.1.8.557|70|121608815 +1.3.6.1.2.1.31.1.1.1.8.558|70|121638864 +1.3.6.1.2.1.31.1.1.1.8.559|70|120801674 +1.3.6.1.2.1.31.1.1.1.8.560|70|121589669 +1.3.6.1.2.1.31.1.1.1.8.561|70|236240 +1.3.6.1.2.1.31.1.1.1.8.562|70|0 +1.3.6.1.2.1.31.1.1.1.8.563|70|6403 +1.3.6.1.2.1.31.1.1.1.8.564|70|0 +1.3.6.1.2.1.31.1.1.1.8.565|70|302743 +1.3.6.1.2.1.31.1.1.1.8.566|70|366920 +1.3.6.1.2.1.31.1.1.1.8.567|70|319531 +1.3.6.1.2.1.31.1.1.1.8.568|70|21704 +1.3.6.1.2.1.31.1.1.1.8.569|70|0 +1.3.6.1.2.1.31.1.1.1.8.570|70|191335 +1.3.6.1.2.1.31.1.1.1.8.571|70|175440 +1.3.6.1.2.1.31.1.1.1.8.572|70|0 +1.3.6.1.2.1.31.1.1.1.8.573|70|0 +1.3.6.1.2.1.31.1.1.1.8.574|70|0 +1.3.6.1.2.1.31.1.1.1.8.575|70|0 +1.3.6.1.2.1.31.1.1.1.8.576|70|0 +1.3.6.1.2.1.31.1.1.1.8.577|70|12342535 +1.3.6.1.2.1.31.1.1.1.8.578|70|170683 +1.3.6.1.2.1.31.1.1.1.8.579|70|1269065 +1.3.6.1.2.1.31.1.1.1.8.580|70|1 +1.3.6.1.2.1.31.1.1.1.8.581|70|2 +1.3.6.1.2.1.31.1.1.1.8.582|70|1053122 +1.3.6.1.2.1.31.1.1.1.8.583|70|175429 +1.3.6.1.2.1.31.1.1.1.8.584|70|0 +1.3.6.1.2.1.31.1.1.1.8.585|70|464197 +1.3.6.1.2.1.31.1.1.1.8.586|70|175460 +1.3.6.1.2.1.31.1.1.1.8.587|70|175429 +1.3.6.1.2.1.31.1.1.1.8.588|70|0 +1.3.6.1.2.1.31.1.1.1.8.589|70|2 +1.3.6.1.2.1.31.1.1.1.8.590|70|1053139 +1.3.6.1.2.1.31.1.1.1.8.591|70|3 +1.3.6.1.2.1.31.1.1.1.8.592|70|0 +1.3.6.1.2.1.31.1.1.1.8.593|70|0 +1.3.6.1.2.1.31.1.1.1.8.594|70|0 +1.3.6.1.2.1.31.1.1.1.8.595|70|175453 +1.3.6.1.2.1.31.1.1.1.8.596|70|0 +1.3.6.1.2.1.31.1.1.1.8.597|70|0 +1.3.6.1.2.1.31.1.1.1.8.598|70|0 +1.3.6.1.2.1.31.1.1.1.8.599|70|0 +1.3.6.1.2.1.31.1.1.1.8.600|70|175473 +1.3.6.1.2.1.31.1.1.1.8.601|70|390021 +1.3.6.1.2.1.31.1.1.1.8.602|70|0 +1.3.6.1.2.1.31.1.1.1.8.603|70|175475 +1.3.6.1.2.1.31.1.1.1.8.604|70|221718 +1.3.6.1.2.1.31.1.1.1.8.605|70|0 +1.3.6.1.2.1.31.1.1.1.8.606|70|0 +1.3.6.1.2.1.31.1.1.1.8.607|70|0 +1.3.6.1.2.1.31.1.1.1.8.608|70|0 +1.3.6.1.2.1.31.1.1.1.8.609|70|0 +1.3.6.1.2.1.31.1.1.1.8.610|70|0 +1.3.6.1.2.1.31.1.1.1.8.611|70|0 +1.3.6.1.2.1.31.1.1.1.8.612|70|471801 +1.3.6.1.2.1.31.1.1.1.8.613|70|1 +1.3.6.1.2.1.31.1.1.1.8.614|70|2 +1.3.6.1.2.1.31.1.1.1.8.615|70|2460396 +1.3.6.1.2.1.31.1.1.1.8.616|70|123072 +1.3.6.1.2.1.31.1.1.1.8.617|70|450693 +1.3.6.1.2.1.31.1.1.1.8.618|70|175430 +1.3.6.1.2.1.31.1.1.1.8.619|70|0 +1.3.6.1.2.1.31.1.1.1.8.620|70|0 +1.3.6.1.2.1.31.1.1.1.8.621|70|0 +1.3.6.1.2.1.31.1.1.1.8.622|70|13041326 +1.3.6.1.2.1.31.1.1.1.8.623|70|0 +1.3.6.1.2.1.31.1.1.1.8.624|70|3 +1.3.6.1.2.1.31.1.1.1.8.625|70|0 +1.3.6.1.2.1.31.1.1.1.8.626|70|113875052 +1.3.6.1.2.1.31.1.1.1.8.627|70|175462 +1.3.6.1.2.1.31.1.1.1.8.628|70|0 +1.3.6.1.2.1.31.1.1.1.8.629|70|175479 +1.3.6.1.2.1.31.1.1.1.8.630|70|0 +1.3.6.1.2.1.31.1.1.1.8.631|70|0 +1.3.6.1.2.1.31.1.1.1.8.632|70|175469 +1.3.6.1.2.1.31.1.1.1.8.633|70|12198886 +1.3.6.1.2.1.31.1.1.1.8.634|70|4624426 +1.3.6.1.2.1.31.1.1.1.8.635|70|0 +1.3.6.1.2.1.31.1.1.1.8.636|70|7439 +1.3.6.1.2.1.31.1.1.1.8.637|70|0 +1.3.6.1.2.1.31.1.1.1.8.638|70|0 +1.3.6.1.2.1.31.1.1.1.8.639|70|0 +1.3.6.1.2.1.31.1.1.1.8.640|70|0 +1.3.6.1.2.1.31.1.1.1.8.641|70|0 +1.3.6.1.2.1.31.1.1.1.8.642|70|309147 +1.3.6.1.2.1.31.1.1.1.8.643|70|0 +1.3.6.1.2.1.31.1.1.1.8.644|70|0 +1.3.6.1.2.1.31.1.1.1.8.645|70|0 +1.3.6.1.2.1.31.1.1.1.8.646|70|0 +1.3.6.1.2.1.31.1.1.1.8.647|70|10579581 +1.3.6.1.2.1.31.1.1.1.8.648|70|0 +1.3.6.1.2.1.31.1.1.1.8.649|70|2 +1.3.6.1.2.1.31.1.1.1.8.650|70|0 +1.3.6.1.2.1.31.1.1.1.8.651|70|26440746 +1.3.6.1.2.1.31.1.1.1.8.652|70|0 +1.3.6.1.2.1.31.1.1.1.8.653|70|0 +1.3.6.1.2.1.31.1.1.1.8.654|70|0 +1.3.6.1.2.1.31.1.1.1.8.655|70|0 +1.3.6.1.2.1.31.1.1.1.8.656|70|972662 +1.3.6.1.2.1.31.1.1.1.8.657|70|0 +1.3.6.1.2.1.31.1.1.1.8.658|70|0 +1.3.6.1.2.1.31.1.1.1.8.659|70|175525 +1.3.6.1.2.1.31.1.1.1.8.660|70|0 +1.3.6.1.2.1.31.1.1.1.8.661|70|3144990 +1.3.6.1.2.1.31.1.1.1.8.662|70|248926 +1.3.6.1.2.1.31.1.1.1.8.663|70|121062054 +1.3.6.1.2.1.31.1.1.1.8.664|70|0 +1.3.6.1.2.1.31.1.1.1.8.665|70|2500686 +1.3.6.1.2.1.31.1.1.1.8.666|70|138120 +1.3.6.1.2.1.31.1.1.1.8.667|70|121211626 +1.3.6.1.2.1.31.1.1.1.8.668|70|0 +1.3.6.1.2.1.31.1.1.1.8.669|70|175516 +1.3.6.1.2.1.31.1.1.1.8.670|70|459601 +1.3.6.1.2.1.31.1.1.1.8.671|70|0 +1.3.6.1.2.1.31.1.1.1.8.672|70|0 +1.3.6.1.2.1.31.1.1.1.8.673|70|0 +1.3.6.1.2.1.31.1.1.1.8.674|70|0 +1.3.6.1.2.1.31.1.1.1.8.675|70|0 +1.3.6.1.2.1.31.1.1.1.8.676|70|0 +1.3.6.1.2.1.31.1.1.1.8.677|70|309111 +1.3.6.1.2.1.31.1.1.1.8.678|70|0 +1.3.6.1.2.1.31.1.1.1.8.679|70|0 +1.3.6.1.2.1.31.1.1.1.8.680|70|0 +1.3.6.1.2.1.31.1.1.1.8.681|70|0 +1.3.6.1.2.1.31.1.1.1.8.682|70|0 +1.3.6.1.2.1.31.1.1.1.8.683|70|0 +1.3.6.1.2.1.31.1.1.1.8.684|70|0 +1.3.6.1.2.1.31.1.1.1.8.685|70|133710 +1.3.6.1.2.1.31.1.1.1.8.686|70|175433 +1.3.6.1.2.1.31.1.1.1.8.687|70|175456 +1.3.6.1.2.1.31.1.1.1.8.688|70|175432 +1.3.6.1.2.1.31.1.1.1.8.689|70|175462 +1.3.6.1.2.1.31.1.1.1.8.690|70|175379 +1.3.6.1.2.1.31.1.1.1.8.691|70|175462 +1.3.6.1.2.1.31.1.1.1.8.692|70|0 +1.3.6.1.2.1.31.1.1.1.8.693|70|0 +1.3.6.1.2.1.31.1.1.1.8.694|70|0 +1.3.6.1.2.1.31.1.1.1.8.695|70|34444 +1.3.6.1.2.1.31.1.1.1.8.696|70|99263679 +1.3.6.1.2.1.31.1.1.1.8.697|70|7810545 +1.3.6.1.2.1.31.1.1.1.8.698|70|0 +1.3.6.1.2.1.31.1.1.1.8.699|70|0 +1.3.6.1.2.1.31.1.1.1.8.700|70|0 +1.3.6.1.2.1.31.1.1.1.8.701|70|0 +1.3.6.1.2.1.31.1.1.1.8.702|70|0 +1.3.6.1.2.1.31.1.1.1.8.703|70|0 +1.3.6.1.2.1.31.1.1.1.8.704|70|0 +1.3.6.1.2.1.31.1.1.1.8.705|70|0 +1.3.6.1.2.1.31.1.1.1.8.706|70|4026224 +1.3.6.1.2.1.31.1.1.1.8.707|70|175470 +1.3.6.1.2.1.31.1.1.1.8.708|70|0 +1.3.6.1.2.1.31.1.1.1.8.709|70|0 +1.3.6.1.2.1.31.1.1.1.8.710|70|0 +1.3.6.1.2.1.31.1.1.1.8.711|70|0 +1.3.6.1.2.1.31.1.1.1.8.712|70|6825738 +1.3.6.1.2.1.31.1.1.1.8.713|70|0 +1.3.6.1.2.1.31.1.1.1.8.714|70|1653796 +1.3.6.1.2.1.31.1.1.1.8.715|70|0 +1.3.6.1.2.1.31.1.1.1.8.716|70|0 +1.3.6.1.2.1.31.1.1.1.8.717|70|175461 +1.3.6.1.2.1.31.1.1.1.8.718|70|175479 +1.3.6.1.2.1.31.1.1.1.8.719|70|175482 +1.3.6.1.2.1.31.1.1.1.8.720|70|0 +1.3.6.1.2.1.31.1.1.1.8.721|70|175461 +1.3.6.1.2.1.31.1.1.1.8.722|70|0 +1.3.6.1.2.1.31.1.1.1.8.723|70|0 +1.3.6.1.2.1.31.1.1.1.8.724|70|221724 +1.3.6.1.2.1.31.1.1.1.8.725|70|175428 +1.3.6.1.2.1.31.1.1.1.8.726|70|0 +1.3.6.1.2.1.31.1.1.1.8.727|70|309223 +1.3.6.1.2.1.31.1.1.1.8.728|70|0 +1.3.6.1.2.1.31.1.1.1.8.729|70|138101 +1.3.6.1.2.1.31.1.1.1.8.730|70|248905 +1.3.6.1.2.1.31.1.1.1.8.731|70|510483 +1.3.6.1.2.1.31.1.1.1.8.732|70|546235 +1.3.6.1.2.1.31.1.1.1.8.733|70|1585848 +1.3.6.1.2.1.31.1.1.1.8.734|70|10845271 +1.3.6.1.2.1.31.1.1.1.8.735|70|425128 +1.3.6.1.2.1.31.1.1.1.8.736|70|390020 +1.3.6.1.2.1.31.1.1.1.8.737|70|2683293 +1.3.6.1.2.1.31.1.1.1.8.738|70|0 +1.3.6.1.2.1.31.1.1.1.8.739|70|21042329 +1.3.6.1.2.1.31.1.1.1.8.740|70|3191701 +1.3.6.1.2.1.31.1.1.1.8.741|70|0 +1.3.6.1.2.1.31.1.1.1.8.742|70|1448285 +1.3.6.1.2.1.31.1.1.1.8.743|70|0 +1.3.6.1.2.1.31.1.1.1.8.744|70|0 +1.3.6.1.2.1.31.1.1.1.8.745|70|175447 +1.3.6.1.2.1.31.1.1.1.8.746|70|0 +1.3.6.1.2.1.31.1.1.1.8.747|70|0 +1.3.6.1.2.1.31.1.1.1.8.748|70|21042329 +1.3.6.1.2.1.31.1.1.1.8.749|70|0 +1.3.6.1.2.1.31.1.1.1.8.750|70|13874859 +1.3.6.1.2.1.31.1.1.1.8.751|70|0 +1.3.6.1.2.1.31.1.1.1.8.769|70|12650 +1.3.6.1.2.1.31.1.1.1.8.770|70|0 +1.3.6.1.2.1.31.1.1.1.8.774|70|0 +1.3.6.1.2.1.31.1.1.1.8.775|70|153 +1.3.6.1.2.1.31.1.1.1.8.776|70|422 +1.3.6.1.2.1.31.1.1.1.8.785|70|0 +1.3.6.1.2.1.31.1.1.1.8.792|70|0 +1.3.6.1.2.1.31.1.1.1.8.793|70|0 +1.3.6.1.2.1.31.1.1.1.8.794|70|5099 +1.3.6.1.2.1.31.1.1.1.8.801|70|18 +1.3.6.1.2.1.31.1.1.1.8.802|70|0 +1.3.6.1.2.1.31.1.1.1.8.803|70|0 +1.3.6.1.2.1.31.1.1.1.8.804|70|0 +1.3.6.1.2.1.31.1.1.1.8.805|70|0 +1.3.6.1.2.1.31.1.1.1.8.806|70|0 +1.3.6.1.2.1.31.1.1.1.8.807|70|0 +1.3.6.1.2.1.31.1.1.1.8.810|70|0 +1.3.6.1.2.1.31.1.1.1.8.811|70|0 +1.3.6.1.2.1.31.1.1.1.8.814|70|0 +1.3.6.1.2.1.31.1.1.1.8.815|70|0 +1.3.6.1.2.1.31.1.1.1.8.818|70|0 +1.3.6.1.2.1.31.1.1.1.8.834|70|0 +1.3.6.1.2.1.31.1.1.1.8.835|70|0 +1.3.6.1.2.1.31.1.1.1.8.836|70|0 +1.3.6.1.2.1.31.1.1.1.8.838|70|0 +1.3.6.1.2.1.31.1.1.1.8.848|70|0 +1.3.6.1.2.1.31.1.1.1.8.849|70|0 +1.3.6.1.2.1.31.1.1.1.8.850|70|0 +1.3.6.1.2.1.31.1.1.1.8.854|70|0 +1.3.6.1.2.1.31.1.1.1.8.871|70|0 +1.3.6.1.2.1.31.1.1.1.8.872|70|0 +1.3.6.1.2.1.31.1.1.1.8.874|70|0 +1.3.6.1.2.1.31.1.1.1.8.875|70|1932 +1.3.6.1.2.1.31.1.1.1.8.876|70|0 +1.3.6.1.2.1.31.1.1.1.8.877|70|0 +1.3.6.1.2.1.31.1.1.1.8.883|70|457 +1.3.6.1.2.1.31.1.1.1.8.885|70|0 +1.3.6.1.2.1.31.1.1.1.8.907|70|0 +1.3.6.1.2.1.31.1.1.1.8.908|70|0 +1.3.6.1.2.1.31.1.1.1.8.909|70|0 +1.3.6.1.2.1.31.1.1.1.8.919|70|0 +1.3.6.1.2.1.31.1.1.1.8.920|70|0 +1.3.6.1.2.1.31.1.1.1.8.921|70|0 +1.3.6.1.2.1.31.1.1.1.8.925|70|0 +1.3.6.1.2.1.31.1.1.1.8.926|70|0 +1.3.6.1.2.1.31.1.1.1.8.927|70|0 +1.3.6.1.2.1.31.1.1.1.8.938|70|0 +1.3.6.1.2.1.31.1.1.1.8.939|70|0 +1.3.6.1.2.1.31.1.1.1.8.940|70|0 +1.3.6.1.2.1.31.1.1.1.8.941|70|104 +1.3.6.1.2.1.31.1.1.1.8.947|70|0 +1.3.6.1.2.1.31.1.1.1.8.948|70|0 +1.3.6.1.2.1.31.1.1.1.9.251|70|0 +1.3.6.1.2.1.31.1.1.1.9.252|70|24 +1.3.6.1.2.1.31.1.1.1.9.254|70|0 +1.3.6.1.2.1.31.1.1.1.9.255|70|0 +1.3.6.1.2.1.31.1.1.1.9.258|70|18421025 +1.3.6.1.2.1.31.1.1.1.9.259|70|0 +1.3.6.1.2.1.31.1.1.1.9.270|70|0 +1.3.6.1.2.1.31.1.1.1.9.273|70|0 +1.3.6.1.2.1.31.1.1.1.9.274|70|0 +1.3.6.1.2.1.31.1.1.1.9.277|70|0 +1.3.6.1.2.1.31.1.1.1.9.278|70|0 +1.3.6.1.2.1.31.1.1.1.9.280|70|0 +1.3.6.1.2.1.31.1.1.1.9.281|70|0 +1.3.6.1.2.1.31.1.1.1.9.282|70|0 +1.3.6.1.2.1.31.1.1.1.9.283|70|0 +1.3.6.1.2.1.31.1.1.1.9.284|70|0 +1.3.6.1.2.1.31.1.1.1.9.285|70|0 +1.3.6.1.2.1.31.1.1.1.9.286|70|0 +1.3.6.1.2.1.31.1.1.1.9.287|70|0 +1.3.6.1.2.1.31.1.1.1.9.288|70|0 +1.3.6.1.2.1.31.1.1.1.9.395|70|0 +1.3.6.1.2.1.31.1.1.1.9.396|70|0 +1.3.6.1.2.1.31.1.1.1.9.398|70|2097260972 +1.3.6.1.2.1.31.1.1.1.9.399|70|309861012 +1.3.6.1.2.1.31.1.1.1.9.415|70|0 +1.3.6.1.2.1.31.1.1.1.9.417|70|51749331 +1.3.6.1.2.1.31.1.1.1.9.418|70|317803436 +1.3.6.1.2.1.31.1.1.1.9.464|70|0 +1.3.6.1.2.1.31.1.1.1.9.465|70|0 +1.3.6.1.2.1.31.1.1.1.9.477|70|0 +1.3.6.1.2.1.31.1.1.1.9.487|70|3702144581 +1.3.6.1.2.1.31.1.1.1.9.494|70|0 +1.3.6.1.2.1.31.1.1.1.9.495|70|0 +1.3.6.1.2.1.31.1.1.1.9.496|70|0 +1.3.6.1.2.1.31.1.1.1.9.497|70|13175221 +1.3.6.1.2.1.31.1.1.1.9.506|70|13136373 +1.3.6.1.2.1.31.1.1.1.9.509|70|34800442 +1.3.6.1.2.1.31.1.1.1.9.514|70|0 +1.3.6.1.2.1.31.1.1.1.9.515|70|0 +1.3.6.1.2.1.31.1.1.1.9.518|70|0 +1.3.6.1.2.1.31.1.1.1.9.519|70|0 +1.3.6.1.2.1.31.1.1.1.9.520|70|0 +1.3.6.1.2.1.31.1.1.1.9.535|70|14257592 +1.3.6.1.2.1.31.1.1.1.9.536|70|11317485 +1.3.6.1.2.1.31.1.1.1.9.538|70|11207953 +1.3.6.1.2.1.31.1.1.1.9.542|70|87150338 +1.3.6.1.2.1.31.1.1.1.9.543|70|9354591 +1.3.6.1.2.1.31.1.1.1.9.544|70|13017807 +1.3.6.1.2.1.31.1.1.1.9.547|70|1649039791 +1.3.6.1.2.1.31.1.1.1.9.548|70|25966 +1.3.6.1.2.1.31.1.1.1.9.549|70|25966 +1.3.6.1.2.1.31.1.1.1.9.550|70|2052700454 +1.3.6.1.2.1.31.1.1.1.9.551|70|25966 +1.3.6.1.2.1.31.1.1.1.9.552|70|25966 +1.3.6.1.2.1.31.1.1.1.9.553|70|25966 +1.3.6.1.2.1.31.1.1.1.9.554|70|25966 +1.3.6.1.2.1.31.1.1.1.9.555|70|29519 +1.3.6.1.2.1.31.1.1.1.9.556|70|30206426 +1.3.6.1.2.1.31.1.1.1.9.557|70|0 +1.3.6.1.2.1.31.1.1.1.9.558|70|0 +1.3.6.1.2.1.31.1.1.1.9.559|70|1862 +1.3.6.1.2.1.31.1.1.1.9.560|70|43 +1.3.6.1.2.1.31.1.1.1.9.561|70|5850 +1.3.6.1.2.1.31.1.1.1.9.562|70|26355 +1.3.6.1.2.1.31.1.1.1.9.563|70|442014 +1.3.6.1.2.1.31.1.1.1.9.564|70|0 +1.3.6.1.2.1.31.1.1.1.9.565|70|62 +1.3.6.1.2.1.31.1.1.1.9.566|70|1404282 +1.3.6.1.2.1.31.1.1.1.9.567|70|3201363 +1.3.6.1.2.1.31.1.1.1.9.568|70|1404387 +1.3.6.1.2.1.31.1.1.1.9.569|70|0 +1.3.6.1.2.1.31.1.1.1.9.570|70|4739704 +1.3.6.1.2.1.31.1.1.1.9.571|70|40246 +1.3.6.1.2.1.31.1.1.1.9.572|70|0 +1.3.6.1.2.1.31.1.1.1.9.573|70|26355 +1.3.6.1.2.1.31.1.1.1.9.574|70|0 +1.3.6.1.2.1.31.1.1.1.9.575|70|3100 +1.3.6.1.2.1.31.1.1.1.9.576|70|0 +1.3.6.1.2.1.31.1.1.1.9.577|70|5 +1.3.6.1.2.1.31.1.1.1.9.578|70|2 +1.3.6.1.2.1.31.1.1.1.9.579|70|693557 +1.3.6.1.2.1.31.1.1.1.9.580|70|67 +1.3.6.1.2.1.31.1.1.1.9.581|70|42559 +1.3.6.1.2.1.31.1.1.1.9.582|70|12 +1.3.6.1.2.1.31.1.1.1.9.583|70|40243 +1.3.6.1.2.1.31.1.1.1.9.584|70|0 +1.3.6.1.2.1.31.1.1.1.9.585|70|25 +1.3.6.1.2.1.31.1.1.1.9.586|70|40245 +1.3.6.1.2.1.31.1.1.1.9.587|70|40247 +1.3.6.1.2.1.31.1.1.1.9.588|70|0 +1.3.6.1.2.1.31.1.1.1.9.589|70|992 +1.3.6.1.2.1.31.1.1.1.9.590|70|8 +1.3.6.1.2.1.31.1.1.1.9.591|70|9 +1.3.6.1.2.1.31.1.1.1.9.592|70|0 +1.3.6.1.2.1.31.1.1.1.9.593|70|0 +1.3.6.1.2.1.31.1.1.1.9.594|70|0 +1.3.6.1.2.1.31.1.1.1.9.595|70|40238 +1.3.6.1.2.1.31.1.1.1.9.596|70|0 +1.3.6.1.2.1.31.1.1.1.9.597|70|0 +1.3.6.1.2.1.31.1.1.1.9.598|70|0 +1.3.6.1.2.1.31.1.1.1.9.599|70|0 +1.3.6.1.2.1.31.1.1.1.9.600|70|40238 +1.3.6.1.2.1.31.1.1.1.9.601|70|4 +1.3.6.1.2.1.31.1.1.1.9.602|70|26355 +1.3.6.1.2.1.31.1.1.1.9.603|70|40237 +1.3.6.1.2.1.31.1.1.1.9.604|70|224332 +1.3.6.1.2.1.31.1.1.1.9.605|70|0 +1.3.6.1.2.1.31.1.1.1.9.606|70|0 +1.3.6.1.2.1.31.1.1.1.9.607|70|0 +1.3.6.1.2.1.31.1.1.1.9.608|70|0 +1.3.6.1.2.1.31.1.1.1.9.609|70|0 +1.3.6.1.2.1.31.1.1.1.9.610|70|90 +1.3.6.1.2.1.31.1.1.1.9.611|70|0 +1.3.6.1.2.1.31.1.1.1.9.612|70|45 +1.3.6.1.2.1.31.1.1.1.9.613|70|30 +1.3.6.1.2.1.31.1.1.1.9.614|70|6051 +1.3.6.1.2.1.31.1.1.1.9.615|70|6 +1.3.6.1.2.1.31.1.1.1.9.616|70|3222 +1.3.6.1.2.1.31.1.1.1.9.617|70|0 +1.3.6.1.2.1.31.1.1.1.9.618|70|40242 +1.3.6.1.2.1.31.1.1.1.9.619|70|0 +1.3.6.1.2.1.31.1.1.1.9.620|70|74420 +1.3.6.1.2.1.31.1.1.1.9.621|70|0 +1.3.6.1.2.1.31.1.1.1.9.622|70|14775951 +1.3.6.1.2.1.31.1.1.1.9.623|70|0 +1.3.6.1.2.1.31.1.1.1.9.624|70|301 +1.3.6.1.2.1.31.1.1.1.9.625|70|0 +1.3.6.1.2.1.31.1.1.1.9.626|70|54 +1.3.6.1.2.1.31.1.1.1.9.627|70|40231 +1.3.6.1.2.1.31.1.1.1.9.628|70|0 +1.3.6.1.2.1.31.1.1.1.9.629|70|40234 +1.3.6.1.2.1.31.1.1.1.9.630|70|0 +1.3.6.1.2.1.31.1.1.1.9.631|70|0 +1.3.6.1.2.1.31.1.1.1.9.632|70|40242 +1.3.6.1.2.1.31.1.1.1.9.633|70|3925311 +1.3.6.1.2.1.31.1.1.1.9.634|70|3863934 +1.3.6.1.2.1.31.1.1.1.9.635|70|0 +1.3.6.1.2.1.31.1.1.1.9.636|70|481 +1.3.6.1.2.1.31.1.1.1.9.637|70|0 +1.3.6.1.2.1.31.1.1.1.9.638|70|0 +1.3.6.1.2.1.31.1.1.1.9.639|70|0 +1.3.6.1.2.1.31.1.1.1.9.640|70|0 +1.3.6.1.2.1.31.1.1.1.9.641|70|0 +1.3.6.1.2.1.31.1.1.1.9.642|70|917 +1.3.6.1.2.1.31.1.1.1.9.643|70|0 +1.3.6.1.2.1.31.1.1.1.9.644|70|70660 +1.3.6.1.2.1.31.1.1.1.9.645|70|0 +1.3.6.1.2.1.31.1.1.1.9.646|70|0 +1.3.6.1.2.1.31.1.1.1.9.647|70|13220 +1.3.6.1.2.1.31.1.1.1.9.648|70|0 +1.3.6.1.2.1.31.1.1.1.9.649|70|237 +1.3.6.1.2.1.31.1.1.1.9.650|70|26617 +1.3.6.1.2.1.31.1.1.1.9.651|70|5389320 +1.3.6.1.2.1.31.1.1.1.9.652|70|0 +1.3.6.1.2.1.31.1.1.1.9.653|70|0 +1.3.6.1.2.1.31.1.1.1.9.654|70|26269 +1.3.6.1.2.1.31.1.1.1.9.655|70|26367 +1.3.6.1.2.1.31.1.1.1.9.656|70|15937645 +1.3.6.1.2.1.31.1.1.1.9.657|70|0 +1.3.6.1.2.1.31.1.1.1.9.658|70|0 +1.3.6.1.2.1.31.1.1.1.9.659|70|40250 +1.3.6.1.2.1.31.1.1.1.9.660|70|0 +1.3.6.1.2.1.31.1.1.1.9.661|70|67647999 +1.3.6.1.2.1.31.1.1.1.9.662|70|399042 +1.3.6.1.2.1.31.1.1.1.9.663|70|0 +1.3.6.1.2.1.31.1.1.1.9.664|70|240715 +1.3.6.1.2.1.31.1.1.1.9.665|70|7507111 +1.3.6.1.2.1.31.1.1.1.9.666|70|2 +1.3.6.1.2.1.31.1.1.1.9.667|70|0 +1.3.6.1.2.1.31.1.1.1.9.668|70|0 +1.3.6.1.2.1.31.1.1.1.9.669|70|40246 +1.3.6.1.2.1.31.1.1.1.9.670|70|0 +1.3.6.1.2.1.31.1.1.1.9.671|70|0 +1.3.6.1.2.1.31.1.1.1.9.672|70|0 +1.3.6.1.2.1.31.1.1.1.9.673|70|0 +1.3.6.1.2.1.31.1.1.1.9.674|70|95 +1.3.6.1.2.1.31.1.1.1.9.675|70|0 +1.3.6.1.2.1.31.1.1.1.9.676|70|26479 +1.3.6.1.2.1.31.1.1.1.9.677|70|801 +1.3.6.1.2.1.31.1.1.1.9.678|70|0 +1.3.6.1.2.1.31.1.1.1.9.679|70|3621122 +1.3.6.1.2.1.31.1.1.1.9.680|70|0 +1.3.6.1.2.1.31.1.1.1.9.681|70|0 +1.3.6.1.2.1.31.1.1.1.9.682|70|26479 +1.3.6.1.2.1.31.1.1.1.9.683|70|0 +1.3.6.1.2.1.31.1.1.1.9.684|70|0 +1.3.6.1.2.1.31.1.1.1.9.685|70|867 +1.3.6.1.2.1.31.1.1.1.9.686|70|40241 +1.3.6.1.2.1.31.1.1.1.9.687|70|40241 +1.3.6.1.2.1.31.1.1.1.9.688|70|40244 +1.3.6.1.2.1.31.1.1.1.9.689|70|40240 +1.3.6.1.2.1.31.1.1.1.9.690|70|40161 +1.3.6.1.2.1.31.1.1.1.9.691|70|40245 +1.3.6.1.2.1.31.1.1.1.9.692|70|0 +1.3.6.1.2.1.31.1.1.1.9.693|70|0 +1.3.6.1.2.1.31.1.1.1.9.694|70|0 +1.3.6.1.2.1.31.1.1.1.9.695|70|26717 +1.3.6.1.2.1.31.1.1.1.9.696|70|109409 +1.3.6.1.2.1.31.1.1.1.9.697|70|1270224 +1.3.6.1.2.1.31.1.1.1.9.698|70|0 +1.3.6.1.2.1.31.1.1.1.9.699|70|0 +1.3.6.1.2.1.31.1.1.1.9.700|70|0 +1.3.6.1.2.1.31.1.1.1.9.701|70|0 +1.3.6.1.2.1.31.1.1.1.9.702|70|0 +1.3.6.1.2.1.31.1.1.1.9.703|70|26479 +1.3.6.1.2.1.31.1.1.1.9.704|70|0 +1.3.6.1.2.1.31.1.1.1.9.705|70|17855 +1.3.6.1.2.1.31.1.1.1.9.706|70|12267441 +1.3.6.1.2.1.31.1.1.1.9.707|70|40251 +1.3.6.1.2.1.31.1.1.1.9.708|70|0 +1.3.6.1.2.1.31.1.1.1.9.709|70|0 +1.3.6.1.2.1.31.1.1.1.9.710|70|0 +1.3.6.1.2.1.31.1.1.1.9.711|70|0 +1.3.6.1.2.1.31.1.1.1.9.712|70|37248309 +1.3.6.1.2.1.31.1.1.1.9.713|70|0 +1.3.6.1.2.1.31.1.1.1.9.714|70|3506004 +1.3.6.1.2.1.31.1.1.1.9.715|70|26360 +1.3.6.1.2.1.31.1.1.1.9.716|70|0 +1.3.6.1.2.1.31.1.1.1.9.717|70|40236 +1.3.6.1.2.1.31.1.1.1.9.718|70|40236 +1.3.6.1.2.1.31.1.1.1.9.719|70|40236 +1.3.6.1.2.1.31.1.1.1.9.720|70|0 +1.3.6.1.2.1.31.1.1.1.9.721|70|40261 +1.3.6.1.2.1.31.1.1.1.9.722|70|0 +1.3.6.1.2.1.31.1.1.1.9.723|70|0 +1.3.6.1.2.1.31.1.1.1.9.724|70|143986 +1.3.6.1.2.1.31.1.1.1.9.725|70|40225 +1.3.6.1.2.1.31.1.1.1.9.726|70|26360 +1.3.6.1.2.1.31.1.1.1.9.727|70|825 +1.3.6.1.2.1.31.1.1.1.9.728|70|0 +1.3.6.1.2.1.31.1.1.1.9.729|70|0 +1.3.6.1.2.1.31.1.1.1.9.730|70|521696 +1.3.6.1.2.1.31.1.1.1.9.731|70|2623519 +1.3.6.1.2.1.31.1.1.1.9.732|70|23481 +1.3.6.1.2.1.31.1.1.1.9.733|70|67 +1.3.6.1.2.1.31.1.1.1.9.734|70|135605 +1.3.6.1.2.1.31.1.1.1.9.735|70|9 +1.3.6.1.2.1.31.1.1.1.9.736|70|28 +1.3.6.1.2.1.31.1.1.1.9.737|70|26 +1.3.6.1.2.1.31.1.1.1.9.738|70|26360 +1.3.6.1.2.1.31.1.1.1.9.739|70|141 +1.3.6.1.2.1.31.1.1.1.9.740|70|539329 +1.3.6.1.2.1.31.1.1.1.9.741|70|0 +1.3.6.1.2.1.31.1.1.1.9.742|70|414043 +1.3.6.1.2.1.31.1.1.1.9.743|70|0 +1.3.6.1.2.1.31.1.1.1.9.744|70|0 +1.3.6.1.2.1.31.1.1.1.9.745|70|40231 +1.3.6.1.2.1.31.1.1.1.9.746|70|0 +1.3.6.1.2.1.31.1.1.1.9.747|70|26360 +1.3.6.1.2.1.31.1.1.1.9.748|70|5740 +1.3.6.1.2.1.31.1.1.1.9.749|70|13 +1.3.6.1.2.1.31.1.1.1.9.750|70|62 +1.3.6.1.2.1.31.1.1.1.9.751|70|70129 +1.3.6.1.2.1.31.1.1.1.9.769|70|48614766 +1.3.6.1.2.1.31.1.1.1.9.770|70|10801819 +1.3.6.1.2.1.31.1.1.1.9.774|70|10766522 +1.3.6.1.2.1.31.1.1.1.9.775|70|9947724 +1.3.6.1.2.1.31.1.1.1.9.776|70|9200242 +1.3.6.1.2.1.31.1.1.1.9.785|70|8550278 +1.3.6.1.2.1.31.1.1.1.9.792|70|10822441 +1.3.6.1.2.1.31.1.1.1.9.793|70|10899968 +1.3.6.1.2.1.31.1.1.1.9.794|70|11003854 +1.3.6.1.2.1.31.1.1.1.9.801|70|10258059 +1.3.6.1.2.1.31.1.1.1.9.802|70|9227598 +1.3.6.1.2.1.31.1.1.1.9.803|70|13158784 +1.3.6.1.2.1.31.1.1.1.9.804|70|29389170 +1.3.6.1.2.1.31.1.1.1.9.805|70|14416711 +1.3.6.1.2.1.31.1.1.1.9.806|70|23350589 +1.3.6.1.2.1.31.1.1.1.9.807|70|10766485 +1.3.6.1.2.1.31.1.1.1.9.810|70|8605419 +1.3.6.1.2.1.31.1.1.1.9.811|70|8550460 +1.3.6.1.2.1.31.1.1.1.9.814|70|8663549 +1.3.6.1.2.1.31.1.1.1.9.815|70|29396534 +1.3.6.1.2.1.31.1.1.1.9.818|70|8550250 +1.3.6.1.2.1.31.1.1.1.9.834|70|13016510 +1.3.6.1.2.1.31.1.1.1.9.835|70|11364198 +1.3.6.1.2.1.31.1.1.1.9.836|70|9407042 +1.3.6.1.2.1.31.1.1.1.9.838|70|31842357 +1.3.6.1.2.1.31.1.1.1.9.848|70|12215030 +1.3.6.1.2.1.31.1.1.1.9.849|70|13006873 +1.3.6.1.2.1.31.1.1.1.9.850|70|8550496 +1.3.6.1.2.1.31.1.1.1.9.854|70|2293179 +1.3.6.1.2.1.31.1.1.1.9.871|70|13005564 +1.3.6.1.2.1.31.1.1.1.9.872|70|10788818 +1.3.6.1.2.1.31.1.1.1.9.874|70|11062080 +1.3.6.1.2.1.31.1.1.1.9.875|70|13603307 +1.3.6.1.2.1.31.1.1.1.9.876|70|10766967 +1.3.6.1.2.1.31.1.1.1.9.877|70|31789108 +1.3.6.1.2.1.31.1.1.1.9.883|70|12360509 +1.3.6.1.2.1.31.1.1.1.9.885|70|10791096 +1.3.6.1.2.1.31.1.1.1.9.907|70|28101750 +1.3.6.1.2.1.31.1.1.1.9.908|70|7538440 +1.3.6.1.2.1.31.1.1.1.9.909|70|7613680 +1.3.6.1.2.1.31.1.1.1.9.919|70|4192352 +1.3.6.1.2.1.31.1.1.1.9.920|70|4044167 +1.3.6.1.2.1.31.1.1.1.9.921|70|4693789 +1.3.6.1.2.1.31.1.1.1.9.925|70|2964199 +1.3.6.1.2.1.31.1.1.1.9.926|70|2838309 +1.3.6.1.2.1.31.1.1.1.9.927|70|3411112 +1.3.6.1.2.1.31.1.1.1.9.938|70|1465000 +1.3.6.1.2.1.31.1.1.1.9.939|70|1464162 +1.3.6.1.2.1.31.1.1.1.9.940|70|1466119 +1.3.6.1.2.1.31.1.1.1.9.941|70|1720742 +1.3.6.1.2.1.31.1.1.1.9.947|70|915391 +1.3.6.1.2.1.31.1.1.1.9.948|70|913462 +1.3.6.1.2.1.31.1.1.1.10.251|70|0 +1.3.6.1.2.1.31.1.1.1.10.252|70|1101421752362 +1.3.6.1.2.1.31.1.1.1.10.254|70|0 +1.3.6.1.2.1.31.1.1.1.10.255|70|0 +1.3.6.1.2.1.31.1.1.1.10.258|70|224198519757 +1.3.6.1.2.1.31.1.1.1.10.259|70|0 +1.3.6.1.2.1.31.1.1.1.10.260|70|103308466 +1.3.6.1.2.1.31.1.1.1.10.261|70|0 +1.3.6.1.2.1.31.1.1.1.10.262|70|0 +1.3.6.1.2.1.31.1.1.1.10.263|70|0 +1.3.6.1.2.1.31.1.1.1.10.264|70|0 +1.3.6.1.2.1.31.1.1.1.10.265|70|75336021719 +1.3.6.1.2.1.31.1.1.1.10.266|70|2462621658788633 +1.3.6.1.2.1.31.1.1.1.10.267|70|4624595736 +1.3.6.1.2.1.31.1.1.1.10.268|70|91492061244422 +1.3.6.1.2.1.31.1.1.1.10.269|70|4378338157537 +1.3.6.1.2.1.31.1.1.1.10.270|70|0 +1.3.6.1.2.1.31.1.1.1.10.273|70|0 +1.3.6.1.2.1.31.1.1.1.10.274|70|0 +1.3.6.1.2.1.31.1.1.1.10.275|70|1195055407 +1.3.6.1.2.1.31.1.1.1.10.276|70|405042612 +1.3.6.1.2.1.31.1.1.1.10.277|70|0 +1.3.6.1.2.1.31.1.1.1.10.278|70|0 +1.3.6.1.2.1.31.1.1.1.10.280|70|0 +1.3.6.1.2.1.31.1.1.1.10.281|70|0 +1.3.6.1.2.1.31.1.1.1.10.282|70|0 +1.3.6.1.2.1.31.1.1.1.10.283|70|0 +1.3.6.1.2.1.31.1.1.1.10.284|70|0 +1.3.6.1.2.1.31.1.1.1.10.285|70|0 +1.3.6.1.2.1.31.1.1.1.10.286|70|0 +1.3.6.1.2.1.31.1.1.1.10.287|70|0 +1.3.6.1.2.1.31.1.1.1.10.288|70|0 +1.3.6.1.2.1.31.1.1.1.10.291|70|501436092 +1.3.6.1.2.1.31.1.1.1.10.292|70|6731362789 +1.3.6.1.2.1.31.1.1.1.10.293|70|105752447 +1.3.6.1.2.1.31.1.1.1.10.294|70|0 +1.3.6.1.2.1.31.1.1.1.10.295|70|674506345745 +1.3.6.1.2.1.31.1.1.1.10.395|70|0 +1.3.6.1.2.1.31.1.1.1.10.396|70|0 +1.3.6.1.2.1.31.1.1.1.10.398|70|64235479732844 +1.3.6.1.2.1.31.1.1.1.10.399|70|14932372841 +1.3.6.1.2.1.31.1.1.1.10.414|70|0 +1.3.6.1.2.1.31.1.1.1.10.415|70|0 +1.3.6.1.2.1.31.1.1.1.10.417|70|482113264 +1.3.6.1.2.1.31.1.1.1.10.418|70|90883468223551 +1.3.6.1.2.1.31.1.1.1.10.438|70|4468902441 +1.3.6.1.2.1.31.1.1.1.10.439|70|372090262 +1.3.6.1.2.1.31.1.1.1.10.440|70|441623391 +1.3.6.1.2.1.31.1.1.1.10.441|70|229429718 +1.3.6.1.2.1.31.1.1.1.10.442|70|335347279 +1.3.6.1.2.1.31.1.1.1.10.443|70|1138577736 +1.3.6.1.2.1.31.1.1.1.10.444|70|1042853382 +1.3.6.1.2.1.31.1.1.1.10.445|70|145882998 +1.3.6.1.2.1.31.1.1.1.10.446|70|6900 +1.3.6.1.2.1.31.1.1.1.10.447|70|408342082 +1.3.6.1.2.1.31.1.1.1.10.448|70|125806 +1.3.6.1.2.1.31.1.1.1.10.449|70|188969342 +1.3.6.1.2.1.31.1.1.1.10.450|70|204392185 +1.3.6.1.2.1.31.1.1.1.10.451|70|155159450 +1.3.6.1.2.1.31.1.1.1.10.452|70|271008195 +1.3.6.1.2.1.31.1.1.1.10.453|70|265741402 +1.3.6.1.2.1.31.1.1.1.10.454|70|6900 +1.3.6.1.2.1.31.1.1.1.10.455|70|24898181 +1.3.6.1.2.1.31.1.1.1.10.456|70|93975947 +1.3.6.1.2.1.31.1.1.1.10.457|70|178772986 +1.3.6.1.2.1.31.1.1.1.10.462|70|19751842 +1.3.6.1.2.1.31.1.1.1.10.464|70|0 +1.3.6.1.2.1.31.1.1.1.10.465|70|0 +1.3.6.1.2.1.31.1.1.1.10.467|70|0 +1.3.6.1.2.1.31.1.1.1.10.468|70|280788 +1.3.6.1.2.1.31.1.1.1.10.474|70|526544454027 +1.3.6.1.2.1.31.1.1.1.10.475|70|7175164163 +1.3.6.1.2.1.31.1.1.1.10.476|70|921521047 +1.3.6.1.2.1.31.1.1.1.10.477|70|0 +1.3.6.1.2.1.31.1.1.1.10.478|70|91913360486 +1.3.6.1.2.1.31.1.1.1.10.487|70|924050921601443 +1.3.6.1.2.1.31.1.1.1.10.489|70|12014094 +1.3.6.1.2.1.31.1.1.1.10.490|70|0 +1.3.6.1.2.1.31.1.1.1.10.493|70|325739471258 +1.3.6.1.2.1.31.1.1.1.10.494|70|0 +1.3.6.1.2.1.31.1.1.1.10.495|70|0 +1.3.6.1.2.1.31.1.1.1.10.496|70|0 +1.3.6.1.2.1.31.1.1.1.10.497|70|2337386189209864 +1.3.6.1.2.1.31.1.1.1.10.502|70|206754379835877 +1.3.6.1.2.1.31.1.1.1.10.503|70|0 +1.3.6.1.2.1.31.1.1.1.10.504|70|18076350957558 +1.3.6.1.2.1.31.1.1.1.10.505|70|9907584 +1.3.6.1.2.1.31.1.1.1.10.506|70|206139459366960 +1.3.6.1.2.1.31.1.1.1.10.509|70|17811176335606 +1.3.6.1.2.1.31.1.1.1.10.510|70|0 +1.3.6.1.2.1.31.1.1.1.10.511|70|0 +1.3.6.1.2.1.31.1.1.1.10.513|70|801680362 +1.3.6.1.2.1.31.1.1.1.10.514|70|0 +1.3.6.1.2.1.31.1.1.1.10.515|70|0 +1.3.6.1.2.1.31.1.1.1.10.516|70|21678714028650 +1.3.6.1.2.1.31.1.1.1.10.517|70|190360513672 +1.3.6.1.2.1.31.1.1.1.10.518|70|0 +1.3.6.1.2.1.31.1.1.1.10.519|70|0 +1.3.6.1.2.1.31.1.1.1.10.520|70|0 +1.3.6.1.2.1.31.1.1.1.10.523|70|1063791917 +1.3.6.1.2.1.31.1.1.1.10.524|70|6381968732 +1.3.6.1.2.1.31.1.1.1.10.525|70|19230163563050 +1.3.6.1.2.1.31.1.1.1.10.526|70|8031497455470 +1.3.6.1.2.1.31.1.1.1.10.527|70|0 +1.3.6.1.2.1.31.1.1.1.10.528|70|2842909793297 +1.3.6.1.2.1.31.1.1.1.10.529|70|543250694 +1.3.6.1.2.1.31.1.1.1.10.530|70|4870117668 +1.3.6.1.2.1.31.1.1.1.10.531|70|337188230311 +1.3.6.1.2.1.31.1.1.1.10.532|70|683431301100 +1.3.6.1.2.1.31.1.1.1.10.533|70|6501696 +1.3.6.1.2.1.31.1.1.1.10.534|70|271957962 +1.3.6.1.2.1.31.1.1.1.10.535|70|19167870103881 +1.3.6.1.2.1.31.1.1.1.10.536|70|7993159477697 +1.3.6.1.2.1.31.1.1.1.10.538|70|2814512323404 +1.3.6.1.2.1.31.1.1.1.10.540|70|38517704519781 +1.3.6.1.2.1.31.1.1.1.10.541|70|11752508377 +1.3.6.1.2.1.31.1.1.1.10.542|70|733276922967 +1.3.6.1.2.1.31.1.1.1.10.543|70|329591974540 +1.3.6.1.2.1.31.1.1.1.10.544|70|22647904554259 +1.3.6.1.2.1.31.1.1.1.10.545|70|22714726885483 +1.3.6.1.2.1.31.1.1.1.10.546|70|111159812 +1.3.6.1.2.1.31.1.1.1.10.547|70|473339050594862 +1.3.6.1.2.1.31.1.1.1.10.548|70|2181144 +1.3.6.1.2.1.31.1.1.1.10.549|70|2181144 +1.3.6.1.2.1.31.1.1.1.10.550|70|450626094140964 +1.3.6.1.2.1.31.1.1.1.10.551|70|2181144 +1.3.6.1.2.1.31.1.1.1.10.552|70|2181144 +1.3.6.1.2.1.31.1.1.1.10.553|70|2181144 +1.3.6.1.2.1.31.1.1.1.10.554|70|2181144 +1.3.6.1.2.1.31.1.1.1.10.555|70|128003191198 +1.3.6.1.2.1.31.1.1.1.10.556|70|764081589731 +1.3.6.1.2.1.31.1.1.1.10.557|70|948151002427 +1.3.6.1.2.1.31.1.1.1.10.558|70|948128502289 +1.3.6.1.2.1.31.1.1.1.10.559|70|946052938068 +1.3.6.1.2.1.31.1.1.1.10.560|70|945155960959 +1.3.6.1.2.1.31.1.1.1.10.561|70|147221766555 +1.3.6.1.2.1.31.1.1.1.10.562|70|2213820 +1.3.6.1.2.1.31.1.1.1.10.563|70|158580580349 +1.3.6.1.2.1.31.1.1.1.10.564|70|0 +1.3.6.1.2.1.31.1.1.1.10.565|70|1000953528107 +1.3.6.1.2.1.31.1.1.1.10.566|70|1283665196168 +1.3.6.1.2.1.31.1.1.1.10.567|70|2846258559278 +1.3.6.1.2.1.31.1.1.1.10.568|70|1283819240495 +1.3.6.1.2.1.31.1.1.1.10.569|70|0 +1.3.6.1.2.1.31.1.1.1.10.570|70|4282366296453 +1.3.6.1.2.1.31.1.1.1.10.571|70|949744646421 +1.3.6.1.2.1.31.1.1.1.10.572|70|0 +1.3.6.1.2.1.31.1.1.1.10.573|70|2213820 +1.3.6.1.2.1.31.1.1.1.10.574|70|0 +1.3.6.1.2.1.31.1.1.1.10.575|70|123461707811 +1.3.6.1.2.1.31.1.1.1.10.576|70|0 +1.3.6.1.2.1.31.1.1.1.10.577|70|31647879963976 +1.3.6.1.2.1.31.1.1.1.10.578|70|2087776098020 +1.3.6.1.2.1.31.1.1.1.10.579|70|9707799554 +1.3.6.1.2.1.31.1.1.1.10.580|70|132019015863 +1.3.6.1.2.1.31.1.1.1.10.581|70|132066040709 +1.3.6.1.2.1.31.1.1.1.10.582|70|55232878036 +1.3.6.1.2.1.31.1.1.1.10.583|70|949680483169 +1.3.6.1.2.1.31.1.1.1.10.584|70|146669704196 +1.3.6.1.2.1.31.1.1.1.10.585|70|147646989319 +1.3.6.1.2.1.31.1.1.1.10.586|70|949820622259 +1.3.6.1.2.1.31.1.1.1.10.587|70|949683754267 +1.3.6.1.2.1.31.1.1.1.10.588|70|287287766871 +1.3.6.1.2.1.31.1.1.1.10.589|70|1435101536704 +1.3.6.1.2.1.31.1.1.1.10.590|70|52843051948 +1.3.6.1.2.1.31.1.1.1.10.591|70|3466480789 +1.3.6.1.2.1.31.1.1.1.10.592|70|0 +1.3.6.1.2.1.31.1.1.1.10.593|70|0 +1.3.6.1.2.1.31.1.1.1.10.594|70|0 +1.3.6.1.2.1.31.1.1.1.10.595|70|949382176852 +1.3.6.1.2.1.31.1.1.1.10.596|70|0 +1.3.6.1.2.1.31.1.1.1.10.597|70|0 +1.3.6.1.2.1.31.1.1.1.10.598|70|0 +1.3.6.1.2.1.31.1.1.1.10.599|70|0 +1.3.6.1.2.1.31.1.1.1.10.600|70|949820234430 +1.3.6.1.2.1.31.1.1.1.10.601|70|1085082221486 +1.3.6.1.2.1.31.1.1.1.10.602|70|2213820 +1.3.6.1.2.1.31.1.1.1.10.603|70|949708326163 +1.3.6.1.2.1.31.1.1.1.10.604|70|3612374715981 +1.3.6.1.2.1.31.1.1.1.10.605|70|0 +1.3.6.1.2.1.31.1.1.1.10.606|70|0 +1.3.6.1.2.1.31.1.1.1.10.607|70|0 +1.3.6.1.2.1.31.1.1.1.10.608|70|0 +1.3.6.1.2.1.31.1.1.1.10.609|70|0 +1.3.6.1.2.1.31.1.1.1.10.610|70|552907403886 +1.3.6.1.2.1.31.1.1.1.10.611|70|0 +1.3.6.1.2.1.31.1.1.1.10.612|70|147711387129 +1.3.6.1.2.1.31.1.1.1.10.613|70|147756222758 +1.3.6.1.2.1.31.1.1.1.10.614|70|150973202734 +1.3.6.1.2.1.31.1.1.1.10.615|70|2289147070167 +1.3.6.1.2.1.31.1.1.1.10.616|70|1156965013235 +1.3.6.1.2.1.31.1.1.1.10.617|70|147602455275 +1.3.6.1.2.1.31.1.1.1.10.618|70|949730599214 +1.3.6.1.2.1.31.1.1.1.10.619|70|146642056500 +1.3.6.1.2.1.31.1.1.1.10.620|70|146544586901 +1.3.6.1.2.1.31.1.1.1.10.621|70|0 +1.3.6.1.2.1.31.1.1.1.10.622|70|9852189682591 +1.3.6.1.2.1.31.1.1.1.10.623|70|0 +1.3.6.1.2.1.31.1.1.1.10.624|70|86507573214 +1.3.6.1.2.1.31.1.1.1.10.625|70|0 +1.3.6.1.2.1.31.1.1.1.10.626|70|948489163719 +1.3.6.1.2.1.31.1.1.1.10.627|70|949383129558 +1.3.6.1.2.1.31.1.1.1.10.628|70|0 +1.3.6.1.2.1.31.1.1.1.10.629|70|949728348667 +1.3.6.1.2.1.31.1.1.1.10.630|70|0 +1.3.6.1.2.1.31.1.1.1.10.631|70|0 +1.3.6.1.2.1.31.1.1.1.10.632|70|949700238216 +1.3.6.1.2.1.31.1.1.1.10.633|70|500747435544612 +1.3.6.1.2.1.31.1.1.1.10.634|70|627022777588844 +1.3.6.1.2.1.31.1.1.1.10.635|70|0 +1.3.6.1.2.1.31.1.1.1.10.636|70|12814775959 +1.3.6.1.2.1.31.1.1.1.10.637|70|0 +1.3.6.1.2.1.31.1.1.1.10.638|70|288765160812 +1.3.6.1.2.1.31.1.1.1.10.639|70|0 +1.3.6.1.2.1.31.1.1.1.10.640|70|0 +1.3.6.1.2.1.31.1.1.1.10.641|70|3097449101 +1.3.6.1.2.1.31.1.1.1.10.642|70|1774491983 +1.3.6.1.2.1.31.1.1.1.10.643|70|0 +1.3.6.1.2.1.31.1.1.1.10.644|70|153351288622 +1.3.6.1.2.1.31.1.1.1.10.645|70|0 +1.3.6.1.2.1.31.1.1.1.10.646|70|0 +1.3.6.1.2.1.31.1.1.1.10.647|70|9096225640 +1.3.6.1.2.1.31.1.1.1.10.648|70|0 +1.3.6.1.2.1.31.1.1.1.10.649|70|1287417111472 +1.3.6.1.2.1.31.1.1.1.10.650|70|2235828 +1.3.6.1.2.1.31.1.1.1.10.651|70|1209561390288067 +1.3.6.1.2.1.31.1.1.1.10.652|70|0 +1.3.6.1.2.1.31.1.1.1.10.653|70|0 +1.3.6.1.2.1.31.1.1.1.10.654|70|2206596 +1.3.6.1.2.1.31.1.1.1.10.655|70|2214828 +1.3.6.1.2.1.31.1.1.1.10.656|70|1466556948027 +1.3.6.1.2.1.31.1.1.1.10.657|70|1260092098751 +1.3.6.1.2.1.31.1.1.1.10.658|70|0 +1.3.6.1.2.1.31.1.1.1.10.659|70|949736071571 +1.3.6.1.2.1.31.1.1.1.10.660|70|1260089912396 +1.3.6.1.2.1.31.1.1.1.10.661|70|1338391297 +1.3.6.1.2.1.31.1.1.1.10.662|70|1935426457772 +1.3.6.1.2.1.31.1.1.1.10.663|70|948237617628 +1.3.6.1.2.1.31.1.1.1.10.664|70|1414896273093 +1.3.6.1.2.1.31.1.1.1.10.665|70|1898761968129 +1.3.6.1.2.1.31.1.1.1.10.666|70|948127320795 +1.3.6.1.2.1.31.1.1.1.10.667|70|948127468029 +1.3.6.1.2.1.31.1.1.1.10.668|70|0 +1.3.6.1.2.1.31.1.1.1.10.669|70|950134744517 +1.3.6.1.2.1.31.1.1.1.10.670|70|147738442823 +1.3.6.1.2.1.31.1.1.1.10.671|70|0 +1.3.6.1.2.1.31.1.1.1.10.672|70|0 +1.3.6.1.2.1.31.1.1.1.10.673|70|0 +1.3.6.1.2.1.31.1.1.1.10.674|70|147172048634 +1.3.6.1.2.1.31.1.1.1.10.675|70|0 +1.3.6.1.2.1.31.1.1.1.10.676|70|2224236 +1.3.6.1.2.1.31.1.1.1.10.677|70|2128638262 +1.3.6.1.2.1.31.1.1.1.10.678|70|0 +1.3.6.1.2.1.31.1.1.1.10.679|70|164448139042 +1.3.6.1.2.1.31.1.1.1.10.680|70|146758252188 +1.3.6.1.2.1.31.1.1.1.10.681|70|0 +1.3.6.1.2.1.31.1.1.1.10.682|70|2224236 +1.3.6.1.2.1.31.1.1.1.10.683|70|0 +1.3.6.1.2.1.31.1.1.1.10.684|70|0 +1.3.6.1.2.1.31.1.1.1.10.685|70|1942231111 +1.3.6.1.2.1.31.1.1.1.10.686|70|949850948049 +1.3.6.1.2.1.31.1.1.1.10.687|70|949815347755 +1.3.6.1.2.1.31.1.1.1.10.688|70|949845601254 +1.3.6.1.2.1.31.1.1.1.10.689|70|951677359664 +1.3.6.1.2.1.31.1.1.1.10.690|70|949776134901 +1.3.6.1.2.1.31.1.1.1.10.691|70|949931124314 +1.3.6.1.2.1.31.1.1.1.10.692|70|0 +1.3.6.1.2.1.31.1.1.1.10.693|70|0 +1.3.6.1.2.1.31.1.1.1.10.694|70|0 +1.3.6.1.2.1.31.1.1.1.10.695|70|18705889397 +1.3.6.1.2.1.31.1.1.1.10.696|70|27651749381026 +1.3.6.1.2.1.31.1.1.1.10.697|70|3742173412082 +1.3.6.1.2.1.31.1.1.1.10.698|70|0 +1.3.6.1.2.1.31.1.1.1.10.699|70|0 +1.3.6.1.2.1.31.1.1.1.10.700|70|0 +1.3.6.1.2.1.31.1.1.1.10.701|70|0 +1.3.6.1.2.1.31.1.1.1.10.702|70|0 +1.3.6.1.2.1.31.1.1.1.10.703|70|2224236 +1.3.6.1.2.1.31.1.1.1.10.704|70|288801849637 +1.3.6.1.2.1.31.1.1.1.10.705|70|607967904283 +1.3.6.1.2.1.31.1.1.1.10.706|70|348582918450 +1.3.6.1.2.1.31.1.1.1.10.707|70|949689904525 +1.3.6.1.2.1.31.1.1.1.10.708|70|1674331459308 +1.3.6.1.2.1.31.1.1.1.10.709|70|288805594562 +1.3.6.1.2.1.31.1.1.1.10.710|70|288805604063 +1.3.6.1.2.1.31.1.1.1.10.711|70|0 +1.3.6.1.2.1.31.1.1.1.10.712|70|2193797785451 +1.3.6.1.2.1.31.1.1.1.10.713|70|296740757324 +1.3.6.1.2.1.31.1.1.1.10.714|70|2579829207347 +1.3.6.1.2.1.31.1.1.1.10.715|70|2214240 +1.3.6.1.2.1.31.1.1.1.10.716|70|0 +1.3.6.1.2.1.31.1.1.1.10.717|70|949907644997 +1.3.6.1.2.1.31.1.1.1.10.718|70|949739792737 +1.3.6.1.2.1.31.1.1.1.10.719|70|951949153849 +1.3.6.1.2.1.31.1.1.1.10.720|70|0 +1.3.6.1.2.1.31.1.1.1.10.721|70|949926816615 +1.3.6.1.2.1.31.1.1.1.10.722|70|146766502972 +1.3.6.1.2.1.31.1.1.1.10.723|70|982666078801 +1.3.6.1.2.1.31.1.1.1.10.724|70|2476785152775 +1.3.6.1.2.1.31.1.1.1.10.725|70|949769884436 +1.3.6.1.2.1.31.1.1.1.10.726|70|2214240 +1.3.6.1.2.1.31.1.1.1.10.727|70|2175380723 +1.3.6.1.2.1.31.1.1.1.10.728|70|0 +1.3.6.1.2.1.31.1.1.1.10.729|70|948129200682 +1.3.6.1.2.1.31.1.1.1.10.730|70|1169290425966 +1.3.6.1.2.1.31.1.1.1.10.731|70|202302484227 +1.3.6.1.2.1.31.1.1.1.10.732|70|978554018253 +1.3.6.1.2.1.31.1.1.1.10.733|70|98381421395 +1.3.6.1.2.1.31.1.1.1.10.734|70|685358110 +1.3.6.1.2.1.31.1.1.1.10.735|70|55364081298 +1.3.6.1.2.1.31.1.1.1.10.736|70|45681086307 +1.3.6.1.2.1.31.1.1.1.10.737|70|32366818461 +1.3.6.1.2.1.31.1.1.1.10.738|70|2214240 +1.3.6.1.2.1.31.1.1.1.10.739|70|284039832896 +1.3.6.1.2.1.31.1.1.1.10.740|70|44247744094277 +1.3.6.1.2.1.31.1.1.1.10.741|70|0 +1.3.6.1.2.1.31.1.1.1.10.742|70|1076884124675 +1.3.6.1.2.1.31.1.1.1.10.743|70|0 +1.3.6.1.2.1.31.1.1.1.10.744|70|0 +1.3.6.1.2.1.31.1.1.1.10.745|70|950137291803 +1.3.6.1.2.1.31.1.1.1.10.746|70|0 +1.3.6.1.2.1.31.1.1.1.10.747|70|2214240 +1.3.6.1.2.1.31.1.1.1.10.748|70|436884750545 +1.3.6.1.2.1.31.1.1.1.10.749|70|7283381448 +1.3.6.1.2.1.31.1.1.1.10.750|70|4241244782128 +1.3.6.1.2.1.31.1.1.1.10.751|70|153422004758 +1.3.6.1.2.1.31.1.1.1.10.768|70|48625001820001 +1.3.6.1.2.1.31.1.1.1.10.769|70|34872391622676 +1.3.6.1.2.1.31.1.1.1.10.770|70|48460040004218 +1.3.6.1.2.1.31.1.1.1.10.771|70|13326729717190 +1.3.6.1.2.1.31.1.1.1.10.772|70|365175868795 +1.3.6.1.2.1.31.1.1.1.10.773|70|170781396012 +1.3.6.1.2.1.31.1.1.1.10.774|70|13287010883355 +1.3.6.1.2.1.31.1.1.1.10.775|70|354556145381 +1.3.6.1.2.1.31.1.1.1.10.776|70|168892675143 +1.3.6.1.2.1.31.1.1.1.10.777|70|8312946 +1.3.6.1.2.1.31.1.1.1.10.778|70|201865578 +1.3.6.1.2.1.31.1.1.1.10.779|70|87334212 +1.3.6.1.2.1.31.1.1.1.10.780|70|377073907458 +1.3.6.1.2.1.31.1.1.1.10.781|70|33484097119 +1.3.6.1.2.1.31.1.1.1.10.782|70|607157917 +1.3.6.1.2.1.31.1.1.1.10.783|70|638418962 +1.3.6.1.2.1.31.1.1.1.10.784|70|562862904 +1.3.6.1.2.1.31.1.1.1.10.785|70|484368692 +1.3.6.1.2.1.31.1.1.1.10.786|70|92947955 +1.3.6.1.2.1.31.1.1.1.10.787|70|933908296 +1.3.6.1.2.1.31.1.1.1.10.788|70|1860237556318 +1.3.6.1.2.1.31.1.1.1.10.789|70|48672961151195 +1.3.6.1.2.1.31.1.1.1.10.790|70|3999684146402 +1.3.6.1.2.1.31.1.1.1.10.791|70|2654034340279 +1.3.6.1.2.1.31.1.1.1.10.792|70|48483085602312 +1.3.6.1.2.1.31.1.1.1.10.793|70|3981414472520 +1.3.6.1.2.1.31.1.1.1.10.794|70|2614112399682 +1.3.6.1.2.1.31.1.1.1.10.795|70|672035048201 +1.3.6.1.2.1.31.1.1.1.10.796|70|174451767893 +1.3.6.1.2.1.31.1.1.1.10.797|70|501938043475 +1.3.6.1.2.1.31.1.1.1.10.798|70|27018524634 +1.3.6.1.2.1.31.1.1.1.10.799|70|15033761803536 +1.3.6.1.2.1.31.1.1.1.10.800|70|7834655928969 +1.3.6.1.2.1.31.1.1.1.10.801|70|1844898956305 +1.3.6.1.2.1.31.1.1.1.10.802|70|26768688211 +1.3.6.1.2.1.31.1.1.1.10.803|70|14988046542778 +1.3.6.1.2.1.31.1.1.1.10.804|70|665984941077 +1.3.6.1.2.1.31.1.1.1.10.805|70|171526638597 +1.3.6.1.2.1.31.1.1.1.10.806|70|492076902820 +1.3.6.1.2.1.31.1.1.1.10.807|70|7810866068183 +1.3.6.1.2.1.31.1.1.1.10.808|70|3882164927 +1.3.6.1.2.1.31.1.1.1.10.809|70|2967520045 +1.3.6.1.2.1.31.1.1.1.10.810|70|3174173686 +1.3.6.1.2.1.31.1.1.1.10.811|70|3059438529 +1.3.6.1.2.1.31.1.1.1.10.812|70|3234752591783 +1.3.6.1.2.1.31.1.1.1.10.813|70|1186998510045 +1.3.6.1.2.1.31.1.1.1.10.814|70|1174349572255 +1.3.6.1.2.1.31.1.1.1.10.815|70|3214612311856 +1.3.6.1.2.1.31.1.1.1.10.816|70|1102173619 +1.3.6.1.2.1.31.1.1.1.10.817|70|1083308537845 +1.3.6.1.2.1.31.1.1.1.10.818|70|1077763603861 +1.3.6.1.2.1.31.1.1.1.10.819|70|8883151907292 +1.3.6.1.2.1.31.1.1.1.10.820|70|441191791 +1.3.6.1.2.1.31.1.1.1.10.821|70|498674737 +1.3.6.1.2.1.31.1.1.1.10.822|70|904616287 +1.3.6.1.2.1.31.1.1.1.10.823|70|214754180 +1.3.6.1.2.1.31.1.1.1.10.824|70|817887 +1.3.6.1.2.1.31.1.1.1.10.825|70|278999222 +1.3.6.1.2.1.31.1.1.1.10.826|70|712639234 +1.3.6.1.2.1.31.1.1.1.10.827|70|168499611 +1.3.6.1.2.1.31.1.1.1.10.828|70|0 +1.3.6.1.2.1.31.1.1.1.10.829|70|0 +1.3.6.1.2.1.31.1.1.1.10.830|70|0 +1.3.6.1.2.1.31.1.1.1.10.831|70|2864277200199 +1.3.6.1.2.1.31.1.1.1.10.832|70|86015269135 +1.3.6.1.2.1.31.1.1.1.10.833|70|206411540295093 +1.3.6.1.2.1.31.1.1.1.10.834|70|205814843716892 +1.3.6.1.2.1.31.1.1.1.10.835|70|2713109256286 +1.3.6.1.2.1.31.1.1.1.10.836|70|85575400674 +1.3.6.1.2.1.31.1.1.1.10.837|70|7441737124 +1.3.6.1.2.1.31.1.1.1.10.838|70|5728992318 +1.3.6.1.2.1.31.1.1.1.10.839|70|655467 +1.3.6.1.2.1.31.1.1.1.10.840|70|59802 +1.3.6.1.2.1.31.1.1.1.10.841|70|25565134879 +1.3.6.1.2.1.31.1.1.1.10.842|70|1377848260079 +1.3.6.1.2.1.31.1.1.1.10.843|70|334976104 +1.3.6.1.2.1.31.1.1.1.10.844|70|9798796 +1.3.6.1.2.1.31.1.1.1.10.845|70|7086872 +1.3.6.1.2.1.31.1.1.1.10.846|70|762080128318 +1.3.6.1.2.1.31.1.1.1.10.847|70|11996794256218 +1.3.6.1.2.1.31.1.1.1.10.848|70|1364645280379 +1.3.6.1.2.1.31.1.1.1.10.849|70|11961078908642 +1.3.6.1.2.1.31.1.1.1.10.850|70|758146929121 +1.3.6.1.2.1.31.1.1.1.10.851|70|8529551 +1.3.6.1.2.1.31.1.1.1.10.852|70|8409033 +1.3.6.1.2.1.31.1.1.1.10.853|70|27729942244 +1.3.6.1.2.1.31.1.1.1.10.854|70|27010222353 +1.3.6.1.2.1.31.1.1.1.10.855|70|0 +1.3.6.1.2.1.31.1.1.1.10.856|70|209248877 +1.3.6.1.2.1.31.1.1.1.10.857|70|191746391 +1.3.6.1.2.1.31.1.1.1.10.858|70|208375836 +1.3.6.1.2.1.31.1.1.1.10.859|70|2580 +1.3.6.1.2.1.31.1.1.1.10.864|70|502230 +1.3.6.1.2.1.31.1.1.1.10.868|70|672685499 +1.3.6.1.2.1.31.1.1.1.10.869|70|324068438116 +1.3.6.1.2.1.31.1.1.1.10.870|70|786726148 +1.3.6.1.2.1.31.1.1.1.10.871|70|322641381592 +1.3.6.1.2.1.31.1.1.1.10.872|70|695600590 +1.3.6.1.2.1.31.1.1.1.10.873|70|104790692 +1.3.6.1.2.1.31.1.1.1.10.874|70|153707302616 +1.3.6.1.2.1.31.1.1.1.10.875|70|1517590841933 +1.3.6.1.2.1.31.1.1.1.10.876|70|9910997317178 +1.3.6.1.2.1.31.1.1.1.10.877|70|478127917323 +1.3.6.1.2.1.31.1.1.1.10.878|70|9940909900402 +1.3.6.1.2.1.31.1.1.1.10.879|70|483541026490 +1.3.6.1.2.1.31.1.1.1.10.880|70|1530977302030 +1.3.6.1.2.1.31.1.1.1.10.881|70|154528712075 +1.3.6.1.2.1.31.1.1.1.10.882|70|116728649452 +1.3.6.1.2.1.31.1.1.1.10.883|70|115716734694 +1.3.6.1.2.1.31.1.1.1.10.884|70|84724016161 +1.3.6.1.2.1.31.1.1.1.10.885|70|84175048799 +1.3.6.1.2.1.31.1.1.1.10.886|70|0 +1.3.6.1.2.1.31.1.1.1.10.887|70|166590250 +1.3.6.1.2.1.31.1.1.1.10.888|70|1180785251791 +1.3.6.1.2.1.31.1.1.1.10.889|70|1160287300948 +1.3.6.1.2.1.31.1.1.1.10.890|70|144260329605 +1.3.6.1.2.1.31.1.1.1.10.891|70|717652202611 +1.3.6.1.2.1.31.1.1.1.10.892|70|11094818602 +1.3.6.1.2.1.31.1.1.1.10.893|70|71251331 +1.3.6.1.2.1.31.1.1.1.10.894|70|24869493 +1.3.6.1.2.1.31.1.1.1.10.895|70|40455180 +1.3.6.1.2.1.31.1.1.1.10.896|70|9439223 +1.3.6.1.2.1.31.1.1.1.10.897|70|2573096 +1.3.6.1.2.1.31.1.1.1.10.898|70|33306284 +1.3.6.1.2.1.31.1.1.1.10.899|70|199079647 +1.3.6.1.2.1.31.1.1.1.10.900|70|4089127156175 +1.3.6.1.2.1.31.1.1.1.10.901|70|4417763883024 +1.3.6.1.2.1.31.1.1.1.10.902|70|64704268 +1.3.6.1.2.1.31.1.1.1.10.903|70|28052366 +1.3.6.1.2.1.31.1.1.1.10.904|70|66484573 +1.3.6.1.2.1.31.1.1.1.10.905|70|298620 +1.3.6.1.2.1.31.1.1.1.10.906|70|185455540 +1.3.6.1.2.1.31.1.1.1.10.907|70|4073715485304 +1.3.6.1.2.1.31.1.1.1.10.908|70|4403105621143 +1.3.6.1.2.1.31.1.1.1.10.909|70|707192404798 +1.3.6.1.2.1.31.1.1.1.10.910|70|1182951360 +1.3.6.1.2.1.31.1.1.1.10.911|70|393766740 +1.3.6.1.2.1.31.1.1.1.10.912|70|353295816 +1.3.6.1.2.1.31.1.1.1.10.913|70|2741376 +1.3.6.1.2.1.31.1.1.1.10.914|70|3240 +1.3.6.1.2.1.31.1.1.1.10.915|70|645937242 +1.3.6.1.2.1.31.1.1.1.10.916|70|3276305446768 +1.3.6.1.2.1.31.1.1.1.10.917|70|568461280913 +1.3.6.1.2.1.31.1.1.1.10.918|70|345566690539 +1.3.6.1.2.1.31.1.1.1.10.919|70|563973287975 +1.3.6.1.2.1.31.1.1.1.10.920|70|344328387017 +1.3.6.1.2.1.31.1.1.1.10.921|70|3266265704892 +1.3.6.1.2.1.31.1.1.1.10.922|70|700889892555 +1.3.6.1.2.1.31.1.1.1.10.923|70|19924744533 +1.3.6.1.2.1.31.1.1.1.10.924|70|2167432753 +1.3.6.1.2.1.31.1.1.1.10.925|70|19098360817 +1.3.6.1.2.1.31.1.1.1.10.926|70|2124259578 +1.3.6.1.2.1.31.1.1.1.10.927|70|698754861052 +1.3.6.1.2.1.31.1.1.1.10.928|70|2442379 +1.3.6.1.2.1.31.1.1.1.10.929|70|66690 +1.3.6.1.2.1.31.1.1.1.10.930|70|1170918 +1.3.6.1.2.1.31.1.1.1.10.931|70|1910367 +1.3.6.1.2.1.31.1.1.1.10.932|70|66690 +1.3.6.1.2.1.31.1.1.1.10.933|70|66690 +1.3.6.1.2.1.31.1.1.1.10.934|70|66690 +1.3.6.1.2.1.31.1.1.1.10.935|70|66690 +1.3.6.1.2.1.31.1.1.1.10.936|70|66690 +1.3.6.1.2.1.31.1.1.1.10.937|70|65220 +1.3.6.1.2.1.31.1.1.1.10.938|70|667421756 +1.3.6.1.2.1.31.1.1.1.10.939|70|753109790265 +1.3.6.1.2.1.31.1.1.1.10.940|70|292100913 +1.3.6.1.2.1.31.1.1.1.10.941|70|87108253556 +1.3.6.1.2.1.31.1.1.1.10.942|70|684643041 +1.3.6.1.2.1.31.1.1.1.10.943|70|755564680355 +1.3.6.1.2.1.31.1.1.1.10.944|70|308974509 +1.3.6.1.2.1.31.1.1.1.10.945|70|88336800448 +1.3.6.1.2.1.31.1.1.1.10.946|70|231044 +1.3.6.1.2.1.31.1.1.1.10.947|70|74385762 +1.3.6.1.2.1.31.1.1.1.10.948|70|188297736 +1.3.6.1.2.1.31.1.1.1.10.949|70|38301151 +1.3.6.1.2.1.31.1.1.1.11.251|70|0 +1.3.6.1.2.1.31.1.1.1.11.252|70|14099796800 +1.3.6.1.2.1.31.1.1.1.11.254|70|0 +1.3.6.1.2.1.31.1.1.1.11.255|70|0 +1.3.6.1.2.1.31.1.1.1.11.258|70|724038539 +1.3.6.1.2.1.31.1.1.1.11.259|70|0 +1.3.6.1.2.1.31.1.1.1.11.260|70|70 +1.3.6.1.2.1.31.1.1.1.11.261|70|0 +1.3.6.1.2.1.31.1.1.1.11.262|70|0 +1.3.6.1.2.1.31.1.1.1.11.263|70|0 +1.3.6.1.2.1.31.1.1.1.11.264|70|0 +1.3.6.1.2.1.31.1.1.1.11.265|70|92366633 +1.3.6.1.2.1.31.1.1.1.11.266|70|2178545306293 +1.3.6.1.2.1.31.1.1.1.11.267|70|5947961 +1.3.6.1.2.1.31.1.1.1.11.268|70|66093347650 +1.3.6.1.2.1.31.1.1.1.11.269|70|21673819687 +1.3.6.1.2.1.31.1.1.1.11.270|70|0 +1.3.6.1.2.1.31.1.1.1.11.273|70|0 +1.3.6.1.2.1.31.1.1.1.11.274|70|0 +1.3.6.1.2.1.31.1.1.1.11.275|70|1136667 +1.3.6.1.2.1.31.1.1.1.11.276|70|508801 +1.3.6.1.2.1.31.1.1.1.11.277|70|0 +1.3.6.1.2.1.31.1.1.1.11.278|70|0 +1.3.6.1.2.1.31.1.1.1.11.280|70|0 +1.3.6.1.2.1.31.1.1.1.11.281|70|0 +1.3.6.1.2.1.31.1.1.1.11.282|70|0 +1.3.6.1.2.1.31.1.1.1.11.283|70|0 +1.3.6.1.2.1.31.1.1.1.11.284|70|0 +1.3.6.1.2.1.31.1.1.1.11.285|70|0 +1.3.6.1.2.1.31.1.1.1.11.286|70|0 +1.3.6.1.2.1.31.1.1.1.11.287|70|0 +1.3.6.1.2.1.31.1.1.1.11.288|70|0 +1.3.6.1.2.1.31.1.1.1.11.291|70|0 +1.3.6.1.2.1.31.1.1.1.11.292|70|87297 +1.3.6.1.2.1.31.1.1.1.11.293|70|102122 +1.3.6.1.2.1.31.1.1.1.11.294|70|0 +1.3.6.1.2.1.31.1.1.1.11.295|70|565102344 +1.3.6.1.2.1.31.1.1.1.11.395|70|0 +1.3.6.1.2.1.31.1.1.1.11.396|70|0 +1.3.6.1.2.1.31.1.1.1.11.398|70|244945539009 +1.3.6.1.2.1.31.1.1.1.11.399|70|18754865 +1.3.6.1.2.1.31.1.1.1.11.414|70|0 +1.3.6.1.2.1.31.1.1.1.11.415|70|0 +1.3.6.1.2.1.31.1.1.1.11.417|70|7776223 +1.3.6.1.2.1.31.1.1.1.11.418|70|65072067734 +1.3.6.1.2.1.31.1.1.1.11.438|70|19323349 +1.3.6.1.2.1.31.1.1.1.11.439|70|185395 +1.3.6.1.2.1.31.1.1.1.11.440|70|202661 +1.3.6.1.2.1.31.1.1.1.11.441|70|105350 +1.3.6.1.2.1.31.1.1.1.11.442|70|721571 +1.3.6.1.2.1.31.1.1.1.11.443|70|236734 +1.3.6.1.2.1.31.1.1.1.11.444|70|155944 +1.3.6.1.2.1.31.1.1.1.11.445|70|55369 +1.3.6.1.2.1.31.1.1.1.11.446|70|0 +1.3.6.1.2.1.31.1.1.1.11.447|70|260040 +1.3.6.1.2.1.31.1.1.1.11.448|70|104 +1.3.6.1.2.1.31.1.1.1.11.449|70|95652 +1.3.6.1.2.1.31.1.1.1.11.450|70|73296 +1.3.6.1.2.1.31.1.1.1.11.451|70|62256 +1.3.6.1.2.1.31.1.1.1.11.452|70|182115 +1.3.6.1.2.1.31.1.1.1.11.453|70|138810 +1.3.6.1.2.1.31.1.1.1.11.454|70|0 +1.3.6.1.2.1.31.1.1.1.11.455|70|11784 +1.3.6.1.2.1.31.1.1.1.11.456|70|46058 +1.3.6.1.2.1.31.1.1.1.11.457|70|7576 +1.3.6.1.2.1.31.1.1.1.11.462|70|12128 +1.3.6.1.2.1.31.1.1.1.11.464|70|0 +1.3.6.1.2.1.31.1.1.1.11.465|70|0 +1.3.6.1.2.1.31.1.1.1.11.467|70|0 +1.3.6.1.2.1.31.1.1.1.11.468|70|0 +1.3.6.1.2.1.31.1.1.1.11.474|70|1181003526 +1.3.6.1.2.1.31.1.1.1.11.475|70|2788122 +1.3.6.1.2.1.31.1.1.1.11.476|70|140166 +1.3.6.1.2.1.31.1.1.1.11.477|70|0 +1.3.6.1.2.1.31.1.1.1.11.478|70|300771553 +1.3.6.1.2.1.31.1.1.1.11.487|70|1273322771005 +1.3.6.1.2.1.31.1.1.1.11.489|70|11965 +1.3.6.1.2.1.31.1.1.1.11.490|70|0 +1.3.6.1.2.1.31.1.1.1.11.493|70|1461768696 +1.3.6.1.2.1.31.1.1.1.11.494|70|0 +1.3.6.1.2.1.31.1.1.1.11.495|70|0 +1.3.6.1.2.1.31.1.1.1.11.496|70|0 +1.3.6.1.2.1.31.1.1.1.11.497|70|1610237988079 +1.3.6.1.2.1.31.1.1.1.11.502|70|151039527085 +1.3.6.1.2.1.31.1.1.1.11.503|70|0 +1.3.6.1.2.1.31.1.1.1.11.504|70|64381600666 +1.3.6.1.2.1.31.1.1.1.11.505|70|318 +1.3.6.1.2.1.31.1.1.1.11.506|70|151044343330 +1.3.6.1.2.1.31.1.1.1.11.509|70|64380779389 +1.3.6.1.2.1.31.1.1.1.11.510|70|0 +1.3.6.1.2.1.31.1.1.1.11.511|70|0 +1.3.6.1.2.1.31.1.1.1.11.513|70|109212 +1.3.6.1.2.1.31.1.1.1.11.514|70|0 +1.3.6.1.2.1.31.1.1.1.11.515|70|0 +1.3.6.1.2.1.31.1.1.1.11.516|70|37984917847 +1.3.6.1.2.1.31.1.1.1.11.517|70|162798893 +1.3.6.1.2.1.31.1.1.1.11.518|70|0 +1.3.6.1.2.1.31.1.1.1.11.519|70|0 +1.3.6.1.2.1.31.1.1.1.11.520|70|0 +1.3.6.1.2.1.31.1.1.1.11.523|70|2828506 +1.3.6.1.2.1.31.1.1.1.11.524|70|37172713 +1.3.6.1.2.1.31.1.1.1.11.525|70|14762329424 +1.3.6.1.2.1.31.1.1.1.11.526|70|9382366470 +1.3.6.1.2.1.31.1.1.1.11.527|70|0 +1.3.6.1.2.1.31.1.1.1.11.528|70|7055770434 +1.3.6.1.2.1.31.1.1.1.11.529|70|97616 +1.3.6.1.2.1.31.1.1.1.11.530|70|5121296 +1.3.6.1.2.1.31.1.1.1.11.531|70|1895123033 +1.3.6.1.2.1.31.1.1.1.11.532|70|3052521007 +1.3.6.1.2.1.31.1.1.1.11.533|70|1982 +1.3.6.1.2.1.31.1.1.1.11.534|70|5114 +1.3.6.1.2.1.31.1.1.1.11.535|70|14809672208 +1.3.6.1.2.1.31.1.1.1.11.536|70|9391231888 +1.3.6.1.2.1.31.1.1.1.11.538|70|7065722884 +1.3.6.1.2.1.31.1.1.1.11.540|70|36756341297 +1.3.6.1.2.1.31.1.1.1.11.541|70|96227937 +1.3.6.1.2.1.31.1.1.1.11.542|70|3393032123 +1.3.6.1.2.1.31.1.1.1.11.543|70|1903698699 +1.3.6.1.2.1.31.1.1.1.11.544|70|16616313639 +1.3.6.1.2.1.31.1.1.1.11.545|70|16606520313 +1.3.6.1.2.1.31.1.1.1.11.546|70|3414 +1.3.6.1.2.1.31.1.1.1.11.547|70|590910949215 +1.3.6.1.2.1.31.1.1.1.11.548|70|0 +1.3.6.1.2.1.31.1.1.1.11.549|70|0 +1.3.6.1.2.1.31.1.1.1.11.550|70|682270911098 +1.3.6.1.2.1.31.1.1.1.11.551|70|0 +1.3.6.1.2.1.31.1.1.1.11.552|70|0 +1.3.6.1.2.1.31.1.1.1.11.553|70|0 +1.3.6.1.2.1.31.1.1.1.11.554|70|0 +1.3.6.1.2.1.31.1.1.1.11.555|70|1303194 +1.3.6.1.2.1.31.1.1.1.11.556|70|962909197 +1.3.6.1.2.1.31.1.1.1.11.557|70|4541921782 +1.3.6.1.2.1.31.1.1.1.11.558|70|4541641186 +1.3.6.1.2.1.31.1.1.1.11.559|70|4543352719 +1.3.6.1.2.1.31.1.1.1.11.560|70|4541919776 +1.3.6.1.2.1.31.1.1.1.11.561|70|8929265 +1.3.6.1.2.1.31.1.1.1.11.562|70|0 +1.3.6.1.2.1.31.1.1.1.11.563|70|67637553 +1.3.6.1.2.1.31.1.1.1.11.564|70|0 +1.3.6.1.2.1.31.1.1.1.11.565|70|4540616502 +1.3.6.1.2.1.31.1.1.1.11.566|70|4590298022 +1.3.6.1.2.1.31.1.1.1.11.567|70|7012464046 +1.3.6.1.2.1.31.1.1.1.11.568|70|4590368813 +1.3.6.1.2.1.31.1.1.1.11.569|70|0 +1.3.6.1.2.1.31.1.1.1.11.570|70|8933312029 +1.3.6.1.2.1.31.1.1.1.11.571|70|4557328011 +1.3.6.1.2.1.31.1.1.1.11.572|70|0 +1.3.6.1.2.1.31.1.1.1.11.573|70|0 +1.3.6.1.2.1.31.1.1.1.11.574|70|0 +1.3.6.1.2.1.31.1.1.1.11.575|70|1824436677 +1.3.6.1.2.1.31.1.1.1.11.576|70|0 +1.3.6.1.2.1.31.1.1.1.11.577|70|37286291922 +1.3.6.1.2.1.31.1.1.1.11.578|70|2506928847 +1.3.6.1.2.1.31.1.1.1.11.579|70|17497217 +1.3.6.1.2.1.31.1.1.1.11.580|70|1226225 +1.3.6.1.2.1.31.1.1.1.11.581|70|1392901 +1.3.6.1.2.1.31.1.1.1.11.582|70|475701563 +1.3.6.1.2.1.31.1.1.1.11.583|70|4557022781 +1.3.6.1.2.1.31.1.1.1.11.584|70|1499099 +1.3.6.1.2.1.31.1.1.1.11.585|70|2142672 +1.3.6.1.2.1.31.1.1.1.11.586|70|4557986725 +1.3.6.1.2.1.31.1.1.1.11.587|70|4557042393 +1.3.6.1.2.1.31.1.1.1.11.588|70|27709529 +1.3.6.1.2.1.31.1.1.1.11.589|70|6930684929 +1.3.6.1.2.1.31.1.1.1.11.590|70|458781204 +1.3.6.1.2.1.31.1.1.1.11.591|70|7762344 +1.3.6.1.2.1.31.1.1.1.11.592|70|0 +1.3.6.1.2.1.31.1.1.1.11.593|70|0 +1.3.6.1.2.1.31.1.1.1.11.594|70|0 +1.3.6.1.2.1.31.1.1.1.11.595|70|4557255389 +1.3.6.1.2.1.31.1.1.1.11.596|70|0 +1.3.6.1.2.1.31.1.1.1.11.597|70|0 +1.3.6.1.2.1.31.1.1.1.11.598|70|0 +1.3.6.1.2.1.31.1.1.1.11.599|70|0 +1.3.6.1.2.1.31.1.1.1.11.600|70|4557983469 +1.3.6.1.2.1.31.1.1.1.11.601|70|1332552446 +1.3.6.1.2.1.31.1.1.1.11.602|70|0 +1.3.6.1.2.1.31.1.1.1.11.603|70|4557148899 +1.3.6.1.2.1.31.1.1.1.11.604|70|4912851843 +1.3.6.1.2.1.31.1.1.1.11.605|70|0 +1.3.6.1.2.1.31.1.1.1.11.606|70|0 +1.3.6.1.2.1.31.1.1.1.11.607|70|0 +1.3.6.1.2.1.31.1.1.1.11.608|70|0 +1.3.6.1.2.1.31.1.1.1.11.609|70|0 +1.3.6.1.2.1.31.1.1.1.11.610|70|526034667 +1.3.6.1.2.1.31.1.1.1.11.611|70|0 +1.3.6.1.2.1.31.1.1.1.11.612|70|2905097 +1.3.6.1.2.1.31.1.1.1.11.613|70|3812926 +1.3.6.1.2.1.31.1.1.1.11.614|70|28471346 +1.3.6.1.2.1.31.1.1.1.11.615|70|3128805613 +1.3.6.1.2.1.31.1.1.1.11.616|70|1088401232 +1.3.6.1.2.1.31.1.1.1.11.617|70|2083163 +1.3.6.1.2.1.31.1.1.1.11.618|70|4557273080 +1.3.6.1.2.1.31.1.1.1.11.619|70|1448931 +1.3.6.1.2.1.31.1.1.1.11.620|70|7048487 +1.3.6.1.2.1.31.1.1.1.11.621|70|0 +1.3.6.1.2.1.31.1.1.1.11.622|70|13951866361 +1.3.6.1.2.1.31.1.1.1.11.623|70|0 +1.3.6.1.2.1.31.1.1.1.11.624|70|381414253 +1.3.6.1.2.1.31.1.1.1.11.625|70|0 +1.3.6.1.2.1.31.1.1.1.11.626|70|4543359230 +1.3.6.1.2.1.31.1.1.1.11.627|70|4555165703 +1.3.6.1.2.1.31.1.1.1.11.628|70|0 +1.3.6.1.2.1.31.1.1.1.11.629|70|4557245299 +1.3.6.1.2.1.31.1.1.1.11.630|70|0 +1.3.6.1.2.1.31.1.1.1.11.631|70|0 +1.3.6.1.2.1.31.1.1.1.11.632|70|4557394955 +1.3.6.1.2.1.31.1.1.1.11.633|70|355848246371 +1.3.6.1.2.1.31.1.1.1.11.634|70|432463048695 +1.3.6.1.2.1.31.1.1.1.11.635|70|0 +1.3.6.1.2.1.31.1.1.1.11.636|70|8693043 +1.3.6.1.2.1.31.1.1.1.11.637|70|0 +1.3.6.1.2.1.31.1.1.1.11.638|70|27793933 +1.3.6.1.2.1.31.1.1.1.11.639|70|0 +1.3.6.1.2.1.31.1.1.1.11.640|70|0 +1.3.6.1.2.1.31.1.1.1.11.641|70|1656040 +1.3.6.1.2.1.31.1.1.1.11.642|70|1998722 +1.3.6.1.2.1.31.1.1.1.11.643|70|0 +1.3.6.1.2.1.31.1.1.1.11.644|70|70137911 +1.3.6.1.2.1.31.1.1.1.11.645|70|0 +1.3.6.1.2.1.31.1.1.1.11.646|70|0 +1.3.6.1.2.1.31.1.1.1.11.647|70|58109352 +1.3.6.1.2.1.31.1.1.1.11.648|70|0 +1.3.6.1.2.1.31.1.1.1.11.649|70|4935889266 +1.3.6.1.2.1.31.1.1.1.11.650|70|0 +1.3.6.1.2.1.31.1.1.1.11.651|70|821904762858 +1.3.6.1.2.1.31.1.1.1.11.652|70|0 +1.3.6.1.2.1.31.1.1.1.11.653|70|0 +1.3.6.1.2.1.31.1.1.1.11.654|70|0 +1.3.6.1.2.1.31.1.1.1.11.655|70|0 +1.3.6.1.2.1.31.1.1.1.11.656|70|5291803463 +1.3.6.1.2.1.31.1.1.1.11.657|70|4569548512 +1.3.6.1.2.1.31.1.1.1.11.658|70|0 +1.3.6.1.2.1.31.1.1.1.11.659|70|4557285395 +1.3.6.1.2.1.31.1.1.1.11.660|70|4569544083 +1.3.6.1.2.1.31.1.1.1.11.661|70|67 +1.3.6.1.2.1.31.1.1.1.11.662|70|8010493081 +1.3.6.1.2.1.31.1.1.1.11.663|70|4543318346 +1.3.6.1.2.1.31.1.1.1.11.664|70|4692714217 +1.3.6.1.2.1.31.1.1.1.11.665|70|7200002230 +1.3.6.1.2.1.31.1.1.1.11.666|70|4541629672 +1.3.6.1.2.1.31.1.1.1.11.667|70|4541630496 +1.3.6.1.2.1.31.1.1.1.11.668|70|0 +1.3.6.1.2.1.31.1.1.1.11.669|70|4560220757 +1.3.6.1.2.1.31.1.1.1.11.670|70|2102011 +1.3.6.1.2.1.31.1.1.1.11.671|70|0 +1.3.6.1.2.1.31.1.1.1.11.672|70|0 +1.3.6.1.2.1.31.1.1.1.11.673|70|0 +1.3.6.1.2.1.31.1.1.1.11.674|70|6856741 +1.3.6.1.2.1.31.1.1.1.11.675|70|0 +1.3.6.1.2.1.31.1.1.1.11.676|70|0 +1.3.6.1.2.1.31.1.1.1.11.677|70|7051326 +1.3.6.1.2.1.31.1.1.1.11.678|70|0 +1.3.6.1.2.1.31.1.1.1.11.679|70|52063540 +1.3.6.1.2.1.31.1.1.1.11.680|70|1454108 +1.3.6.1.2.1.31.1.1.1.11.681|70|0 +1.3.6.1.2.1.31.1.1.1.11.682|70|0 +1.3.6.1.2.1.31.1.1.1.11.683|70|0 +1.3.6.1.2.1.31.1.1.1.11.684|70|0 +1.3.6.1.2.1.31.1.1.1.11.685|70|1888495 +1.3.6.1.2.1.31.1.1.1.11.686|70|4557314074 +1.3.6.1.2.1.31.1.1.1.11.687|70|4557424460 +1.3.6.1.2.1.31.1.1.1.11.688|70|4557288416 +1.3.6.1.2.1.31.1.1.1.11.689|70|4574318006 +1.3.6.1.2.1.31.1.1.1.11.690|70|4556953014 +1.3.6.1.2.1.31.1.1.1.11.691|70|4557996291 +1.3.6.1.2.1.31.1.1.1.11.692|70|0 +1.3.6.1.2.1.31.1.1.1.11.693|70|0 +1.3.6.1.2.1.31.1.1.1.11.694|70|0 +1.3.6.1.2.1.31.1.1.1.11.695|70|8599955 +1.3.6.1.2.1.31.1.1.1.11.696|70|64863470586 +1.3.6.1.2.1.31.1.1.1.11.697|70|12879901397 +1.3.6.1.2.1.31.1.1.1.11.698|70|0 +1.3.6.1.2.1.31.1.1.1.11.699|70|0 +1.3.6.1.2.1.31.1.1.1.11.700|70|0 +1.3.6.1.2.1.31.1.1.1.11.701|70|0 +1.3.6.1.2.1.31.1.1.1.11.702|70|0 +1.3.6.1.2.1.31.1.1.1.11.703|70|0 +1.3.6.1.2.1.31.1.1.1.11.704|70|27843132 +1.3.6.1.2.1.31.1.1.1.11.705|70|284533248 +1.3.6.1.2.1.31.1.1.1.11.706|70|213631648 +1.3.6.1.2.1.31.1.1.1.11.707|70|4557352950 +1.3.6.1.2.1.31.1.1.1.11.708|70|4708179905 +1.3.6.1.2.1.31.1.1.1.11.709|70|27847363 +1.3.6.1.2.1.31.1.1.1.11.710|70|27846762 +1.3.6.1.2.1.31.1.1.1.11.711|70|0 +1.3.6.1.2.1.31.1.1.1.11.712|70|7584266303 +1.3.6.1.2.1.31.1.1.1.11.713|70|28013245 +1.3.6.1.2.1.31.1.1.1.11.714|70|5618192603 +1.3.6.1.2.1.31.1.1.1.11.715|70|0 +1.3.6.1.2.1.31.1.1.1.11.716|70|0 +1.3.6.1.2.1.31.1.1.1.11.717|70|4557851520 +1.3.6.1.2.1.31.1.1.1.11.718|70|4556755436 +1.3.6.1.2.1.31.1.1.1.11.719|70|4576655380 +1.3.6.1.2.1.31.1.1.1.11.720|70|0 +1.3.6.1.2.1.31.1.1.1.11.721|70|4557967193 +1.3.6.1.2.1.31.1.1.1.11.722|70|1469263 +1.3.6.1.2.1.31.1.1.1.11.723|70|4540465864 +1.3.6.1.2.1.31.1.1.1.11.724|70|3159896964 +1.3.6.1.2.1.31.1.1.1.11.725|70|4556923308 +1.3.6.1.2.1.31.1.1.1.11.726|70|0 +1.3.6.1.2.1.31.1.1.1.11.727|70|6275697 +1.3.6.1.2.1.31.1.1.1.11.728|70|0 +1.3.6.1.2.1.31.1.1.1.11.729|70|4541637199 +1.3.6.1.2.1.31.1.1.1.11.730|70|6027594135 +1.3.6.1.2.1.31.1.1.1.11.731|70|713885943 +1.3.6.1.2.1.31.1.1.1.11.732|70|1018004138 +1.3.6.1.2.1.31.1.1.1.11.733|70|300051101 +1.3.6.1.2.1.31.1.1.1.11.734|70|700010 +1.3.6.1.2.1.31.1.1.1.11.735|70|230594134 +1.3.6.1.2.1.31.1.1.1.11.736|70|149683876 +1.3.6.1.2.1.31.1.1.1.11.737|70|179900577 +1.3.6.1.2.1.31.1.1.1.11.738|70|0 +1.3.6.1.2.1.31.1.1.1.11.739|70|34263823 +1.3.6.1.2.1.31.1.1.1.11.740|70|106801973905 +1.3.6.1.2.1.31.1.1.1.11.741|70|0 +1.3.6.1.2.1.31.1.1.1.11.742|70|2755959002 +1.3.6.1.2.1.31.1.1.1.11.743|70|0 +1.3.6.1.2.1.31.1.1.1.11.744|70|0 +1.3.6.1.2.1.31.1.1.1.11.745|70|4560355019 +1.3.6.1.2.1.31.1.1.1.11.746|70|0 +1.3.6.1.2.1.31.1.1.1.11.747|70|0 +1.3.6.1.2.1.31.1.1.1.11.748|70|733357504 +1.3.6.1.2.1.31.1.1.1.11.749|70|51501775 +1.3.6.1.2.1.31.1.1.1.11.750|70|5448353812 +1.3.6.1.2.1.31.1.1.1.11.751|70|69543361 +1.3.6.1.2.1.31.1.1.1.11.768|70|41041196484 +1.3.6.1.2.1.31.1.1.1.11.769|70|33689794533 +1.3.6.1.2.1.31.1.1.1.11.770|70|41043506578 +1.3.6.1.2.1.31.1.1.1.11.771|70|9854976039 +1.3.6.1.2.1.31.1.1.1.11.772|70|2611660012 +1.3.6.1.2.1.31.1.1.1.11.773|70|444040624 +1.3.6.1.2.1.31.1.1.1.11.774|70|9862636489 +1.3.6.1.2.1.31.1.1.1.11.775|70|2619588304 +1.3.6.1.2.1.31.1.1.1.11.776|70|451925929 +1.3.6.1.2.1.31.1.1.1.11.777|70|21782 +1.3.6.1.2.1.31.1.1.1.11.778|70|886019 +1.3.6.1.2.1.31.1.1.1.11.779|70|359394 +1.3.6.1.2.1.31.1.1.1.11.780|70|901797577 +1.3.6.1.2.1.31.1.1.1.11.781|70|42619731 +1.3.6.1.2.1.31.1.1.1.11.782|70|405292 +1.3.6.1.2.1.31.1.1.1.11.783|70|301300 +1.3.6.1.2.1.31.1.1.1.11.784|70|1615 +1.3.6.1.2.1.31.1.1.1.11.785|70|7813820 +1.3.6.1.2.1.31.1.1.1.11.786|70|55205 +1.3.6.1.2.1.31.1.1.1.11.787|70|179650 +1.3.6.1.2.1.31.1.1.1.11.788|70|3774740794 +1.3.6.1.2.1.31.1.1.1.11.789|70|35584871921 +1.3.6.1.2.1.31.1.1.1.11.790|70|4398058705 +1.3.6.1.2.1.31.1.1.1.11.791|70|9914130316 +1.3.6.1.2.1.31.1.1.1.11.792|70|35558250853 +1.3.6.1.2.1.31.1.1.1.11.793|70|4405868281 +1.3.6.1.2.1.31.1.1.1.11.794|70|9922439123 +1.3.6.1.2.1.31.1.1.1.11.795|70|1110862135 +1.3.6.1.2.1.31.1.1.1.11.796|70|548812374 +1.3.6.1.2.1.31.1.1.1.11.797|70|2076286989 +1.3.6.1.2.1.31.1.1.1.11.798|70|23452837 +1.3.6.1.2.1.31.1.1.1.11.799|70|11353551161 +1.3.6.1.2.1.31.1.1.1.11.800|70|5875092357 +1.3.6.1.2.1.31.1.1.1.11.801|70|3782729705 +1.3.6.1.2.1.31.1.1.1.11.802|70|31441506 +1.3.6.1.2.1.31.1.1.1.11.803|70|11363643389 +1.3.6.1.2.1.31.1.1.1.11.804|70|1118622993 +1.3.6.1.2.1.31.1.1.1.11.805|70|556636178 +1.3.6.1.2.1.31.1.1.1.11.806|70|2084412723 +1.3.6.1.2.1.31.1.1.1.11.807|70|5882846373 +1.3.6.1.2.1.31.1.1.1.11.808|70|9148640 +1.3.6.1.2.1.31.1.1.1.11.809|70|2968938 +1.3.6.1.2.1.31.1.1.1.11.810|70|12976763 +1.3.6.1.2.1.31.1.1.1.11.811|70|13805490 +1.3.6.1.2.1.31.1.1.1.11.812|70|4726457870 +1.3.6.1.2.1.31.1.1.1.11.813|70|3140937567 +1.3.6.1.2.1.31.1.1.1.11.814|70|3148748220 +1.3.6.1.2.1.31.1.1.1.11.815|70|4736937119 +1.3.6.1.2.1.31.1.1.1.11.816|70|838 +1.3.6.1.2.1.31.1.1.1.11.817|70|1334633735 +1.3.6.1.2.1.31.1.1.1.11.818|70|1340320338 +1.3.6.1.2.1.31.1.1.1.11.819|70|40424097343 +1.3.6.1.2.1.31.1.1.1.11.820|70|168 +1.3.6.1.2.1.31.1.1.1.11.821|70|309 +1.3.6.1.2.1.31.1.1.1.11.822|70|269 +1.3.6.1.2.1.31.1.1.1.11.823|70|0 +1.3.6.1.2.1.31.1.1.1.11.824|70|122 +1.3.6.1.2.1.31.1.1.1.11.825|70|961916 +1.3.6.1.2.1.31.1.1.1.11.826|70|58300 +1.3.6.1.2.1.31.1.1.1.11.827|70|2772 +1.3.6.1.2.1.31.1.1.1.11.828|70|0 +1.3.6.1.2.1.31.1.1.1.11.829|70|0 +1.3.6.1.2.1.31.1.1.1.11.830|70|0 +1.3.6.1.2.1.31.1.1.1.11.831|70|37716028599 +1.3.6.1.2.1.31.1.1.1.11.832|70|62480340 +1.3.6.1.2.1.31.1.1.1.11.833|70|148978790997 +1.3.6.1.2.1.31.1.1.1.11.834|70|148988401483 +1.3.6.1.2.1.31.1.1.1.11.835|70|37724337653 +1.3.6.1.2.1.31.1.1.1.11.836|70|70390742 +1.3.6.1.2.1.31.1.1.1.11.837|70|12562921 +1.3.6.1.2.1.31.1.1.1.11.838|70|22637529 +1.3.6.1.2.1.31.1.1.1.11.839|70|1712 +1.3.6.1.2.1.31.1.1.1.11.840|70|182 +1.3.6.1.2.1.31.1.1.1.11.841|70|131706827 +1.3.6.1.2.1.31.1.1.1.11.842|70|3247432812 +1.3.6.1.2.1.31.1.1.1.11.843|70|3690 +1.3.6.1.2.1.31.1.1.1.11.844|70|8181 +1.3.6.1.2.1.31.1.1.1.11.845|70|11 +1.3.6.1.2.1.31.1.1.1.11.846|70|962980304 +1.3.6.1.2.1.31.1.1.1.11.847|70|8853266673 +1.3.6.1.2.1.31.1.1.1.11.848|70|3257514548 +1.3.6.1.2.1.31.1.1.1.11.849|70|8863239263 +1.3.6.1.2.1.31.1.1.1.11.850|70|970747562 +1.3.6.1.2.1.31.1.1.1.11.851|70|511 +1.3.6.1.2.1.31.1.1.1.11.852|70|10627 +1.3.6.1.2.1.31.1.1.1.11.853|70|179262725 +1.3.6.1.2.1.31.1.1.1.11.854|70|181611532 +1.3.6.1.2.1.31.1.1.1.11.855|70|0 +1.3.6.1.2.1.31.1.1.1.11.856|70|159201 +1.3.6.1.2.1.31.1.1.1.11.857|70|7888 +1.3.6.1.2.1.31.1.1.1.11.858|70|56 +1.3.6.1.2.1.31.1.1.1.11.859|70|0 +1.3.6.1.2.1.31.1.1.1.11.864|70|96 +1.3.6.1.2.1.31.1.1.1.11.868|70|179184 +1.3.6.1.2.1.31.1.1.1.11.869|70|281534228 +1.3.6.1.2.1.31.1.1.1.11.870|70|15834 +1.3.6.1.2.1.31.1.1.1.11.871|70|291521421 +1.3.6.1.2.1.31.1.1.1.11.872|70|10025160 +1.3.6.1.2.1.31.1.1.1.11.873|70|34033 +1.3.6.1.2.1.31.1.1.1.11.874|70|188181008 +1.3.6.1.2.1.31.1.1.1.11.875|70|3266176415 +1.3.6.1.2.1.31.1.1.1.11.876|70|7366735718 +1.3.6.1.2.1.31.1.1.1.11.877|70|946123553 +1.3.6.1.2.1.31.1.1.1.11.878|70|7359149606 +1.3.6.1.2.1.31.1.1.1.11.879|70|936037417 +1.3.6.1.2.1.31.1.1.1.11.880|70|3255740270 +1.3.6.1.2.1.31.1.1.1.11.881|70|177987350 +1.3.6.1.2.1.31.1.1.1.11.882|70|189534312 +1.3.6.1.2.1.31.1.1.1.11.883|70|199834115 +1.3.6.1.2.1.31.1.1.1.11.884|70|114461658 +1.3.6.1.2.1.31.1.1.1.11.885|70|124473383 +1.3.6.1.2.1.31.1.1.1.11.886|70|0 +1.3.6.1.2.1.31.1.1.1.11.887|70|0 +1.3.6.1.2.1.31.1.1.1.11.888|70|1747804253 +1.3.6.1.2.1.31.1.1.1.11.889|70|1698996062 +1.3.6.1.2.1.31.1.1.1.11.890|70|480719586 +1.3.6.1.2.1.31.1.1.1.11.891|70|2618436889 +1.3.6.1.2.1.31.1.1.1.11.892|70|84196 +1.3.6.1.2.1.31.1.1.1.11.893|70|1921 +1.3.6.1.2.1.31.1.1.1.11.894|70|1357 +1.3.6.1.2.1.31.1.1.1.11.895|70|181 +1.3.6.1.2.1.31.1.1.1.11.896|70|28084 +1.3.6.1.2.1.31.1.1.1.11.897|70|4 +1.3.6.1.2.1.31.1.1.1.11.898|70|2262 +1.3.6.1.2.1.31.1.1.1.11.899|70|124 +1.3.6.1.2.1.31.1.1.1.11.900|70|3481758406 +1.3.6.1.2.1.31.1.1.1.11.901|70|3646653148 +1.3.6.1.2.1.31.1.1.1.11.902|70|1739 +1.3.6.1.2.1.31.1.1.1.11.903|70|3886 +1.3.6.1.2.1.31.1.1.1.11.904|70|6724 +1.3.6.1.2.1.31.1.1.1.11.905|70|0 +1.3.6.1.2.1.31.1.1.1.11.906|70|79 +1.3.6.1.2.1.31.1.1.1.11.907|70|3490685866 +1.3.6.1.2.1.31.1.1.1.11.908|70|3653510004 +1.3.6.1.2.1.31.1.1.1.11.909|70|2626617365 +1.3.6.1.2.1.31.1.1.1.11.910|70|199970 +1.3.6.1.2.1.31.1.1.1.11.911|70|714069 +1.3.6.1.2.1.31.1.1.1.11.912|70|21808 +1.3.6.1.2.1.31.1.1.1.11.913|70|682 +1.3.6.1.2.1.31.1.1.1.11.914|70|0 +1.3.6.1.2.1.31.1.1.1.11.915|70|27368 +1.3.6.1.2.1.31.1.1.1.11.916|70|2482906217 +1.3.6.1.2.1.31.1.1.1.11.917|70|1108076778 +1.3.6.1.2.1.31.1.1.1.11.918|70|297494056 +1.3.6.1.2.1.31.1.1.1.11.919|70|1111732737 +1.3.6.1.2.1.31.1.1.1.11.920|70|301121492 +1.3.6.1.2.1.31.1.1.1.11.921|70|2486509771 +1.3.6.1.2.1.31.1.1.1.11.922|70|514341854 +1.3.6.1.2.1.31.1.1.1.11.923|70|198544936 +1.3.6.1.2.1.31.1.1.1.11.924|70|4943123 +1.3.6.1.2.1.31.1.1.1.11.925|70|201215128 +1.3.6.1.2.1.31.1.1.1.11.926|70|7578912 +1.3.6.1.2.1.31.1.1.1.11.927|70|516971572 +1.3.6.1.2.1.31.1.1.1.11.928|70|4 +1.3.6.1.2.1.31.1.1.1.11.929|70|0 +1.3.6.1.2.1.31.1.1.1.11.930|70|5 +1.3.6.1.2.1.31.1.1.1.11.931|70|2 +1.3.6.1.2.1.31.1.1.1.11.932|70|0 +1.3.6.1.2.1.31.1.1.1.11.933|70|0 +1.3.6.1.2.1.31.1.1.1.11.934|70|0 +1.3.6.1.2.1.31.1.1.1.11.935|70|0 +1.3.6.1.2.1.31.1.1.1.11.936|70|0 +1.3.6.1.2.1.31.1.1.1.11.937|70|0 +1.3.6.1.2.1.31.1.1.1.11.938|70|2549854 +1.3.6.1.2.1.31.1.1.1.11.939|70|612028621 +1.3.6.1.2.1.31.1.1.1.11.940|70|2488189 +1.3.6.1.2.1.31.1.1.1.11.941|70|298513516 +1.3.6.1.2.1.31.1.1.1.11.942|70|1193709 +1.3.6.1.2.1.31.1.1.1.11.943|70|610670854 +1.3.6.1.2.1.31.1.1.1.11.944|70|1129575 +1.3.6.1.2.1.31.1.1.1.11.945|70|297153688 +1.3.6.1.2.1.31.1.1.1.11.946|70|803 +1.3.6.1.2.1.31.1.1.1.11.947|70|1190920 +1.3.6.1.2.1.31.1.1.1.11.948|70|1714050 +1.3.6.1.2.1.31.1.1.1.11.949|70|97 +1.3.6.1.2.1.31.1.1.1.12.251|70|0 +1.3.6.1.2.1.31.1.1.1.12.252|70|0 +1.3.6.1.2.1.31.1.1.1.12.254|70|0 +1.3.6.1.2.1.31.1.1.1.12.255|70|0 +1.3.6.1.2.1.31.1.1.1.12.258|70|0 +1.3.6.1.2.1.31.1.1.1.12.259|70|0 +1.3.6.1.2.1.31.1.1.1.12.270|70|0 +1.3.6.1.2.1.31.1.1.1.12.273|70|0 +1.3.6.1.2.1.31.1.1.1.12.274|70|0 +1.3.6.1.2.1.31.1.1.1.12.277|70|0 +1.3.6.1.2.1.31.1.1.1.12.278|70|0 +1.3.6.1.2.1.31.1.1.1.12.280|70|0 +1.3.6.1.2.1.31.1.1.1.12.281|70|0 +1.3.6.1.2.1.31.1.1.1.12.282|70|0 +1.3.6.1.2.1.31.1.1.1.12.283|70|0 +1.3.6.1.2.1.31.1.1.1.12.284|70|0 +1.3.6.1.2.1.31.1.1.1.12.285|70|0 +1.3.6.1.2.1.31.1.1.1.12.286|70|0 +1.3.6.1.2.1.31.1.1.1.12.287|70|0 +1.3.6.1.2.1.31.1.1.1.12.288|70|0 +1.3.6.1.2.1.31.1.1.1.12.395|70|0 +1.3.6.1.2.1.31.1.1.1.12.396|70|0 +1.3.6.1.2.1.31.1.1.1.12.398|70|0 +1.3.6.1.2.1.31.1.1.1.12.399|70|0 +1.3.6.1.2.1.31.1.1.1.12.415|70|0 +1.3.6.1.2.1.31.1.1.1.12.417|70|0 +1.3.6.1.2.1.31.1.1.1.12.418|70|0 +1.3.6.1.2.1.31.1.1.1.12.464|70|0 +1.3.6.1.2.1.31.1.1.1.12.465|70|0 +1.3.6.1.2.1.31.1.1.1.12.477|70|0 +1.3.6.1.2.1.31.1.1.1.12.487|70|0 +1.3.6.1.2.1.31.1.1.1.12.494|70|0 +1.3.6.1.2.1.31.1.1.1.12.495|70|0 +1.3.6.1.2.1.31.1.1.1.12.496|70|0 +1.3.6.1.2.1.31.1.1.1.12.497|70|0 +1.3.6.1.2.1.31.1.1.1.12.506|70|0 +1.3.6.1.2.1.31.1.1.1.12.509|70|0 +1.3.6.1.2.1.31.1.1.1.12.514|70|0 +1.3.6.1.2.1.31.1.1.1.12.515|70|0 +1.3.6.1.2.1.31.1.1.1.12.518|70|0 +1.3.6.1.2.1.31.1.1.1.12.519|70|0 +1.3.6.1.2.1.31.1.1.1.12.520|70|0 +1.3.6.1.2.1.31.1.1.1.12.535|70|0 +1.3.6.1.2.1.31.1.1.1.12.536|70|0 +1.3.6.1.2.1.31.1.1.1.12.538|70|0 +1.3.6.1.2.1.31.1.1.1.12.542|70|0 +1.3.6.1.2.1.31.1.1.1.12.543|70|0 +1.3.6.1.2.1.31.1.1.1.12.544|70|0 +1.3.6.1.2.1.31.1.1.1.12.547|70|2126271681 +1.3.6.1.2.1.31.1.1.1.12.548|70|0 +1.3.6.1.2.1.31.1.1.1.12.549|70|0 +1.3.6.1.2.1.31.1.1.1.12.550|70|337652510 +1.3.6.1.2.1.31.1.1.1.12.551|70|0 +1.3.6.1.2.1.31.1.1.1.12.552|70|0 +1.3.6.1.2.1.31.1.1.1.12.553|70|0 +1.3.6.1.2.1.31.1.1.1.12.554|70|0 +1.3.6.1.2.1.31.1.1.1.12.555|70|98858014 +1.3.6.1.2.1.31.1.1.1.12.556|70|27823740 +1.3.6.1.2.1.31.1.1.1.12.557|70|49844674 +1.3.6.1.2.1.31.1.1.1.12.558|70|49844614 +1.3.6.1.2.1.31.1.1.1.12.559|70|37892172 +1.3.6.1.2.1.31.1.1.1.12.560|70|37526815 +1.3.6.1.2.1.31.1.1.1.12.561|70|109312815 +1.3.6.1.2.1.31.1.1.1.12.562|70|0 +1.3.6.1.2.1.31.1.1.1.12.563|70|109306058 +1.3.6.1.2.1.31.1.1.1.12.564|70|0 +1.3.6.1.2.1.31.1.1.1.12.565|70|82701187 +1.3.6.1.2.1.31.1.1.1.12.566|70|805776070 +1.3.6.1.2.1.31.1.1.1.12.567|70|805867702 +1.3.6.1.2.1.31.1.1.1.12.568|70|806120291 +1.3.6.1.2.1.31.1.1.1.12.569|70|0 +1.3.6.1.2.1.31.1.1.1.12.570|70|779919598 +1.3.6.1.2.1.31.1.1.1.12.571|70|49667959 +1.3.6.1.2.1.31.1.1.1.12.572|70|0 +1.3.6.1.2.1.31.1.1.1.12.573|70|0 +1.3.6.1.2.1.31.1.1.1.12.574|70|0 +1.3.6.1.2.1.31.1.1.1.12.575|70|27621538 +1.3.6.1.2.1.31.1.1.1.12.576|70|0 +1.3.6.1.2.1.31.1.1.1.12.577|70|12290408 +1.3.6.1.2.1.31.1.1.1.12.578|70|1095757 +1.3.6.1.2.1.31.1.1.1.12.579|70|14077686 +1.3.6.1.2.1.31.1.1.1.12.580|70|95828595 +1.3.6.1.2.1.31.1.1.1.12.581|70|95828423 +1.3.6.1.2.1.31.1.1.1.12.582|70|27872220 +1.3.6.1.2.1.31.1.1.1.12.583|70|49666833 +1.3.6.1.2.1.31.1.1.1.12.584|70|109313129 +1.3.6.1.2.1.31.1.1.1.12.585|70|109312877 +1.3.6.1.2.1.31.1.1.1.12.586|70|49667996 +1.3.6.1.2.1.31.1.1.1.12.587|70|49666942 +1.3.6.1.2.1.31.1.1.1.12.588|70|504737403 +1.3.6.1.2.1.31.1.1.1.12.589|70|603474684 +1.3.6.1.2.1.31.1.1.1.12.590|70|27872168 +1.3.6.1.2.1.31.1.1.1.12.591|70|27872154 +1.3.6.1.2.1.31.1.1.1.12.592|70|0 +1.3.6.1.2.1.31.1.1.1.12.593|70|0 +1.3.6.1.2.1.31.1.1.1.12.594|70|0 +1.3.6.1.2.1.31.1.1.1.12.595|70|49275607 +1.3.6.1.2.1.31.1.1.1.12.596|70|0 +1.3.6.1.2.1.31.1.1.1.12.597|70|0 +1.3.6.1.2.1.31.1.1.1.12.598|70|0 +1.3.6.1.2.1.31.1.1.1.12.599|70|0 +1.3.6.1.2.1.31.1.1.1.12.600|70|49667995 +1.3.6.1.2.1.31.1.1.1.12.601|70|27823739 +1.3.6.1.2.1.31.1.1.1.12.602|70|0 +1.3.6.1.2.1.31.1.1.1.12.603|70|49667552 +1.3.6.1.2.1.31.1.1.1.12.604|70|113868615 +1.3.6.1.2.1.31.1.1.1.12.605|70|0 +1.3.6.1.2.1.31.1.1.1.12.606|70|0 +1.3.6.1.2.1.31.1.1.1.12.607|70|0 +1.3.6.1.2.1.31.1.1.1.12.608|70|0 +1.3.6.1.2.1.31.1.1.1.12.609|70|0 +1.3.6.1.2.1.31.1.1.1.12.610|70|109312750 +1.3.6.1.2.1.31.1.1.1.12.611|70|0 +1.3.6.1.2.1.31.1.1.1.12.612|70|109312830 +1.3.6.1.2.1.31.1.1.1.12.613|70|109312787 +1.3.6.1.2.1.31.1.1.1.12.614|70|109312752 +1.3.6.1.2.1.31.1.1.1.12.615|70|3421065 +1.3.6.1.2.1.31.1.1.1.12.616|70|109185823 +1.3.6.1.2.1.31.1.1.1.12.617|70|109312774 +1.3.6.1.2.1.31.1.1.1.12.618|70|49667591 +1.3.6.1.2.1.31.1.1.1.12.619|70|109312734 +1.3.6.1.2.1.31.1.1.1.12.620|70|108509835 +1.3.6.1.2.1.31.1.1.1.12.621|70|0 +1.3.6.1.2.1.31.1.1.1.12.622|70|36854750 +1.3.6.1.2.1.31.1.1.1.12.623|70|0 +1.3.6.1.2.1.31.1.1.1.12.624|70|11504135 +1.3.6.1.2.1.31.1.1.1.12.625|70|0 +1.3.6.1.2.1.31.1.1.1.12.626|70|49844413 +1.3.6.1.2.1.31.1.1.1.12.627|70|49667565 +1.3.6.1.2.1.31.1.1.1.12.628|70|0 +1.3.6.1.2.1.31.1.1.1.12.629|70|49668203 +1.3.6.1.2.1.31.1.1.1.12.630|70|0 +1.3.6.1.2.1.31.1.1.1.12.631|70|0 +1.3.6.1.2.1.31.1.1.1.12.632|70|49665976 +1.3.6.1.2.1.31.1.1.1.12.633|70|2557879229 +1.3.6.1.2.1.31.1.1.1.12.634|70|607460359 +1.3.6.1.2.1.31.1.1.1.12.635|70|0 +1.3.6.1.2.1.31.1.1.1.12.636|70|71980 +1.3.6.1.2.1.31.1.1.1.12.637|70|0 +1.3.6.1.2.1.31.1.1.1.12.638|70|515304102 +1.3.6.1.2.1.31.1.1.1.12.639|70|0 +1.3.6.1.2.1.31.1.1.1.12.640|70|0 +1.3.6.1.2.1.31.1.1.1.12.641|70|11238367 +1.3.6.1.2.1.31.1.1.1.12.642|70|13487652 +1.3.6.1.2.1.31.1.1.1.12.643|70|0 +1.3.6.1.2.1.31.1.1.1.12.644|70|109312735 +1.3.6.1.2.1.31.1.1.1.12.645|70|0 +1.3.6.1.2.1.31.1.1.1.12.646|70|0 +1.3.6.1.2.1.31.1.1.1.12.647|70|13946042 +1.3.6.1.2.1.31.1.1.1.12.648|70|0 +1.3.6.1.2.1.31.1.1.1.12.649|70|603472267 +1.3.6.1.2.1.31.1.1.1.12.650|70|0 +1.3.6.1.2.1.31.1.1.1.12.651|70|480580154 +1.3.6.1.2.1.31.1.1.1.12.652|70|0 +1.3.6.1.2.1.31.1.1.1.12.653|70|0 +1.3.6.1.2.1.31.1.1.1.12.654|70|0 +1.3.6.1.2.1.31.1.1.1.12.655|70|0 +1.3.6.1.2.1.31.1.1.1.12.656|70|602564654 +1.3.6.1.2.1.31.1.1.1.12.657|70|603472512 +1.3.6.1.2.1.31.1.1.1.12.658|70|0 +1.3.6.1.2.1.31.1.1.1.12.659|70|49668301 +1.3.6.1.2.1.31.1.1.1.12.660|70|603472510 +1.3.6.1.2.1.31.1.1.1.12.661|70|11544097 +1.3.6.1.2.1.31.1.1.1.12.662|70|52693488 +1.3.6.1.2.1.31.1.1.1.12.663|70|49844541 +1.3.6.1.2.1.31.1.1.1.12.664|70|603472373 +1.3.6.1.2.1.31.1.1.1.12.665|70|601147498 +1.3.6.1.2.1.31.1.1.1.12.666|70|49844485 +1.3.6.1.2.1.31.1.1.1.12.667|70|49844482 +1.3.6.1.2.1.31.1.1.1.12.668|70|0 +1.3.6.1.2.1.31.1.1.1.12.669|70|51069054 +1.3.6.1.2.1.31.1.1.1.12.670|70|110714159 +1.3.6.1.2.1.31.1.1.1.12.671|70|0 +1.3.6.1.2.1.31.1.1.1.12.672|70|0 +1.3.6.1.2.1.31.1.1.1.12.673|70|0 +1.3.6.1.2.1.31.1.1.1.12.674|70|110713703 +1.3.6.1.2.1.31.1.1.1.12.675|70|0 +1.3.6.1.2.1.31.1.1.1.12.676|70|0 +1.3.6.1.2.1.31.1.1.1.12.677|70|13490950 +1.3.6.1.2.1.31.1.1.1.12.678|70|0 +1.3.6.1.2.1.31.1.1.1.12.679|70|110712158 +1.3.6.1.2.1.31.1.1.1.12.680|70|110714156 +1.3.6.1.2.1.31.1.1.1.12.681|70|0 +1.3.6.1.2.1.31.1.1.1.12.682|70|0 +1.3.6.1.2.1.31.1.1.1.12.683|70|0 +1.3.6.1.2.1.31.1.1.1.12.684|70|0 +1.3.6.1.2.1.31.1.1.1.12.685|70|15063574 +1.3.6.1.2.1.31.1.1.1.12.686|70|51069053 +1.3.6.1.2.1.31.1.1.1.12.687|70|51067103 +1.3.6.1.2.1.31.1.1.1.12.688|70|51069076 +1.3.6.1.2.1.31.1.1.1.12.689|70|51066887 +1.3.6.1.2.1.31.1.1.1.12.690|70|51067929 +1.3.6.1.2.1.31.1.1.1.12.691|70|51069177 +1.3.6.1.2.1.31.1.1.1.12.692|70|0 +1.3.6.1.2.1.31.1.1.1.12.693|70|0 +1.3.6.1.2.1.31.1.1.1.12.694|70|0 +1.3.6.1.2.1.31.1.1.1.12.695|70|4316498 +1.3.6.1.2.1.31.1.1.1.12.696|70|448852899 +1.3.6.1.2.1.31.1.1.1.12.697|70|20866634 +1.3.6.1.2.1.31.1.1.1.12.698|70|0 +1.3.6.1.2.1.31.1.1.1.12.699|70|0 +1.3.6.1.2.1.31.1.1.1.12.700|70|0 +1.3.6.1.2.1.31.1.1.1.12.701|70|0 +1.3.6.1.2.1.31.1.1.1.12.702|70|0 +1.3.6.1.2.1.31.1.1.1.12.703|70|0 +1.3.6.1.2.1.31.1.1.1.12.704|70|515305600 +1.3.6.1.2.1.31.1.1.1.12.705|70|515305802 +1.3.6.1.2.1.31.1.1.1.12.706|70|561719253 +1.3.6.1.2.1.31.1.1.1.12.707|70|49665709 +1.3.6.1.2.1.31.1.1.1.12.708|70|3651743264 +1.3.6.1.2.1.31.1.1.1.12.709|70|515305715 +1.3.6.1.2.1.31.1.1.1.12.710|70|515305741 +1.3.6.1.2.1.31.1.1.1.12.711|70|0 +1.3.6.1.2.1.31.1.1.1.12.712|70|558954905 +1.3.6.1.2.1.31.1.1.1.12.713|70|565743504 +1.3.6.1.2.1.31.1.1.1.12.714|70|564339562 +1.3.6.1.2.1.31.1.1.1.12.715|70|0 +1.3.6.1.2.1.31.1.1.1.12.716|70|0 +1.3.6.1.2.1.31.1.1.1.12.717|70|51069246 +1.3.6.1.2.1.31.1.1.1.12.718|70|51067653 +1.3.6.1.2.1.31.1.1.1.12.719|70|49669069 +1.3.6.1.2.1.31.1.1.1.12.720|70|0 +1.3.6.1.2.1.31.1.1.1.12.721|70|51069167 +1.3.6.1.2.1.31.1.1.1.12.722|70|110714322 +1.3.6.1.2.1.31.1.1.1.12.723|70|70511521 +1.3.6.1.2.1.31.1.1.1.12.724|70|115269598 +1.3.6.1.2.1.31.1.1.1.12.725|70|51067842 +1.3.6.1.2.1.31.1.1.1.12.726|70|0 +1.3.6.1.2.1.31.1.1.1.12.727|70|14888028 +1.3.6.1.2.1.31.1.1.1.12.728|70|0 +1.3.6.1.2.1.31.1.1.1.12.729|70|49844531 +1.3.6.1.2.1.31.1.1.1.12.730|70|52693549 +1.3.6.1.2.1.31.1.1.1.12.731|70|11503048 +1.3.6.1.2.1.31.1.1.1.12.732|70|12693538 +1.3.6.1.2.1.31.1.1.1.12.733|70|61176903 +1.3.6.1.2.1.31.1.1.1.12.734|70|2720758 +1.3.6.1.2.1.31.1.1.1.12.735|70|12272872 +1.3.6.1.2.1.31.1.1.1.12.736|70|33111948 +1.3.6.1.2.1.31.1.1.1.12.737|70|37812665 +1.3.6.1.2.1.31.1.1.1.12.738|70|0 +1.3.6.1.2.1.31.1.1.1.12.739|70|452277883 +1.3.6.1.2.1.31.1.1.1.12.740|70|376238551 +1.3.6.1.2.1.31.1.1.1.12.741|70|0 +1.3.6.1.2.1.31.1.1.1.12.742|70|471938764 +1.3.6.1.2.1.31.1.1.1.12.743|70|0 +1.3.6.1.2.1.31.1.1.1.12.744|70|0 +1.3.6.1.2.1.31.1.1.1.12.745|70|49669046 +1.3.6.1.2.1.31.1.1.1.12.746|70|0 +1.3.6.1.2.1.31.1.1.1.12.747|70|0 +1.3.6.1.2.1.31.1.1.1.12.748|70|452277840 +1.3.6.1.2.1.31.1.1.1.12.749|70|11860722 +1.3.6.1.2.1.31.1.1.1.12.750|70|3411580 +1.3.6.1.2.1.31.1.1.1.12.751|70|110714312 +1.3.6.1.2.1.31.1.1.1.12.769|70|0 +1.3.6.1.2.1.31.1.1.1.12.770|70|0 +1.3.6.1.2.1.31.1.1.1.12.774|70|0 +1.3.6.1.2.1.31.1.1.1.12.775|70|0 +1.3.6.1.2.1.31.1.1.1.12.776|70|0 +1.3.6.1.2.1.31.1.1.1.12.785|70|0 +1.3.6.1.2.1.31.1.1.1.12.792|70|0 +1.3.6.1.2.1.31.1.1.1.12.793|70|0 +1.3.6.1.2.1.31.1.1.1.12.794|70|0 +1.3.6.1.2.1.31.1.1.1.12.801|70|0 +1.3.6.1.2.1.31.1.1.1.12.802|70|0 +1.3.6.1.2.1.31.1.1.1.12.803|70|0 +1.3.6.1.2.1.31.1.1.1.12.804|70|0 +1.3.6.1.2.1.31.1.1.1.12.805|70|0 +1.3.6.1.2.1.31.1.1.1.12.806|70|0 +1.3.6.1.2.1.31.1.1.1.12.807|70|0 +1.3.6.1.2.1.31.1.1.1.12.810|70|0 +1.3.6.1.2.1.31.1.1.1.12.811|70|0 +1.3.6.1.2.1.31.1.1.1.12.814|70|0 +1.3.6.1.2.1.31.1.1.1.12.815|70|0 +1.3.6.1.2.1.31.1.1.1.12.818|70|0 +1.3.6.1.2.1.31.1.1.1.12.834|70|0 +1.3.6.1.2.1.31.1.1.1.12.835|70|0 +1.3.6.1.2.1.31.1.1.1.12.836|70|0 +1.3.6.1.2.1.31.1.1.1.12.838|70|0 +1.3.6.1.2.1.31.1.1.1.12.848|70|0 +1.3.6.1.2.1.31.1.1.1.12.849|70|0 +1.3.6.1.2.1.31.1.1.1.12.850|70|0 +1.3.6.1.2.1.31.1.1.1.12.854|70|0 +1.3.6.1.2.1.31.1.1.1.12.871|70|0 +1.3.6.1.2.1.31.1.1.1.12.872|70|0 +1.3.6.1.2.1.31.1.1.1.12.874|70|0 +1.3.6.1.2.1.31.1.1.1.12.875|70|0 +1.3.6.1.2.1.31.1.1.1.12.876|70|0 +1.3.6.1.2.1.31.1.1.1.12.877|70|0 +1.3.6.1.2.1.31.1.1.1.12.883|70|0 +1.3.6.1.2.1.31.1.1.1.12.885|70|0 +1.3.6.1.2.1.31.1.1.1.12.907|70|0 +1.3.6.1.2.1.31.1.1.1.12.908|70|0 +1.3.6.1.2.1.31.1.1.1.12.909|70|0 +1.3.6.1.2.1.31.1.1.1.12.919|70|0 +1.3.6.1.2.1.31.1.1.1.12.920|70|0 +1.3.6.1.2.1.31.1.1.1.12.921|70|0 +1.3.6.1.2.1.31.1.1.1.12.925|70|0 +1.3.6.1.2.1.31.1.1.1.12.926|70|0 +1.3.6.1.2.1.31.1.1.1.12.927|70|0 +1.3.6.1.2.1.31.1.1.1.12.938|70|0 +1.3.6.1.2.1.31.1.1.1.12.939|70|0 +1.3.6.1.2.1.31.1.1.1.12.940|70|0 +1.3.6.1.2.1.31.1.1.1.12.941|70|0 +1.3.6.1.2.1.31.1.1.1.12.947|70|0 +1.3.6.1.2.1.31.1.1.1.12.948|70|0 +1.3.6.1.2.1.31.1.1.1.13.251|70|0 +1.3.6.1.2.1.31.1.1.1.13.252|70|0 +1.3.6.1.2.1.31.1.1.1.13.254|70|0 +1.3.6.1.2.1.31.1.1.1.13.255|70|0 +1.3.6.1.2.1.31.1.1.1.13.258|70|0 +1.3.6.1.2.1.31.1.1.1.13.259|70|0 +1.3.6.1.2.1.31.1.1.1.13.270|70|0 +1.3.6.1.2.1.31.1.1.1.13.273|70|0 +1.3.6.1.2.1.31.1.1.1.13.274|70|0 +1.3.6.1.2.1.31.1.1.1.13.277|70|0 +1.3.6.1.2.1.31.1.1.1.13.278|70|0 +1.3.6.1.2.1.31.1.1.1.13.280|70|0 +1.3.6.1.2.1.31.1.1.1.13.281|70|0 +1.3.6.1.2.1.31.1.1.1.13.282|70|0 +1.3.6.1.2.1.31.1.1.1.13.283|70|0 +1.3.6.1.2.1.31.1.1.1.13.284|70|0 +1.3.6.1.2.1.31.1.1.1.13.285|70|0 +1.3.6.1.2.1.31.1.1.1.13.286|70|0 +1.3.6.1.2.1.31.1.1.1.13.287|70|0 +1.3.6.1.2.1.31.1.1.1.13.288|70|0 +1.3.6.1.2.1.31.1.1.1.13.395|70|0 +1.3.6.1.2.1.31.1.1.1.13.396|70|0 +1.3.6.1.2.1.31.1.1.1.13.398|70|0 +1.3.6.1.2.1.31.1.1.1.13.399|70|0 +1.3.6.1.2.1.31.1.1.1.13.415|70|0 +1.3.6.1.2.1.31.1.1.1.13.417|70|0 +1.3.6.1.2.1.31.1.1.1.13.418|70|0 +1.3.6.1.2.1.31.1.1.1.13.464|70|0 +1.3.6.1.2.1.31.1.1.1.13.465|70|0 +1.3.6.1.2.1.31.1.1.1.13.477|70|0 +1.3.6.1.2.1.31.1.1.1.13.487|70|2601637894 +1.3.6.1.2.1.31.1.1.1.13.494|70|0 +1.3.6.1.2.1.31.1.1.1.13.495|70|0 +1.3.6.1.2.1.31.1.1.1.13.496|70|0 +1.3.6.1.2.1.31.1.1.1.13.497|70|7469281118 +1.3.6.1.2.1.31.1.1.1.13.506|70|0 +1.3.6.1.2.1.31.1.1.1.13.509|70|0 +1.3.6.1.2.1.31.1.1.1.13.514|70|0 +1.3.6.1.2.1.31.1.1.1.13.515|70|0 +1.3.6.1.2.1.31.1.1.1.13.518|70|0 +1.3.6.1.2.1.31.1.1.1.13.519|70|0 +1.3.6.1.2.1.31.1.1.1.13.520|70|0 +1.3.6.1.2.1.31.1.1.1.13.535|70|0 +1.3.6.1.2.1.31.1.1.1.13.536|70|0 +1.3.6.1.2.1.31.1.1.1.13.538|70|0 +1.3.6.1.2.1.31.1.1.1.13.542|70|0 +1.3.6.1.2.1.31.1.1.1.13.543|70|0 +1.3.6.1.2.1.31.1.1.1.13.544|70|0 +1.3.6.1.2.1.31.1.1.1.13.547|70|63701602 +1.3.6.1.2.1.31.1.1.1.13.548|70|25966 +1.3.6.1.2.1.31.1.1.1.13.549|70|25966 +1.3.6.1.2.1.31.1.1.1.13.550|70|74249094 +1.3.6.1.2.1.31.1.1.1.13.551|70|25966 +1.3.6.1.2.1.31.1.1.1.13.552|70|25966 +1.3.6.1.2.1.31.1.1.1.13.553|70|25966 +1.3.6.1.2.1.31.1.1.1.13.554|70|25966 +1.3.6.1.2.1.31.1.1.1.13.555|70|1773002064 +1.3.6.1.2.1.31.1.1.1.13.556|70|93 +1.3.6.1.2.1.31.1.1.1.13.557|70|91289329 +1.3.6.1.2.1.31.1.1.1.13.558|70|91289329 +1.3.6.1.2.1.31.1.1.1.13.559|70|71235461 +1.3.6.1.2.1.31.1.1.1.13.560|70|69083488 +1.3.6.1.2.1.31.1.1.1.13.561|70|2037326580 +1.3.6.1.2.1.31.1.1.1.13.562|70|26355 +1.3.6.1.2.1.31.1.1.1.13.563|70|2036903874 +1.3.6.1.2.1.31.1.1.1.13.564|70|0 +1.3.6.1.2.1.31.1.1.1.13.565|70|837695366 +1.3.6.1.2.1.31.1.1.1.13.566|70|3256214615 +1.3.6.1.2.1.31.1.1.1.13.567|70|3254417707 +1.3.6.1.2.1.31.1.1.1.13.568|70|3256215006 +1.3.6.1.2.1.31.1.1.1.13.569|70|0 +1.3.6.1.2.1.31.1.1.1.13.570|70|3252834626 +1.3.6.1.2.1.31.1.1.1.13.571|70|91243049 +1.3.6.1.2.1.31.1.1.1.13.572|70|0 +1.3.6.1.2.1.31.1.1.1.13.573|70|26355 +1.3.6.1.2.1.31.1.1.1.13.574|70|0 +1.3.6.1.2.1.31.1.1.1.13.575|70|2075824 +1.3.6.1.2.1.31.1.1.1.13.576|70|0 +1.3.6.1.2.1.31.1.1.1.13.577|70|16 +1.3.6.1.2.1.31.1.1.1.13.578|70|4 +1.3.6.1.2.1.31.1.1.1.13.579|70|10140143 +1.3.6.1.2.1.31.1.1.1.13.580|70|1846368304 +1.3.6.1.2.1.31.1.1.1.13.581|70|1846389539 +1.3.6.1.2.1.31.1.1.1.13.582|70|2090018 +1.3.6.1.2.1.31.1.1.1.13.583|70|91241225 +1.3.6.1.2.1.31.1.1.1.13.584|70|2037344579 +1.3.6.1.2.1.31.1.1.1.13.585|70|2037330947 +1.3.6.1.2.1.31.1.1.1.13.586|70|91243669 +1.3.6.1.2.1.31.1.1.1.13.587|70|91241250 +1.3.6.1.2.1.31.1.1.1.13.588|70|3058976479 +1.3.6.1.2.1.31.1.1.1.13.589|70|3183330377 +1.3.6.1.2.1.31.1.1.1.13.590|70|2090021 +1.3.6.1.2.1.31.1.1.1.13.591|70|2090017 +1.3.6.1.2.1.31.1.1.1.13.592|70|0 +1.3.6.1.2.1.31.1.1.1.13.593|70|0 +1.3.6.1.2.1.31.1.1.1.13.594|70|0 +1.3.6.1.2.1.31.1.1.1.13.595|70|91238086 +1.3.6.1.2.1.31.1.1.1.13.596|70|0 +1.3.6.1.2.1.31.1.1.1.13.597|70|0 +1.3.6.1.2.1.31.1.1.1.13.598|70|0 +1.3.6.1.2.1.31.1.1.1.13.599|70|0 +1.3.6.1.2.1.31.1.1.1.13.600|70|91244532 +1.3.6.1.2.1.31.1.1.1.13.601|70|29 +1.3.6.1.2.1.31.1.1.1.13.602|70|26355 +1.3.6.1.2.1.31.1.1.1.13.603|70|91241939 +1.3.6.1.2.1.31.1.1.1.13.604|70|2037105549 +1.3.6.1.2.1.31.1.1.1.13.605|70|0 +1.3.6.1.2.1.31.1.1.1.13.606|70|0 +1.3.6.1.2.1.31.1.1.1.13.607|70|0 +1.3.6.1.2.1.31.1.1.1.13.608|70|0 +1.3.6.1.2.1.31.1.1.1.13.609|70|0 +1.3.6.1.2.1.31.1.1.1.13.610|70|2037338322 +1.3.6.1.2.1.31.1.1.1.13.611|70|0 +1.3.6.1.2.1.31.1.1.1.13.612|70|2037338335 +1.3.6.1.2.1.31.1.1.1.13.613|70|2037338358 +1.3.6.1.2.1.31.1.1.1.13.614|70|2037332320 +1.3.6.1.2.1.31.1.1.1.13.615|70|40 +1.3.6.1.2.1.31.1.1.1.13.616|70|2037240872 +1.3.6.1.2.1.31.1.1.1.13.617|70|2037338297 +1.3.6.1.2.1.31.1.1.1.13.618|70|91241967 +1.3.6.1.2.1.31.1.1.1.13.619|70|2037338296 +1.3.6.1.2.1.31.1.1.1.13.620|70|2012163246 +1.3.6.1.2.1.31.1.1.1.13.621|70|0 +1.3.6.1.2.1.31.1.1.1.13.622|70|76508401 +1.3.6.1.2.1.31.1.1.1.13.623|70|0 +1.3.6.1.2.1.31.1.1.1.13.624|70|65 +1.3.6.1.2.1.31.1.1.1.13.625|70|0 +1.3.6.1.2.1.31.1.1.1.13.626|70|91288483 +1.3.6.1.2.1.31.1.1.1.13.627|70|91243275 +1.3.6.1.2.1.31.1.1.1.13.628|70|0 +1.3.6.1.2.1.31.1.1.1.13.629|70|91245043 +1.3.6.1.2.1.31.1.1.1.13.630|70|0 +1.3.6.1.2.1.31.1.1.1.13.631|70|0 +1.3.6.1.2.1.31.1.1.1.13.632|70|91238494 +1.3.6.1.2.1.31.1.1.1.13.633|70|1605421290 +1.3.6.1.2.1.31.1.1.1.13.634|70|1031709086 +1.3.6.1.2.1.31.1.1.1.13.635|70|0 +1.3.6.1.2.1.31.1.1.1.13.636|70|1579305 +1.3.6.1.2.1.31.1.1.1.13.637|70|0 +1.3.6.1.2.1.31.1.1.1.13.638|70|3067042773 +1.3.6.1.2.1.31.1.1.1.13.639|70|0 +1.3.6.1.2.1.31.1.1.1.13.640|70|0 +1.3.6.1.2.1.31.1.1.1.13.641|70|20298328 +1.3.6.1.2.1.31.1.1.1.13.642|70|128276 +1.3.6.1.2.1.31.1.1.1.13.643|70|0 +1.3.6.1.2.1.31.1.1.1.13.644|70|2037267369 +1.3.6.1.2.1.31.1.1.1.13.645|70|0 +1.3.6.1.2.1.31.1.1.1.13.646|70|0 +1.3.6.1.2.1.31.1.1.1.13.647|70|982895 +1.3.6.1.2.1.31.1.1.1.13.648|70|0 +1.3.6.1.2.1.31.1.1.1.13.649|70|3183320470 +1.3.6.1.2.1.31.1.1.1.13.650|70|26617 +1.3.6.1.2.1.31.1.1.1.13.651|70|1189426581 +1.3.6.1.2.1.31.1.1.1.13.652|70|0 +1.3.6.1.2.1.31.1.1.1.13.653|70|0 +1.3.6.1.2.1.31.1.1.1.13.654|70|26269 +1.3.6.1.2.1.31.1.1.1.13.655|70|26367 +1.3.6.1.2.1.31.1.1.1.13.656|70|3167380576 +1.3.6.1.2.1.31.1.1.1.13.657|70|3183317740 +1.3.6.1.2.1.31.1.1.1.13.658|70|0 +1.3.6.1.2.1.31.1.1.1.13.659|70|91245743 +1.3.6.1.2.1.31.1.1.1.13.660|70|3183317007 +1.3.6.1.2.1.31.1.1.1.13.661|70|1529897 +1.3.6.1.2.1.31.1.1.1.13.662|70|90889887 +1.3.6.1.2.1.31.1.1.1.13.663|70|91288664 +1.3.6.1.2.1.31.1.1.1.13.664|70|3183076729 +1.3.6.1.2.1.31.1.1.1.13.665|70|3175811096 +1.3.6.1.2.1.31.1.1.1.13.666|70|91288717 +1.3.6.1.2.1.31.1.1.1.13.667|70|91288749 +1.3.6.1.2.1.31.1.1.1.13.668|70|0 +1.3.6.1.2.1.31.1.1.1.13.669|70|91244564 +1.3.6.1.2.1.31.1.1.1.13.670|70|2037339366 +1.3.6.1.2.1.31.1.1.1.13.671|70|0 +1.3.6.1.2.1.31.1.1.1.13.672|70|0 +1.3.6.1.2.1.31.1.1.1.13.673|70|0 +1.3.6.1.2.1.31.1.1.1.13.674|70|2037315139 +1.3.6.1.2.1.31.1.1.1.13.675|70|0 +1.3.6.1.2.1.31.1.1.1.13.676|70|26479 +1.3.6.1.2.1.31.1.1.1.13.677|70|128397 +1.3.6.1.2.1.31.1.1.1.13.678|70|0 +1.3.6.1.2.1.31.1.1.1.13.679|70|2033676195 +1.3.6.1.2.1.31.1.1.1.13.680|70|2037339235 +1.3.6.1.2.1.31.1.1.1.13.681|70|0 +1.3.6.1.2.1.31.1.1.1.13.682|70|26479 +1.3.6.1.2.1.31.1.1.1.13.683|70|0 +1.3.6.1.2.1.31.1.1.1.13.684|70|0 +1.3.6.1.2.1.31.1.1.1.13.685|70|128336 +1.3.6.1.2.1.31.1.1.1.13.686|70|91242262 +1.3.6.1.2.1.31.1.1.1.13.687|70|91238211 +1.3.6.1.2.1.31.1.1.1.13.688|70|91242164 +1.3.6.1.2.1.31.1.1.1.13.689|70|91237707 +1.3.6.1.2.1.31.1.1.1.13.690|70|91240393 +1.3.6.1.2.1.31.1.1.1.13.691|70|91242600 +1.3.6.1.2.1.31.1.1.1.13.692|70|0 +1.3.6.1.2.1.31.1.1.1.13.693|70|0 +1.3.6.1.2.1.31.1.1.1.13.694|70|0 +1.3.6.1.2.1.31.1.1.1.13.695|70|94122272 +1.3.6.1.2.1.31.1.1.1.13.696|70|2612396680 +1.3.6.1.2.1.31.1.1.1.13.697|70|819705 +1.3.6.1.2.1.31.1.1.1.13.698|70|0 +1.3.6.1.2.1.31.1.1.1.13.699|70|0 +1.3.6.1.2.1.31.1.1.1.13.700|70|0 +1.3.6.1.2.1.31.1.1.1.13.701|70|0 +1.3.6.1.2.1.31.1.1.1.13.702|70|0 +1.3.6.1.2.1.31.1.1.1.13.703|70|26479 +1.3.6.1.2.1.31.1.1.1.13.704|70|3067049029 +1.3.6.1.2.1.31.1.1.1.13.705|70|3067031812 +1.3.6.1.2.1.31.1.1.1.13.706|70|3093957830 +1.3.6.1.2.1.31.1.1.1.13.707|70|91238013 +1.3.6.1.2.1.31.1.1.1.13.708|70|3839697480 +1.3.6.1.2.1.31.1.1.1.13.709|70|3067049428 +1.3.6.1.2.1.31.1.1.1.13.710|70|3067049344 +1.3.6.1.2.1.31.1.1.1.13.711|70|0 +1.3.6.1.2.1.31.1.1.1.13.712|70|3068976539 +1.3.6.1.2.1.31.1.1.1.13.713|70|3106224509 +1.3.6.1.2.1.31.1.1.1.13.714|70|3102718783 +1.3.6.1.2.1.31.1.1.1.13.715|70|26360 +1.3.6.1.2.1.31.1.1.1.13.716|70|0 +1.3.6.1.2.1.31.1.1.1.13.717|70|91242904 +1.3.6.1.2.1.31.1.1.1.13.718|70|91240011 +1.3.6.1.2.1.31.1.1.1.13.719|70|91248900 +1.3.6.1.2.1.31.1.1.1.13.720|70|0 +1.3.6.1.2.1.31.1.1.1.13.721|70|91242900 +1.3.6.1.2.1.31.1.1.1.13.722|70|2037342166 +1.3.6.1.2.1.31.1.1.1.13.723|70|579433356 +1.3.6.1.2.1.31.1.1.1.13.724|70|2037180583 +1.3.6.1.2.1.31.1.1.1.13.725|70|91240402 +1.3.6.1.2.1.31.1.1.1.13.726|70|26360 +1.3.6.1.2.1.31.1.1.1.13.727|70|128388 +1.3.6.1.2.1.31.1.1.1.13.728|70|0 +1.3.6.1.2.1.31.1.1.1.13.729|70|91289086 +1.3.6.1.2.1.31.1.1.1.13.730|70|90767546 +1.3.6.1.2.1.31.1.1.1.13.731|70|145 +1.3.6.1.2.1.31.1.1.1.13.732|70|188388498 +1.3.6.1.2.1.31.1.1.1.13.733|70|20218061 +1.3.6.1.2.1.31.1.1.1.13.734|70|146 +1.3.6.1.2.1.31.1.1.1.13.735|70|166 +1.3.6.1.2.1.31.1.1.1.13.736|70|10264 +1.3.6.1.2.1.31.1.1.1.13.737|70|8075400 +1.3.6.1.2.1.31.1.1.1.13.738|70|26360 +1.3.6.1.2.1.31.1.1.1.13.739|70|3062188473 +1.3.6.1.2.1.31.1.1.1.13.740|70|1304307040 +1.3.6.1.2.1.31.1.1.1.13.741|70|0 +1.3.6.1.2.1.31.1.1.1.13.742|70|3061447838 +1.3.6.1.2.1.31.1.1.1.13.743|70|0 +1.3.6.1.2.1.31.1.1.1.13.744|70|0 +1.3.6.1.2.1.31.1.1.1.13.745|70|91248865 +1.3.6.1.2.1.31.1.1.1.13.746|70|0 +1.3.6.1.2.1.31.1.1.1.13.747|70|26360 +1.3.6.1.2.1.31.1.1.1.13.748|70|3062182736 +1.3.6.1.2.1.31.1.1.1.13.749|70|2603265 +1.3.6.1.2.1.31.1.1.1.13.750|70|12 +1.3.6.1.2.1.31.1.1.1.13.751|70|2037271622 +1.3.6.1.2.1.31.1.1.1.13.769|70|0 +1.3.6.1.2.1.31.1.1.1.13.770|70|0 +1.3.6.1.2.1.31.1.1.1.13.774|70|0 +1.3.6.1.2.1.31.1.1.1.13.775|70|0 +1.3.6.1.2.1.31.1.1.1.13.776|70|0 +1.3.6.1.2.1.31.1.1.1.13.785|70|0 +1.3.6.1.2.1.31.1.1.1.13.792|70|0 +1.3.6.1.2.1.31.1.1.1.13.793|70|0 +1.3.6.1.2.1.31.1.1.1.13.794|70|0 +1.3.6.1.2.1.31.1.1.1.13.801|70|0 +1.3.6.1.2.1.31.1.1.1.13.802|70|0 +1.3.6.1.2.1.31.1.1.1.13.803|70|0 +1.3.6.1.2.1.31.1.1.1.13.804|70|0 +1.3.6.1.2.1.31.1.1.1.13.805|70|0 +1.3.6.1.2.1.31.1.1.1.13.806|70|0 +1.3.6.1.2.1.31.1.1.1.13.807|70|0 +1.3.6.1.2.1.31.1.1.1.13.810|70|0 +1.3.6.1.2.1.31.1.1.1.13.811|70|0 +1.3.6.1.2.1.31.1.1.1.13.814|70|0 +1.3.6.1.2.1.31.1.1.1.13.815|70|0 +1.3.6.1.2.1.31.1.1.1.13.818|70|0 +1.3.6.1.2.1.31.1.1.1.13.834|70|0 +1.3.6.1.2.1.31.1.1.1.13.835|70|0 +1.3.6.1.2.1.31.1.1.1.13.836|70|0 +1.3.6.1.2.1.31.1.1.1.13.838|70|0 +1.3.6.1.2.1.31.1.1.1.13.848|70|0 +1.3.6.1.2.1.31.1.1.1.13.849|70|0 +1.3.6.1.2.1.31.1.1.1.13.850|70|0 +1.3.6.1.2.1.31.1.1.1.13.854|70|0 +1.3.6.1.2.1.31.1.1.1.13.871|70|0 +1.3.6.1.2.1.31.1.1.1.13.872|70|0 +1.3.6.1.2.1.31.1.1.1.13.874|70|0 +1.3.6.1.2.1.31.1.1.1.13.875|70|0 +1.3.6.1.2.1.31.1.1.1.13.876|70|0 +1.3.6.1.2.1.31.1.1.1.13.877|70|0 +1.3.6.1.2.1.31.1.1.1.13.883|70|0 +1.3.6.1.2.1.31.1.1.1.13.885|70|0 +1.3.6.1.2.1.31.1.1.1.13.907|70|0 +1.3.6.1.2.1.31.1.1.1.13.908|70|0 +1.3.6.1.2.1.31.1.1.1.13.909|70|0 +1.3.6.1.2.1.31.1.1.1.13.919|70|0 +1.3.6.1.2.1.31.1.1.1.13.920|70|0 +1.3.6.1.2.1.31.1.1.1.13.921|70|0 +1.3.6.1.2.1.31.1.1.1.13.925|70|0 +1.3.6.1.2.1.31.1.1.1.13.926|70|0 +1.3.6.1.2.1.31.1.1.1.13.927|70|0 +1.3.6.1.2.1.31.1.1.1.13.938|70|0 +1.3.6.1.2.1.31.1.1.1.13.939|70|0 +1.3.6.1.2.1.31.1.1.1.13.940|70|0 +1.3.6.1.2.1.31.1.1.1.13.941|70|0 +1.3.6.1.2.1.31.1.1.1.13.947|70|0 +1.3.6.1.2.1.31.1.1.1.13.948|70|0 +1.3.6.1.2.1.31.1.1.1.14.251|2|1 +1.3.6.1.2.1.31.1.1.1.14.252|2|2 +1.3.6.1.2.1.31.1.1.1.14.253|2|1 +1.3.6.1.2.1.31.1.1.1.14.254|2|2 +1.3.6.1.2.1.31.1.1.1.14.255|2|2 +1.3.6.1.2.1.31.1.1.1.14.258|2|1 +1.3.6.1.2.1.31.1.1.1.14.259|2|2 +1.3.6.1.2.1.31.1.1.1.14.260|2|2 +1.3.6.1.2.1.31.1.1.1.14.261|2|2 +1.3.6.1.2.1.31.1.1.1.14.262|2|2 +1.3.6.1.2.1.31.1.1.1.14.263|2|2 +1.3.6.1.2.1.31.1.1.1.14.264|2|2 +1.3.6.1.2.1.31.1.1.1.14.265|2|2 +1.3.6.1.2.1.31.1.1.1.14.266|2|2 +1.3.6.1.2.1.31.1.1.1.14.267|2|2 +1.3.6.1.2.1.31.1.1.1.14.268|2|2 +1.3.6.1.2.1.31.1.1.1.14.269|2|2 +1.3.6.1.2.1.31.1.1.1.14.270|2|1 +1.3.6.1.2.1.31.1.1.1.14.273|2|1 +1.3.6.1.2.1.31.1.1.1.14.274|2|1 +1.3.6.1.2.1.31.1.1.1.14.275|2|2 +1.3.6.1.2.1.31.1.1.1.14.276|2|2 +1.3.6.1.2.1.31.1.1.1.14.277|2|1 +1.3.6.1.2.1.31.1.1.1.14.278|2|1 +1.3.6.1.2.1.31.1.1.1.14.280|2|1 +1.3.6.1.2.1.31.1.1.1.14.281|2|1 +1.3.6.1.2.1.31.1.1.1.14.282|2|1 +1.3.6.1.2.1.31.1.1.1.14.283|2|1 +1.3.6.1.2.1.31.1.1.1.14.284|2|1 +1.3.6.1.2.1.31.1.1.1.14.285|2|1 +1.3.6.1.2.1.31.1.1.1.14.286|2|1 +1.3.6.1.2.1.31.1.1.1.14.287|2|1 +1.3.6.1.2.1.31.1.1.1.14.288|2|1 +1.3.6.1.2.1.31.1.1.1.14.291|2|2 +1.3.6.1.2.1.31.1.1.1.14.292|2|2 +1.3.6.1.2.1.31.1.1.1.14.293|2|2 +1.3.6.1.2.1.31.1.1.1.14.294|2|2 +1.3.6.1.2.1.31.1.1.1.14.295|2|2 +1.3.6.1.2.1.31.1.1.1.14.395|2|1 +1.3.6.1.2.1.31.1.1.1.14.396|2|1 +1.3.6.1.2.1.31.1.1.1.14.398|2|1 +1.3.6.1.2.1.31.1.1.1.14.399|2|1 +1.3.6.1.2.1.31.1.1.1.14.414|2|2 +1.3.6.1.2.1.31.1.1.1.14.415|2|1 +1.3.6.1.2.1.31.1.1.1.14.417|2|1 +1.3.6.1.2.1.31.1.1.1.14.418|2|1 +1.3.6.1.2.1.31.1.1.1.14.438|2|2 +1.3.6.1.2.1.31.1.1.1.14.439|2|2 +1.3.6.1.2.1.31.1.1.1.14.440|2|2 +1.3.6.1.2.1.31.1.1.1.14.441|2|2 +1.3.6.1.2.1.31.1.1.1.14.442|2|2 +1.3.6.1.2.1.31.1.1.1.14.443|2|2 +1.3.6.1.2.1.31.1.1.1.14.444|2|2 +1.3.6.1.2.1.31.1.1.1.14.445|2|2 +1.3.6.1.2.1.31.1.1.1.14.446|2|2 +1.3.6.1.2.1.31.1.1.1.14.447|2|2 +1.3.6.1.2.1.31.1.1.1.14.448|2|2 +1.3.6.1.2.1.31.1.1.1.14.449|2|2 +1.3.6.1.2.1.31.1.1.1.14.450|2|2 +1.3.6.1.2.1.31.1.1.1.14.451|2|2 +1.3.6.1.2.1.31.1.1.1.14.452|2|2 +1.3.6.1.2.1.31.1.1.1.14.453|2|2 +1.3.6.1.2.1.31.1.1.1.14.454|2|2 +1.3.6.1.2.1.31.1.1.1.14.455|2|2 +1.3.6.1.2.1.31.1.1.1.14.456|2|2 +1.3.6.1.2.1.31.1.1.1.14.457|2|2 +1.3.6.1.2.1.31.1.1.1.14.462|2|2 +1.3.6.1.2.1.31.1.1.1.14.464|2|1 +1.3.6.1.2.1.31.1.1.1.14.465|2|1 +1.3.6.1.2.1.31.1.1.1.14.467|2|2 +1.3.6.1.2.1.31.1.1.1.14.468|2|2 +1.3.6.1.2.1.31.1.1.1.14.474|2|2 +1.3.6.1.2.1.31.1.1.1.14.475|2|2 +1.3.6.1.2.1.31.1.1.1.14.476|2|2 +1.3.6.1.2.1.31.1.1.1.14.477|2|1 +1.3.6.1.2.1.31.1.1.1.14.478|2|2 +1.3.6.1.2.1.31.1.1.1.14.487|2|1 +1.3.6.1.2.1.31.1.1.1.14.489|2|2 +1.3.6.1.2.1.31.1.1.1.14.490|2|2 +1.3.6.1.2.1.31.1.1.1.14.493|2|2 +1.3.6.1.2.1.31.1.1.1.14.494|2|1 +1.3.6.1.2.1.31.1.1.1.14.495|2|1 +1.3.6.1.2.1.31.1.1.1.14.496|2|1 +1.3.6.1.2.1.31.1.1.1.14.497|2|1 +1.3.6.1.2.1.31.1.1.1.14.502|2|2 +1.3.6.1.2.1.31.1.1.1.14.503|2|2 +1.3.6.1.2.1.31.1.1.1.14.504|2|2 +1.3.6.1.2.1.31.1.1.1.14.505|2|2 +1.3.6.1.2.1.31.1.1.1.14.506|2|1 +1.3.6.1.2.1.31.1.1.1.14.509|2|1 +1.3.6.1.2.1.31.1.1.1.14.510|2|2 +1.3.6.1.2.1.31.1.1.1.14.511|2|2 +1.3.6.1.2.1.31.1.1.1.14.513|2|2 +1.3.6.1.2.1.31.1.1.1.14.514|2|1 +1.3.6.1.2.1.31.1.1.1.14.515|2|1 +1.3.6.1.2.1.31.1.1.1.14.516|2|2 +1.3.6.1.2.1.31.1.1.1.14.517|2|2 +1.3.6.1.2.1.31.1.1.1.14.518|2|1 +1.3.6.1.2.1.31.1.1.1.14.519|2|1 +1.3.6.1.2.1.31.1.1.1.14.520|2|1 +1.3.6.1.2.1.31.1.1.1.14.523|2|2 +1.3.6.1.2.1.31.1.1.1.14.524|2|2 +1.3.6.1.2.1.31.1.1.1.14.525|2|2 +1.3.6.1.2.1.31.1.1.1.14.526|2|2 +1.3.6.1.2.1.31.1.1.1.14.527|2|2 +1.3.6.1.2.1.31.1.1.1.14.528|2|2 +1.3.6.1.2.1.31.1.1.1.14.529|2|2 +1.3.6.1.2.1.31.1.1.1.14.530|2|2 +1.3.6.1.2.1.31.1.1.1.14.531|2|2 +1.3.6.1.2.1.31.1.1.1.14.532|2|2 +1.3.6.1.2.1.31.1.1.1.14.533|2|2 +1.3.6.1.2.1.31.1.1.1.14.534|2|2 +1.3.6.1.2.1.31.1.1.1.14.535|2|1 +1.3.6.1.2.1.31.1.1.1.14.536|2|1 +1.3.6.1.2.1.31.1.1.1.14.538|2|1 +1.3.6.1.2.1.31.1.1.1.14.540|2|2 +1.3.6.1.2.1.31.1.1.1.14.541|2|2 +1.3.6.1.2.1.31.1.1.1.14.542|2|1 +1.3.6.1.2.1.31.1.1.1.14.543|2|1 +1.3.6.1.2.1.31.1.1.1.14.544|2|1 +1.3.6.1.2.1.31.1.1.1.14.545|2|2 +1.3.6.1.2.1.31.1.1.1.14.546|2|2 +1.3.6.1.2.1.31.1.1.1.14.547|2|1 +1.3.6.1.2.1.31.1.1.1.14.548|2|1 +1.3.6.1.2.1.31.1.1.1.14.549|2|1 +1.3.6.1.2.1.31.1.1.1.14.550|2|1 +1.3.6.1.2.1.31.1.1.1.14.551|2|1 +1.3.6.1.2.1.31.1.1.1.14.552|2|1 +1.3.6.1.2.1.31.1.1.1.14.553|2|1 +1.3.6.1.2.1.31.1.1.1.14.554|2|1 +1.3.6.1.2.1.31.1.1.1.14.555|2|1 +1.3.6.1.2.1.31.1.1.1.14.556|2|1 +1.3.6.1.2.1.31.1.1.1.14.557|2|1 +1.3.6.1.2.1.31.1.1.1.14.558|2|1 +1.3.6.1.2.1.31.1.1.1.14.559|2|1 +1.3.6.1.2.1.31.1.1.1.14.560|2|1 +1.3.6.1.2.1.31.1.1.1.14.561|2|1 +1.3.6.1.2.1.31.1.1.1.14.562|2|1 +1.3.6.1.2.1.31.1.1.1.14.563|2|1 +1.3.6.1.2.1.31.1.1.1.14.564|2|1 +1.3.6.1.2.1.31.1.1.1.14.565|2|1 +1.3.6.1.2.1.31.1.1.1.14.566|2|1 +1.3.6.1.2.1.31.1.1.1.14.567|2|1 +1.3.6.1.2.1.31.1.1.1.14.568|2|1 +1.3.6.1.2.1.31.1.1.1.14.569|2|1 +1.3.6.1.2.1.31.1.1.1.14.570|2|1 +1.3.6.1.2.1.31.1.1.1.14.571|2|1 +1.3.6.1.2.1.31.1.1.1.14.572|2|1 +1.3.6.1.2.1.31.1.1.1.14.573|2|1 +1.3.6.1.2.1.31.1.1.1.14.574|2|1 +1.3.6.1.2.1.31.1.1.1.14.575|2|1 +1.3.6.1.2.1.31.1.1.1.14.576|2|1 +1.3.6.1.2.1.31.1.1.1.14.577|2|1 +1.3.6.1.2.1.31.1.1.1.14.578|2|1 +1.3.6.1.2.1.31.1.1.1.14.579|2|1 +1.3.6.1.2.1.31.1.1.1.14.580|2|1 +1.3.6.1.2.1.31.1.1.1.14.581|2|1 +1.3.6.1.2.1.31.1.1.1.14.582|2|1 +1.3.6.1.2.1.31.1.1.1.14.583|2|1 +1.3.6.1.2.1.31.1.1.1.14.584|2|1 +1.3.6.1.2.1.31.1.1.1.14.585|2|1 +1.3.6.1.2.1.31.1.1.1.14.586|2|1 +1.3.6.1.2.1.31.1.1.1.14.587|2|1 +1.3.6.1.2.1.31.1.1.1.14.588|2|1 +1.3.6.1.2.1.31.1.1.1.14.589|2|1 +1.3.6.1.2.1.31.1.1.1.14.590|2|1 +1.3.6.1.2.1.31.1.1.1.14.591|2|1 +1.3.6.1.2.1.31.1.1.1.14.592|2|1 +1.3.6.1.2.1.31.1.1.1.14.593|2|1 +1.3.6.1.2.1.31.1.1.1.14.594|2|1 +1.3.6.1.2.1.31.1.1.1.14.595|2|1 +1.3.6.1.2.1.31.1.1.1.14.596|2|1 +1.3.6.1.2.1.31.1.1.1.14.597|2|1 +1.3.6.1.2.1.31.1.1.1.14.598|2|1 +1.3.6.1.2.1.31.1.1.1.14.599|2|1 +1.3.6.1.2.1.31.1.1.1.14.600|2|1 +1.3.6.1.2.1.31.1.1.1.14.601|2|1 +1.3.6.1.2.1.31.1.1.1.14.602|2|1 +1.3.6.1.2.1.31.1.1.1.14.603|2|1 +1.3.6.1.2.1.31.1.1.1.14.604|2|1 +1.3.6.1.2.1.31.1.1.1.14.605|2|1 +1.3.6.1.2.1.31.1.1.1.14.606|2|1 +1.3.6.1.2.1.31.1.1.1.14.607|2|1 +1.3.6.1.2.1.31.1.1.1.14.608|2|1 +1.3.6.1.2.1.31.1.1.1.14.609|2|1 +1.3.6.1.2.1.31.1.1.1.14.610|2|1 +1.3.6.1.2.1.31.1.1.1.14.611|2|1 +1.3.6.1.2.1.31.1.1.1.14.612|2|1 +1.3.6.1.2.1.31.1.1.1.14.613|2|1 +1.3.6.1.2.1.31.1.1.1.14.614|2|1 +1.3.6.1.2.1.31.1.1.1.14.615|2|1 +1.3.6.1.2.1.31.1.1.1.14.616|2|1 +1.3.6.1.2.1.31.1.1.1.14.617|2|1 +1.3.6.1.2.1.31.1.1.1.14.618|2|1 +1.3.6.1.2.1.31.1.1.1.14.619|2|1 +1.3.6.1.2.1.31.1.1.1.14.620|2|1 +1.3.6.1.2.1.31.1.1.1.14.621|2|1 +1.3.6.1.2.1.31.1.1.1.14.622|2|1 +1.3.6.1.2.1.31.1.1.1.14.623|2|1 +1.3.6.1.2.1.31.1.1.1.14.624|2|1 +1.3.6.1.2.1.31.1.1.1.14.625|2|1 +1.3.6.1.2.1.31.1.1.1.14.626|2|1 +1.3.6.1.2.1.31.1.1.1.14.627|2|1 +1.3.6.1.2.1.31.1.1.1.14.628|2|1 +1.3.6.1.2.1.31.1.1.1.14.629|2|1 +1.3.6.1.2.1.31.1.1.1.14.630|2|1 +1.3.6.1.2.1.31.1.1.1.14.631|2|1 +1.3.6.1.2.1.31.1.1.1.14.632|2|1 +1.3.6.1.2.1.31.1.1.1.14.633|2|1 +1.3.6.1.2.1.31.1.1.1.14.634|2|1 +1.3.6.1.2.1.31.1.1.1.14.635|2|1 +1.3.6.1.2.1.31.1.1.1.14.636|2|1 +1.3.6.1.2.1.31.1.1.1.14.637|2|1 +1.3.6.1.2.1.31.1.1.1.14.638|2|1 +1.3.6.1.2.1.31.1.1.1.14.639|2|1 +1.3.6.1.2.1.31.1.1.1.14.640|2|1 +1.3.6.1.2.1.31.1.1.1.14.641|2|1 +1.3.6.1.2.1.31.1.1.1.14.642|2|1 +1.3.6.1.2.1.31.1.1.1.14.643|2|1 +1.3.6.1.2.1.31.1.1.1.14.644|2|1 +1.3.6.1.2.1.31.1.1.1.14.645|2|1 +1.3.6.1.2.1.31.1.1.1.14.646|2|1 +1.3.6.1.2.1.31.1.1.1.14.647|2|1 +1.3.6.1.2.1.31.1.1.1.14.648|2|1 +1.3.6.1.2.1.31.1.1.1.14.649|2|1 +1.3.6.1.2.1.31.1.1.1.14.650|2|1 +1.3.6.1.2.1.31.1.1.1.14.651|2|1 +1.3.6.1.2.1.31.1.1.1.14.652|2|1 +1.3.6.1.2.1.31.1.1.1.14.653|2|1 +1.3.6.1.2.1.31.1.1.1.14.654|2|1 +1.3.6.1.2.1.31.1.1.1.14.655|2|1 +1.3.6.1.2.1.31.1.1.1.14.656|2|1 +1.3.6.1.2.1.31.1.1.1.14.657|2|1 +1.3.6.1.2.1.31.1.1.1.14.658|2|1 +1.3.6.1.2.1.31.1.1.1.14.659|2|1 +1.3.6.1.2.1.31.1.1.1.14.660|2|1 +1.3.6.1.2.1.31.1.1.1.14.661|2|1 +1.3.6.1.2.1.31.1.1.1.14.662|2|1 +1.3.6.1.2.1.31.1.1.1.14.663|2|1 +1.3.6.1.2.1.31.1.1.1.14.664|2|1 +1.3.6.1.2.1.31.1.1.1.14.665|2|1 +1.3.6.1.2.1.31.1.1.1.14.666|2|1 +1.3.6.1.2.1.31.1.1.1.14.667|2|1 +1.3.6.1.2.1.31.1.1.1.14.668|2|1 +1.3.6.1.2.1.31.1.1.1.14.669|2|1 +1.3.6.1.2.1.31.1.1.1.14.670|2|1 +1.3.6.1.2.1.31.1.1.1.14.671|2|1 +1.3.6.1.2.1.31.1.1.1.14.672|2|1 +1.3.6.1.2.1.31.1.1.1.14.673|2|1 +1.3.6.1.2.1.31.1.1.1.14.674|2|1 +1.3.6.1.2.1.31.1.1.1.14.675|2|1 +1.3.6.1.2.1.31.1.1.1.14.676|2|1 +1.3.6.1.2.1.31.1.1.1.14.677|2|1 +1.3.6.1.2.1.31.1.1.1.14.678|2|1 +1.3.6.1.2.1.31.1.1.1.14.679|2|1 +1.3.6.1.2.1.31.1.1.1.14.680|2|1 +1.3.6.1.2.1.31.1.1.1.14.681|2|1 +1.3.6.1.2.1.31.1.1.1.14.682|2|1 +1.3.6.1.2.1.31.1.1.1.14.683|2|1 +1.3.6.1.2.1.31.1.1.1.14.684|2|1 +1.3.6.1.2.1.31.1.1.1.14.685|2|1 +1.3.6.1.2.1.31.1.1.1.14.686|2|1 +1.3.6.1.2.1.31.1.1.1.14.687|2|1 +1.3.6.1.2.1.31.1.1.1.14.688|2|1 +1.3.6.1.2.1.31.1.1.1.14.689|2|1 +1.3.6.1.2.1.31.1.1.1.14.690|2|1 +1.3.6.1.2.1.31.1.1.1.14.691|2|1 +1.3.6.1.2.1.31.1.1.1.14.692|2|1 +1.3.6.1.2.1.31.1.1.1.14.693|2|1 +1.3.6.1.2.1.31.1.1.1.14.694|2|1 +1.3.6.1.2.1.31.1.1.1.14.695|2|1 +1.3.6.1.2.1.31.1.1.1.14.696|2|1 +1.3.6.1.2.1.31.1.1.1.14.697|2|1 +1.3.6.1.2.1.31.1.1.1.14.698|2|1 +1.3.6.1.2.1.31.1.1.1.14.699|2|1 +1.3.6.1.2.1.31.1.1.1.14.700|2|1 +1.3.6.1.2.1.31.1.1.1.14.701|2|1 +1.3.6.1.2.1.31.1.1.1.14.702|2|1 +1.3.6.1.2.1.31.1.1.1.14.703|2|1 +1.3.6.1.2.1.31.1.1.1.14.704|2|1 +1.3.6.1.2.1.31.1.1.1.14.705|2|1 +1.3.6.1.2.1.31.1.1.1.14.706|2|1 +1.3.6.1.2.1.31.1.1.1.14.707|2|1 +1.3.6.1.2.1.31.1.1.1.14.708|2|1 +1.3.6.1.2.1.31.1.1.1.14.709|2|1 +1.3.6.1.2.1.31.1.1.1.14.710|2|1 +1.3.6.1.2.1.31.1.1.1.14.711|2|1 +1.3.6.1.2.1.31.1.1.1.14.712|2|1 +1.3.6.1.2.1.31.1.1.1.14.713|2|1 +1.3.6.1.2.1.31.1.1.1.14.714|2|1 +1.3.6.1.2.1.31.1.1.1.14.715|2|1 +1.3.6.1.2.1.31.1.1.1.14.716|2|1 +1.3.6.1.2.1.31.1.1.1.14.717|2|1 +1.3.6.1.2.1.31.1.1.1.14.718|2|1 +1.3.6.1.2.1.31.1.1.1.14.719|2|1 +1.3.6.1.2.1.31.1.1.1.14.720|2|1 +1.3.6.1.2.1.31.1.1.1.14.721|2|1 +1.3.6.1.2.1.31.1.1.1.14.722|2|1 +1.3.6.1.2.1.31.1.1.1.14.723|2|1 +1.3.6.1.2.1.31.1.1.1.14.724|2|1 +1.3.6.1.2.1.31.1.1.1.14.725|2|1 +1.3.6.1.2.1.31.1.1.1.14.726|2|1 +1.3.6.1.2.1.31.1.1.1.14.727|2|1 +1.3.6.1.2.1.31.1.1.1.14.728|2|1 +1.3.6.1.2.1.31.1.1.1.14.729|2|1 +1.3.6.1.2.1.31.1.1.1.14.730|2|1 +1.3.6.1.2.1.31.1.1.1.14.731|2|1 +1.3.6.1.2.1.31.1.1.1.14.732|2|1 +1.3.6.1.2.1.31.1.1.1.14.733|2|1 +1.3.6.1.2.1.31.1.1.1.14.734|2|1 +1.3.6.1.2.1.31.1.1.1.14.735|2|1 +1.3.6.1.2.1.31.1.1.1.14.736|2|1 +1.3.6.1.2.1.31.1.1.1.14.737|2|1 +1.3.6.1.2.1.31.1.1.1.14.738|2|1 +1.3.6.1.2.1.31.1.1.1.14.739|2|1 +1.3.6.1.2.1.31.1.1.1.14.740|2|1 +1.3.6.1.2.1.31.1.1.1.14.741|2|1 +1.3.6.1.2.1.31.1.1.1.14.742|2|1 +1.3.6.1.2.1.31.1.1.1.14.743|2|1 +1.3.6.1.2.1.31.1.1.1.14.744|2|1 +1.3.6.1.2.1.31.1.1.1.14.745|2|1 +1.3.6.1.2.1.31.1.1.1.14.746|2|1 +1.3.6.1.2.1.31.1.1.1.14.747|2|1 +1.3.6.1.2.1.31.1.1.1.14.748|2|1 +1.3.6.1.2.1.31.1.1.1.14.749|2|1 +1.3.6.1.2.1.31.1.1.1.14.750|2|1 +1.3.6.1.2.1.31.1.1.1.14.751|2|1 +1.3.6.1.2.1.31.1.1.1.14.768|2|2 +1.3.6.1.2.1.31.1.1.1.14.769|2|1 +1.3.6.1.2.1.31.1.1.1.14.770|2|1 +1.3.6.1.2.1.31.1.1.1.14.771|2|2 +1.3.6.1.2.1.31.1.1.1.14.772|2|2 +1.3.6.1.2.1.31.1.1.1.14.773|2|2 +1.3.6.1.2.1.31.1.1.1.14.774|2|1 +1.3.6.1.2.1.31.1.1.1.14.775|2|1 +1.3.6.1.2.1.31.1.1.1.14.776|2|1 +1.3.6.1.2.1.31.1.1.1.14.777|2|2 +1.3.6.1.2.1.31.1.1.1.14.778|2|2 +1.3.6.1.2.1.31.1.1.1.14.779|2|2 +1.3.6.1.2.1.31.1.1.1.14.780|2|2 +1.3.6.1.2.1.31.1.1.1.14.781|2|2 +1.3.6.1.2.1.31.1.1.1.14.782|2|2 +1.3.6.1.2.1.31.1.1.1.14.783|2|2 +1.3.6.1.2.1.31.1.1.1.14.784|2|2 +1.3.6.1.2.1.31.1.1.1.14.785|2|1 +1.3.6.1.2.1.31.1.1.1.14.786|2|2 +1.3.6.1.2.1.31.1.1.1.14.787|2|2 +1.3.6.1.2.1.31.1.1.1.14.788|2|2 +1.3.6.1.2.1.31.1.1.1.14.789|2|2 +1.3.6.1.2.1.31.1.1.1.14.790|2|2 +1.3.6.1.2.1.31.1.1.1.14.791|2|2 +1.3.6.1.2.1.31.1.1.1.14.792|2|1 +1.3.6.1.2.1.31.1.1.1.14.793|2|1 +1.3.6.1.2.1.31.1.1.1.14.794|2|1 +1.3.6.1.2.1.31.1.1.1.14.795|2|2 +1.3.6.1.2.1.31.1.1.1.14.796|2|2 +1.3.6.1.2.1.31.1.1.1.14.797|2|2 +1.3.6.1.2.1.31.1.1.1.14.798|2|2 +1.3.6.1.2.1.31.1.1.1.14.799|2|2 +1.3.6.1.2.1.31.1.1.1.14.800|2|2 +1.3.6.1.2.1.31.1.1.1.14.801|2|1 +1.3.6.1.2.1.31.1.1.1.14.802|2|1 +1.3.6.1.2.1.31.1.1.1.14.803|2|1 +1.3.6.1.2.1.31.1.1.1.14.804|2|1 +1.3.6.1.2.1.31.1.1.1.14.805|2|1 +1.3.6.1.2.1.31.1.1.1.14.806|2|1 +1.3.6.1.2.1.31.1.1.1.14.807|2|1 +1.3.6.1.2.1.31.1.1.1.14.808|2|2 +1.3.6.1.2.1.31.1.1.1.14.809|2|2 +1.3.6.1.2.1.31.1.1.1.14.810|2|1 +1.3.6.1.2.1.31.1.1.1.14.811|2|1 +1.3.6.1.2.1.31.1.1.1.14.812|2|2 +1.3.6.1.2.1.31.1.1.1.14.813|2|2 +1.3.6.1.2.1.31.1.1.1.14.814|2|1 +1.3.6.1.2.1.31.1.1.1.14.815|2|1 +1.3.6.1.2.1.31.1.1.1.14.816|2|2 +1.3.6.1.2.1.31.1.1.1.14.817|2|2 +1.3.6.1.2.1.31.1.1.1.14.818|2|1 +1.3.6.1.2.1.31.1.1.1.14.819|2|2 +1.3.6.1.2.1.31.1.1.1.14.820|2|2 +1.3.6.1.2.1.31.1.1.1.14.821|2|2 +1.3.6.1.2.1.31.1.1.1.14.822|2|2 +1.3.6.1.2.1.31.1.1.1.14.823|2|2 +1.3.6.1.2.1.31.1.1.1.14.824|2|2 +1.3.6.1.2.1.31.1.1.1.14.825|2|2 +1.3.6.1.2.1.31.1.1.1.14.826|2|2 +1.3.6.1.2.1.31.1.1.1.14.827|2|2 +1.3.6.1.2.1.31.1.1.1.14.828|2|2 +1.3.6.1.2.1.31.1.1.1.14.829|2|2 +1.3.6.1.2.1.31.1.1.1.14.830|2|2 +1.3.6.1.2.1.31.1.1.1.14.831|2|2 +1.3.6.1.2.1.31.1.1.1.14.832|2|2 +1.3.6.1.2.1.31.1.1.1.14.833|2|2 +1.3.6.1.2.1.31.1.1.1.14.834|2|1 +1.3.6.1.2.1.31.1.1.1.14.835|2|1 +1.3.6.1.2.1.31.1.1.1.14.836|2|1 +1.3.6.1.2.1.31.1.1.1.14.837|2|2 +1.3.6.1.2.1.31.1.1.1.14.838|2|1 +1.3.6.1.2.1.31.1.1.1.14.839|2|2 +1.3.6.1.2.1.31.1.1.1.14.840|2|2 +1.3.6.1.2.1.31.1.1.1.14.841|2|2 +1.3.6.1.2.1.31.1.1.1.14.842|2|2 +1.3.6.1.2.1.31.1.1.1.14.843|2|2 +1.3.6.1.2.1.31.1.1.1.14.844|2|2 +1.3.6.1.2.1.31.1.1.1.14.845|2|2 +1.3.6.1.2.1.31.1.1.1.14.846|2|2 +1.3.6.1.2.1.31.1.1.1.14.847|2|2 +1.3.6.1.2.1.31.1.1.1.14.848|2|1 +1.3.6.1.2.1.31.1.1.1.14.849|2|1 +1.3.6.1.2.1.31.1.1.1.14.850|2|1 +1.3.6.1.2.1.31.1.1.1.14.851|2|2 +1.3.6.1.2.1.31.1.1.1.14.852|2|2 +1.3.6.1.2.1.31.1.1.1.14.853|2|2 +1.3.6.1.2.1.31.1.1.1.14.854|2|1 +1.3.6.1.2.1.31.1.1.1.14.855|2|2 +1.3.6.1.2.1.31.1.1.1.14.856|2|2 +1.3.6.1.2.1.31.1.1.1.14.857|2|2 +1.3.6.1.2.1.31.1.1.1.14.858|2|2 +1.3.6.1.2.1.31.1.1.1.14.859|2|2 +1.3.6.1.2.1.31.1.1.1.14.864|2|2 +1.3.6.1.2.1.31.1.1.1.14.868|2|2 +1.3.6.1.2.1.31.1.1.1.14.869|2|2 +1.3.6.1.2.1.31.1.1.1.14.870|2|2 +1.3.6.1.2.1.31.1.1.1.14.871|2|1 +1.3.6.1.2.1.31.1.1.1.14.872|2|1 +1.3.6.1.2.1.31.1.1.1.14.873|2|2 +1.3.6.1.2.1.31.1.1.1.14.874|2|1 +1.3.6.1.2.1.31.1.1.1.14.875|2|1 +1.3.6.1.2.1.31.1.1.1.14.876|2|1 +1.3.6.1.2.1.31.1.1.1.14.877|2|1 +1.3.6.1.2.1.31.1.1.1.14.878|2|2 +1.3.6.1.2.1.31.1.1.1.14.879|2|2 +1.3.6.1.2.1.31.1.1.1.14.880|2|2 +1.3.6.1.2.1.31.1.1.1.14.881|2|2 +1.3.6.1.2.1.31.1.1.1.14.882|2|2 +1.3.6.1.2.1.31.1.1.1.14.883|2|1 +1.3.6.1.2.1.31.1.1.1.14.884|2|2 +1.3.6.1.2.1.31.1.1.1.14.885|2|1 +1.3.6.1.2.1.31.1.1.1.14.886|2|2 +1.3.6.1.2.1.31.1.1.1.14.887|2|2 +1.3.6.1.2.1.31.1.1.1.14.888|2|2 +1.3.6.1.2.1.31.1.1.1.14.889|2|2 +1.3.6.1.2.1.31.1.1.1.14.890|2|2 +1.3.6.1.2.1.31.1.1.1.14.891|2|2 +1.3.6.1.2.1.31.1.1.1.14.892|2|2 +1.3.6.1.2.1.31.1.1.1.14.893|2|2 +1.3.6.1.2.1.31.1.1.1.14.894|2|2 +1.3.6.1.2.1.31.1.1.1.14.895|2|2 +1.3.6.1.2.1.31.1.1.1.14.896|2|2 +1.3.6.1.2.1.31.1.1.1.14.897|2|2 +1.3.6.1.2.1.31.1.1.1.14.898|2|2 +1.3.6.1.2.1.31.1.1.1.14.899|2|2 +1.3.6.1.2.1.31.1.1.1.14.900|2|2 +1.3.6.1.2.1.31.1.1.1.14.901|2|2 +1.3.6.1.2.1.31.1.1.1.14.902|2|2 +1.3.6.1.2.1.31.1.1.1.14.903|2|2 +1.3.6.1.2.1.31.1.1.1.14.904|2|2 +1.3.6.1.2.1.31.1.1.1.14.905|2|2 +1.3.6.1.2.1.31.1.1.1.14.906|2|2 +1.3.6.1.2.1.31.1.1.1.14.907|2|1 +1.3.6.1.2.1.31.1.1.1.14.908|2|1 +1.3.6.1.2.1.31.1.1.1.14.909|2|1 +1.3.6.1.2.1.31.1.1.1.14.910|2|2 +1.3.6.1.2.1.31.1.1.1.14.911|2|2 +1.3.6.1.2.1.31.1.1.1.14.912|2|2 +1.3.6.1.2.1.31.1.1.1.14.913|2|2 +1.3.6.1.2.1.31.1.1.1.14.914|2|2 +1.3.6.1.2.1.31.1.1.1.14.915|2|2 +1.3.6.1.2.1.31.1.1.1.14.916|2|2 +1.3.6.1.2.1.31.1.1.1.14.917|2|2 +1.3.6.1.2.1.31.1.1.1.14.918|2|2 +1.3.6.1.2.1.31.1.1.1.14.919|2|1 +1.3.6.1.2.1.31.1.1.1.14.920|2|1 +1.3.6.1.2.1.31.1.1.1.14.921|2|1 +1.3.6.1.2.1.31.1.1.1.14.922|2|2 +1.3.6.1.2.1.31.1.1.1.14.923|2|2 +1.3.6.1.2.1.31.1.1.1.14.924|2|2 +1.3.6.1.2.1.31.1.1.1.14.925|2|1 +1.3.6.1.2.1.31.1.1.1.14.926|2|1 +1.3.6.1.2.1.31.1.1.1.14.927|2|1 +1.3.6.1.2.1.31.1.1.1.14.928|2|2 +1.3.6.1.2.1.31.1.1.1.14.929|2|2 +1.3.6.1.2.1.31.1.1.1.14.930|2|2 +1.3.6.1.2.1.31.1.1.1.14.931|2|2 +1.3.6.1.2.1.31.1.1.1.14.932|2|2 +1.3.6.1.2.1.31.1.1.1.14.933|2|2 +1.3.6.1.2.1.31.1.1.1.14.934|2|2 +1.3.6.1.2.1.31.1.1.1.14.935|2|2 +1.3.6.1.2.1.31.1.1.1.14.936|2|2 +1.3.6.1.2.1.31.1.1.1.14.937|2|2 +1.3.6.1.2.1.31.1.1.1.14.938|2|1 +1.3.6.1.2.1.31.1.1.1.14.939|2|1 +1.3.6.1.2.1.31.1.1.1.14.940|2|1 +1.3.6.1.2.1.31.1.1.1.14.941|2|1 +1.3.6.1.2.1.31.1.1.1.14.942|2|2 +1.3.6.1.2.1.31.1.1.1.14.943|2|2 +1.3.6.1.2.1.31.1.1.1.14.944|2|2 +1.3.6.1.2.1.31.1.1.1.14.945|2|2 +1.3.6.1.2.1.31.1.1.1.14.946|2|2 +1.3.6.1.2.1.31.1.1.1.14.947|2|1 +1.3.6.1.2.1.31.1.1.1.14.948|2|1 +1.3.6.1.2.1.31.1.1.1.14.949|2|2 +1.3.6.1.2.1.31.1.1.1.15.251|66|1000 +1.3.6.1.2.1.31.1.1.1.15.252|66|100 +1.3.6.1.2.1.31.1.1.1.15.253|66|40000 +1.3.6.1.2.1.31.1.1.1.15.254|66|40000 +1.3.6.1.2.1.31.1.1.1.15.255|66|40000 +1.3.6.1.2.1.31.1.1.1.15.258|66|1000 +1.3.6.1.2.1.31.1.1.1.15.259|66|40000 +1.3.6.1.2.1.31.1.1.1.15.260|66|0 +1.3.6.1.2.1.31.1.1.1.15.261|66|0 +1.3.6.1.2.1.31.1.1.1.15.262|66|0 +1.3.6.1.2.1.31.1.1.1.15.263|66|0 +1.3.6.1.2.1.31.1.1.1.15.264|66|0 +1.3.6.1.2.1.31.1.1.1.15.265|66|0 +1.3.6.1.2.1.31.1.1.1.15.266|66|0 +1.3.6.1.2.1.31.1.1.1.15.267|66|0 +1.3.6.1.2.1.31.1.1.1.15.268|66|0 +1.3.6.1.2.1.31.1.1.1.15.269|66|0 +1.3.6.1.2.1.31.1.1.1.15.270|66|100 +1.3.6.1.2.1.31.1.1.1.15.273|66|100 +1.3.6.1.2.1.31.1.1.1.15.274|66|100 +1.3.6.1.2.1.31.1.1.1.15.275|66|0 +1.3.6.1.2.1.31.1.1.1.15.276|66|0 +1.3.6.1.2.1.31.1.1.1.15.277|66|100 +1.3.6.1.2.1.31.1.1.1.15.278|66|100 +1.3.6.1.2.1.31.1.1.1.15.280|66|100 +1.3.6.1.2.1.31.1.1.1.15.281|66|100 +1.3.6.1.2.1.31.1.1.1.15.282|66|100 +1.3.6.1.2.1.31.1.1.1.15.283|66|100 +1.3.6.1.2.1.31.1.1.1.15.284|66|100 +1.3.6.1.2.1.31.1.1.1.15.285|66|100 +1.3.6.1.2.1.31.1.1.1.15.286|66|100 +1.3.6.1.2.1.31.1.1.1.15.287|66|100 +1.3.6.1.2.1.31.1.1.1.15.288|66|100 +1.3.6.1.2.1.31.1.1.1.15.291|66|0 +1.3.6.1.2.1.31.1.1.1.15.292|66|0 +1.3.6.1.2.1.31.1.1.1.15.293|66|0 +1.3.6.1.2.1.31.1.1.1.15.294|66|0 +1.3.6.1.2.1.31.1.1.1.15.295|66|0 +1.3.6.1.2.1.31.1.1.1.15.395|66|100 +1.3.6.1.2.1.31.1.1.1.15.396|66|100 +1.3.6.1.2.1.31.1.1.1.15.398|66|1000 +1.3.6.1.2.1.31.1.1.1.15.399|66|1000 +1.3.6.1.2.1.31.1.1.1.15.414|66|0 +1.3.6.1.2.1.31.1.1.1.15.415|66|8000 +1.3.6.1.2.1.31.1.1.1.15.417|66|1000 +1.3.6.1.2.1.31.1.1.1.15.418|66|1000 +1.3.6.1.2.1.31.1.1.1.15.438|66|0 +1.3.6.1.2.1.31.1.1.1.15.439|66|0 +1.3.6.1.2.1.31.1.1.1.15.440|66|0 +1.3.6.1.2.1.31.1.1.1.15.441|66|0 +1.3.6.1.2.1.31.1.1.1.15.442|66|0 +1.3.6.1.2.1.31.1.1.1.15.443|66|0 +1.3.6.1.2.1.31.1.1.1.15.444|66|0 +1.3.6.1.2.1.31.1.1.1.15.445|66|0 +1.3.6.1.2.1.31.1.1.1.15.446|66|0 +1.3.6.1.2.1.31.1.1.1.15.447|66|0 +1.3.6.1.2.1.31.1.1.1.15.448|66|0 +1.3.6.1.2.1.31.1.1.1.15.449|66|0 +1.3.6.1.2.1.31.1.1.1.15.450|66|0 +1.3.6.1.2.1.31.1.1.1.15.451|66|0 +1.3.6.1.2.1.31.1.1.1.15.452|66|0 +1.3.6.1.2.1.31.1.1.1.15.453|66|0 +1.3.6.1.2.1.31.1.1.1.15.454|66|0 +1.3.6.1.2.1.31.1.1.1.15.455|66|0 +1.3.6.1.2.1.31.1.1.1.15.456|66|0 +1.3.6.1.2.1.31.1.1.1.15.457|66|0 +1.3.6.1.2.1.31.1.1.1.15.462|66|0 +1.3.6.1.2.1.31.1.1.1.15.464|66|100 +1.3.6.1.2.1.31.1.1.1.15.465|66|100 +1.3.6.1.2.1.31.1.1.1.15.467|66|0 +1.3.6.1.2.1.31.1.1.1.15.468|66|0 +1.3.6.1.2.1.31.1.1.1.15.474|66|0 +1.3.6.1.2.1.31.1.1.1.15.475|66|0 +1.3.6.1.2.1.31.1.1.1.15.476|66|0 +1.3.6.1.2.1.31.1.1.1.15.477|66|100 +1.3.6.1.2.1.31.1.1.1.15.478|66|0 +1.3.6.1.2.1.31.1.1.1.15.487|66|20000 +1.3.6.1.2.1.31.1.1.1.15.489|66|0 +1.3.6.1.2.1.31.1.1.1.15.490|66|0 +1.3.6.1.2.1.31.1.1.1.15.493|66|0 +1.3.6.1.2.1.31.1.1.1.15.494|66|100 +1.3.6.1.2.1.31.1.1.1.15.495|66|100 +1.3.6.1.2.1.31.1.1.1.15.496|66|100 +1.3.6.1.2.1.31.1.1.1.15.497|66|3000 +1.3.6.1.2.1.31.1.1.1.15.502|66|0 +1.3.6.1.2.1.31.1.1.1.15.503|66|0 +1.3.6.1.2.1.31.1.1.1.15.504|66|0 +1.3.6.1.2.1.31.1.1.1.15.505|66|0 +1.3.6.1.2.1.31.1.1.1.15.506|66|1000 +1.3.6.1.2.1.31.1.1.1.15.509|66|1000 +1.3.6.1.2.1.31.1.1.1.15.510|66|0 +1.3.6.1.2.1.31.1.1.1.15.511|66|0 +1.3.6.1.2.1.31.1.1.1.15.513|66|0 +1.3.6.1.2.1.31.1.1.1.15.514|66|100 +1.3.6.1.2.1.31.1.1.1.15.515|66|100 +1.3.6.1.2.1.31.1.1.1.15.516|66|0 +1.3.6.1.2.1.31.1.1.1.15.517|66|0 +1.3.6.1.2.1.31.1.1.1.15.518|66|100 +1.3.6.1.2.1.31.1.1.1.15.519|66|100 +1.3.6.1.2.1.31.1.1.1.15.520|66|100 +1.3.6.1.2.1.31.1.1.1.15.523|66|0 +1.3.6.1.2.1.31.1.1.1.15.524|66|0 +1.3.6.1.2.1.31.1.1.1.15.525|66|0 +1.3.6.1.2.1.31.1.1.1.15.526|66|0 +1.3.6.1.2.1.31.1.1.1.15.527|66|0 +1.3.6.1.2.1.31.1.1.1.15.528|66|0 +1.3.6.1.2.1.31.1.1.1.15.529|66|0 +1.3.6.1.2.1.31.1.1.1.15.530|66|0 +1.3.6.1.2.1.31.1.1.1.15.531|66|0 +1.3.6.1.2.1.31.1.1.1.15.532|66|0 +1.3.6.1.2.1.31.1.1.1.15.533|66|0 +1.3.6.1.2.1.31.1.1.1.15.534|66|0 +1.3.6.1.2.1.31.1.1.1.15.535|66|1000 +1.3.6.1.2.1.31.1.1.1.15.536|66|1000 +1.3.6.1.2.1.31.1.1.1.15.538|66|1000 +1.3.6.1.2.1.31.1.1.1.15.540|66|0 +1.3.6.1.2.1.31.1.1.1.15.541|66|0 +1.3.6.1.2.1.31.1.1.1.15.542|66|1000 +1.3.6.1.2.1.31.1.1.1.15.543|66|1000 +1.3.6.1.2.1.31.1.1.1.15.544|66|1000 +1.3.6.1.2.1.31.1.1.1.15.545|66|0 +1.3.6.1.2.1.31.1.1.1.15.546|66|0 +1.3.6.1.2.1.31.1.1.1.15.547|66|10000 +1.3.6.1.2.1.31.1.1.1.15.548|66|10000 +1.3.6.1.2.1.31.1.1.1.15.549|66|10000 +1.3.6.1.2.1.31.1.1.1.15.550|66|10000 +1.3.6.1.2.1.31.1.1.1.15.551|66|10000 +1.3.6.1.2.1.31.1.1.1.15.552|66|10000 +1.3.6.1.2.1.31.1.1.1.15.553|66|10000 +1.3.6.1.2.1.31.1.1.1.15.554|66|10000 +1.3.6.1.2.1.31.1.1.1.15.555|66|10 +1.3.6.1.2.1.31.1.1.1.15.556|66|100 +1.3.6.1.2.1.31.1.1.1.15.557|66|1000 +1.3.6.1.2.1.31.1.1.1.15.558|66|1000 +1.3.6.1.2.1.31.1.1.1.15.559|66|1000 +1.3.6.1.2.1.31.1.1.1.15.560|66|1000 +1.3.6.1.2.1.31.1.1.1.15.561|66|100 +1.3.6.1.2.1.31.1.1.1.15.562|66|1000 +1.3.6.1.2.1.31.1.1.1.15.563|66|1000 +1.3.6.1.2.1.31.1.1.1.15.564|66|1000 +1.3.6.1.2.1.31.1.1.1.15.565|66|100 +1.3.6.1.2.1.31.1.1.1.15.566|66|1000 +1.3.6.1.2.1.31.1.1.1.15.567|66|1000 +1.3.6.1.2.1.31.1.1.1.15.568|66|1000 +1.3.6.1.2.1.31.1.1.1.15.569|66|1000 +1.3.6.1.2.1.31.1.1.1.15.570|66|1000 +1.3.6.1.2.1.31.1.1.1.15.571|66|100 +1.3.6.1.2.1.31.1.1.1.15.572|66|1000 +1.3.6.1.2.1.31.1.1.1.15.573|66|1000 +1.3.6.1.2.1.31.1.1.1.15.574|66|1000 +1.3.6.1.2.1.31.1.1.1.15.575|66|1000 +1.3.6.1.2.1.31.1.1.1.15.576|66|1000 +1.3.6.1.2.1.31.1.1.1.15.577|66|1000 +1.3.6.1.2.1.31.1.1.1.15.578|66|1000 +1.3.6.1.2.1.31.1.1.1.15.579|66|1000 +1.3.6.1.2.1.31.1.1.1.15.580|66|100 +1.3.6.1.2.1.31.1.1.1.15.581|66|100 +1.3.6.1.2.1.31.1.1.1.15.582|66|1000 +1.3.6.1.2.1.31.1.1.1.15.583|66|100 +1.3.6.1.2.1.31.1.1.1.15.584|66|100 +1.3.6.1.2.1.31.1.1.1.15.585|66|1000 +1.3.6.1.2.1.31.1.1.1.15.586|66|100 +1.3.6.1.2.1.31.1.1.1.15.587|66|100 +1.3.6.1.2.1.31.1.1.1.15.588|66|1000 +1.3.6.1.2.1.31.1.1.1.15.589|66|1000 +1.3.6.1.2.1.31.1.1.1.15.590|66|1000 +1.3.6.1.2.1.31.1.1.1.15.591|66|1000 +1.3.6.1.2.1.31.1.1.1.15.592|66|1000 +1.3.6.1.2.1.31.1.1.1.15.593|66|1000 +1.3.6.1.2.1.31.1.1.1.15.594|66|1000 +1.3.6.1.2.1.31.1.1.1.15.595|66|100 +1.3.6.1.2.1.31.1.1.1.15.596|66|1000 +1.3.6.1.2.1.31.1.1.1.15.597|66|1000 +1.3.6.1.2.1.31.1.1.1.15.598|66|1000 +1.3.6.1.2.1.31.1.1.1.15.599|66|1000 +1.3.6.1.2.1.31.1.1.1.15.600|66|100 +1.3.6.1.2.1.31.1.1.1.15.601|66|100 +1.3.6.1.2.1.31.1.1.1.15.602|66|1000 +1.3.6.1.2.1.31.1.1.1.15.603|66|100 +1.3.6.1.2.1.31.1.1.1.15.604|66|100 +1.3.6.1.2.1.31.1.1.1.15.605|66|1000 +1.3.6.1.2.1.31.1.1.1.15.606|66|1000 +1.3.6.1.2.1.31.1.1.1.15.607|66|1000 +1.3.6.1.2.1.31.1.1.1.15.608|66|1000 +1.3.6.1.2.1.31.1.1.1.15.609|66|1000 +1.3.6.1.2.1.31.1.1.1.15.610|66|1000 +1.3.6.1.2.1.31.1.1.1.15.611|66|1000 +1.3.6.1.2.1.31.1.1.1.15.612|66|1000 +1.3.6.1.2.1.31.1.1.1.15.613|66|1000 +1.3.6.1.2.1.31.1.1.1.15.614|66|1000 +1.3.6.1.2.1.31.1.1.1.15.615|66|1000 +1.3.6.1.2.1.31.1.1.1.15.616|66|1000 +1.3.6.1.2.1.31.1.1.1.15.617|66|1000 +1.3.6.1.2.1.31.1.1.1.15.618|66|100 +1.3.6.1.2.1.31.1.1.1.15.619|66|100 +1.3.6.1.2.1.31.1.1.1.15.620|66|100 +1.3.6.1.2.1.31.1.1.1.15.621|66|1000 +1.3.6.1.2.1.31.1.1.1.15.622|66|1000 +1.3.6.1.2.1.31.1.1.1.15.623|66|1000 +1.3.6.1.2.1.31.1.1.1.15.624|66|1000 +1.3.6.1.2.1.31.1.1.1.15.625|66|1000 +1.3.6.1.2.1.31.1.1.1.15.626|66|1000 +1.3.6.1.2.1.31.1.1.1.15.627|66|100 +1.3.6.1.2.1.31.1.1.1.15.628|66|1000 +1.3.6.1.2.1.31.1.1.1.15.629|66|100 +1.3.6.1.2.1.31.1.1.1.15.630|66|1000 +1.3.6.1.2.1.31.1.1.1.15.631|66|1000 +1.3.6.1.2.1.31.1.1.1.15.632|66|100 +1.3.6.1.2.1.31.1.1.1.15.633|66|1000 +1.3.6.1.2.1.31.1.1.1.15.634|66|1000 +1.3.6.1.2.1.31.1.1.1.15.635|66|1000 +1.3.6.1.2.1.31.1.1.1.15.636|66|1000 +1.3.6.1.2.1.31.1.1.1.15.637|66|1000 +1.3.6.1.2.1.31.1.1.1.15.638|66|1000 +1.3.6.1.2.1.31.1.1.1.15.639|66|1000 +1.3.6.1.2.1.31.1.1.1.15.640|66|1000 +1.3.6.1.2.1.31.1.1.1.15.641|66|1000 +1.3.6.1.2.1.31.1.1.1.15.642|66|1000 +1.3.6.1.2.1.31.1.1.1.15.643|66|1000 +1.3.6.1.2.1.31.1.1.1.15.644|66|100 +1.3.6.1.2.1.31.1.1.1.15.645|66|1000 +1.3.6.1.2.1.31.1.1.1.15.646|66|1000 +1.3.6.1.2.1.31.1.1.1.15.647|66|1000 +1.3.6.1.2.1.31.1.1.1.15.648|66|1000 +1.3.6.1.2.1.31.1.1.1.15.649|66|1000 +1.3.6.1.2.1.31.1.1.1.15.650|66|1000 +1.3.6.1.2.1.31.1.1.1.15.651|66|1000 +1.3.6.1.2.1.31.1.1.1.15.652|66|1000 +1.3.6.1.2.1.31.1.1.1.15.653|66|1000 +1.3.6.1.2.1.31.1.1.1.15.654|66|10000 +1.3.6.1.2.1.31.1.1.1.15.655|66|10000 +1.3.6.1.2.1.31.1.1.1.15.656|66|1000 +1.3.6.1.2.1.31.1.1.1.15.657|66|1000 +1.3.6.1.2.1.31.1.1.1.15.658|66|1000 +1.3.6.1.2.1.31.1.1.1.15.659|66|100 +1.3.6.1.2.1.31.1.1.1.15.660|66|1000 +1.3.6.1.2.1.31.1.1.1.15.661|66|1000 +1.3.6.1.2.1.31.1.1.1.15.662|66|1000 +1.3.6.1.2.1.31.1.1.1.15.663|66|1000 +1.3.6.1.2.1.31.1.1.1.15.664|66|1000 +1.3.6.1.2.1.31.1.1.1.15.665|66|1000 +1.3.6.1.2.1.31.1.1.1.15.666|66|1000 +1.3.6.1.2.1.31.1.1.1.15.667|66|1000 +1.3.6.1.2.1.31.1.1.1.15.668|66|1000 +1.3.6.1.2.1.31.1.1.1.15.669|66|100 +1.3.6.1.2.1.31.1.1.1.15.670|66|1000 +1.3.6.1.2.1.31.1.1.1.15.671|66|1000 +1.3.6.1.2.1.31.1.1.1.15.672|66|1000 +1.3.6.1.2.1.31.1.1.1.15.673|66|1000 +1.3.6.1.2.1.31.1.1.1.15.674|66|100 +1.3.6.1.2.1.31.1.1.1.15.675|66|1000 +1.3.6.1.2.1.31.1.1.1.15.676|66|1000 +1.3.6.1.2.1.31.1.1.1.15.677|66|1000 +1.3.6.1.2.1.31.1.1.1.15.678|66|1000 +1.3.6.1.2.1.31.1.1.1.15.679|66|1000 +1.3.6.1.2.1.31.1.1.1.15.680|66|100 +1.3.6.1.2.1.31.1.1.1.15.681|66|1000 +1.3.6.1.2.1.31.1.1.1.15.682|66|1000 +1.3.6.1.2.1.31.1.1.1.15.683|66|1000 +1.3.6.1.2.1.31.1.1.1.15.684|66|1000 +1.3.6.1.2.1.31.1.1.1.15.685|66|100 +1.3.6.1.2.1.31.1.1.1.15.686|66|100 +1.3.6.1.2.1.31.1.1.1.15.687|66|100 +1.3.6.1.2.1.31.1.1.1.15.688|66|100 +1.3.6.1.2.1.31.1.1.1.15.689|66|100 +1.3.6.1.2.1.31.1.1.1.15.690|66|100 +1.3.6.1.2.1.31.1.1.1.15.691|66|100 +1.3.6.1.2.1.31.1.1.1.15.692|66|1000 +1.3.6.1.2.1.31.1.1.1.15.693|66|1000 +1.3.6.1.2.1.31.1.1.1.15.694|66|1000 +1.3.6.1.2.1.31.1.1.1.15.695|66|1000 +1.3.6.1.2.1.31.1.1.1.15.696|66|1000 +1.3.6.1.2.1.31.1.1.1.15.697|66|1000 +1.3.6.1.2.1.31.1.1.1.15.698|66|1000 +1.3.6.1.2.1.31.1.1.1.15.699|66|1000 +1.3.6.1.2.1.31.1.1.1.15.700|66|1000 +1.3.6.1.2.1.31.1.1.1.15.701|66|1000 +1.3.6.1.2.1.31.1.1.1.15.702|66|1000 +1.3.6.1.2.1.31.1.1.1.15.703|66|1000 +1.3.6.1.2.1.31.1.1.1.15.704|66|1000 +1.3.6.1.2.1.31.1.1.1.15.705|66|1000 +1.3.6.1.2.1.31.1.1.1.15.706|66|1000 +1.3.6.1.2.1.31.1.1.1.15.707|66|100 +1.3.6.1.2.1.31.1.1.1.15.708|66|1000 +1.3.6.1.2.1.31.1.1.1.15.709|66|1000 +1.3.6.1.2.1.31.1.1.1.15.710|66|1000 +1.3.6.1.2.1.31.1.1.1.15.711|66|1000 +1.3.6.1.2.1.31.1.1.1.15.712|66|1000 +1.3.6.1.2.1.31.1.1.1.15.713|66|1000 +1.3.6.1.2.1.31.1.1.1.15.714|66|1000 +1.3.6.1.2.1.31.1.1.1.15.715|66|1000 +1.3.6.1.2.1.31.1.1.1.15.716|66|1000 +1.3.6.1.2.1.31.1.1.1.15.717|66|100 +1.3.6.1.2.1.31.1.1.1.15.718|66|100 +1.3.6.1.2.1.31.1.1.1.15.719|66|100 +1.3.6.1.2.1.31.1.1.1.15.720|66|1000 +1.3.6.1.2.1.31.1.1.1.15.721|66|100 +1.3.6.1.2.1.31.1.1.1.15.722|66|100 +1.3.6.1.2.1.31.1.1.1.15.723|66|100 +1.3.6.1.2.1.31.1.1.1.15.724|66|1000 +1.3.6.1.2.1.31.1.1.1.15.725|66|100 +1.3.6.1.2.1.31.1.1.1.15.726|66|1000 +1.3.6.1.2.1.31.1.1.1.15.727|66|1000 +1.3.6.1.2.1.31.1.1.1.15.728|66|1000 +1.3.6.1.2.1.31.1.1.1.15.729|66|1000 +1.3.6.1.2.1.31.1.1.1.15.730|66|1000 +1.3.6.1.2.1.31.1.1.1.15.731|66|1000 +1.3.6.1.2.1.31.1.1.1.15.732|66|1000 +1.3.6.1.2.1.31.1.1.1.15.733|66|100 +1.3.6.1.2.1.31.1.1.1.15.734|66|100 +1.3.6.1.2.1.31.1.1.1.15.735|66|100 +1.3.6.1.2.1.31.1.1.1.15.736|66|1000 +1.3.6.1.2.1.31.1.1.1.15.737|66|1000 +1.3.6.1.2.1.31.1.1.1.15.738|66|1000 +1.3.6.1.2.1.31.1.1.1.15.739|66|1000 +1.3.6.1.2.1.31.1.1.1.15.740|66|1000 +1.3.6.1.2.1.31.1.1.1.15.741|66|1000 +1.3.6.1.2.1.31.1.1.1.15.742|66|1000 +1.3.6.1.2.1.31.1.1.1.15.743|66|1000 +1.3.6.1.2.1.31.1.1.1.15.744|66|1000 +1.3.6.1.2.1.31.1.1.1.15.745|66|100 +1.3.6.1.2.1.31.1.1.1.15.746|66|1000 +1.3.6.1.2.1.31.1.1.1.15.747|66|1000 +1.3.6.1.2.1.31.1.1.1.15.748|66|1000 +1.3.6.1.2.1.31.1.1.1.15.749|66|100 +1.3.6.1.2.1.31.1.1.1.15.750|66|1000 +1.3.6.1.2.1.31.1.1.1.15.751|66|100 +1.3.6.1.2.1.31.1.1.1.15.768|66|0 +1.3.6.1.2.1.31.1.1.1.15.769|66|1000 +1.3.6.1.2.1.31.1.1.1.15.770|66|1000 +1.3.6.1.2.1.31.1.1.1.15.771|66|0 +1.3.6.1.2.1.31.1.1.1.15.772|66|0 +1.3.6.1.2.1.31.1.1.1.15.773|66|0 +1.3.6.1.2.1.31.1.1.1.15.774|66|1000 +1.3.6.1.2.1.31.1.1.1.15.775|66|1000 +1.3.6.1.2.1.31.1.1.1.15.776|66|1000 +1.3.6.1.2.1.31.1.1.1.15.777|66|0 +1.3.6.1.2.1.31.1.1.1.15.778|66|0 +1.3.6.1.2.1.31.1.1.1.15.779|66|0 +1.3.6.1.2.1.31.1.1.1.15.780|66|0 +1.3.6.1.2.1.31.1.1.1.15.781|66|0 +1.3.6.1.2.1.31.1.1.1.15.782|66|0 +1.3.6.1.2.1.31.1.1.1.15.783|66|0 +1.3.6.1.2.1.31.1.1.1.15.784|66|0 +1.3.6.1.2.1.31.1.1.1.15.785|66|1000 +1.3.6.1.2.1.31.1.1.1.15.786|66|0 +1.3.6.1.2.1.31.1.1.1.15.787|66|0 +1.3.6.1.2.1.31.1.1.1.15.788|66|0 +1.3.6.1.2.1.31.1.1.1.15.789|66|0 +1.3.6.1.2.1.31.1.1.1.15.790|66|0 +1.3.6.1.2.1.31.1.1.1.15.791|66|0 +1.3.6.1.2.1.31.1.1.1.15.792|66|1000 +1.3.6.1.2.1.31.1.1.1.15.793|66|1000 +1.3.6.1.2.1.31.1.1.1.15.794|66|1000 +1.3.6.1.2.1.31.1.1.1.15.795|66|0 +1.3.6.1.2.1.31.1.1.1.15.796|66|0 +1.3.6.1.2.1.31.1.1.1.15.797|66|0 +1.3.6.1.2.1.31.1.1.1.15.798|66|0 +1.3.6.1.2.1.31.1.1.1.15.799|66|0 +1.3.6.1.2.1.31.1.1.1.15.800|66|0 +1.3.6.1.2.1.31.1.1.1.15.801|66|1000 +1.3.6.1.2.1.31.1.1.1.15.802|66|1000 +1.3.6.1.2.1.31.1.1.1.15.803|66|1000 +1.3.6.1.2.1.31.1.1.1.15.804|66|1000 +1.3.6.1.2.1.31.1.1.1.15.805|66|1000 +1.3.6.1.2.1.31.1.1.1.15.806|66|1000 +1.3.6.1.2.1.31.1.1.1.15.807|66|1000 +1.3.6.1.2.1.31.1.1.1.15.808|66|0 +1.3.6.1.2.1.31.1.1.1.15.809|66|0 +1.3.6.1.2.1.31.1.1.1.15.810|66|1000 +1.3.6.1.2.1.31.1.1.1.15.811|66|1000 +1.3.6.1.2.1.31.1.1.1.15.812|66|0 +1.3.6.1.2.1.31.1.1.1.15.813|66|0 +1.3.6.1.2.1.31.1.1.1.15.814|66|1000 +1.3.6.1.2.1.31.1.1.1.15.815|66|1000 +1.3.6.1.2.1.31.1.1.1.15.816|66|0 +1.3.6.1.2.1.31.1.1.1.15.817|66|0 +1.3.6.1.2.1.31.1.1.1.15.818|66|1000 +1.3.6.1.2.1.31.1.1.1.15.819|66|0 +1.3.6.1.2.1.31.1.1.1.15.820|66|0 +1.3.6.1.2.1.31.1.1.1.15.821|66|0 +1.3.6.1.2.1.31.1.1.1.15.822|66|0 +1.3.6.1.2.1.31.1.1.1.15.823|66|0 +1.3.6.1.2.1.31.1.1.1.15.824|66|0 +1.3.6.1.2.1.31.1.1.1.15.825|66|0 +1.3.6.1.2.1.31.1.1.1.15.826|66|0 +1.3.6.1.2.1.31.1.1.1.15.827|66|0 +1.3.6.1.2.1.31.1.1.1.15.828|66|0 +1.3.6.1.2.1.31.1.1.1.15.829|66|0 +1.3.6.1.2.1.31.1.1.1.15.830|66|0 +1.3.6.1.2.1.31.1.1.1.15.831|66|0 +1.3.6.1.2.1.31.1.1.1.15.832|66|0 +1.3.6.1.2.1.31.1.1.1.15.833|66|0 +1.3.6.1.2.1.31.1.1.1.15.834|66|1000 +1.3.6.1.2.1.31.1.1.1.15.835|66|1000 +1.3.6.1.2.1.31.1.1.1.15.836|66|1000 +1.3.6.1.2.1.31.1.1.1.15.837|66|0 +1.3.6.1.2.1.31.1.1.1.15.838|66|1000 +1.3.6.1.2.1.31.1.1.1.15.839|66|0 +1.3.6.1.2.1.31.1.1.1.15.840|66|0 +1.3.6.1.2.1.31.1.1.1.15.841|66|0 +1.3.6.1.2.1.31.1.1.1.15.842|66|0 +1.3.6.1.2.1.31.1.1.1.15.843|66|0 +1.3.6.1.2.1.31.1.1.1.15.844|66|0 +1.3.6.1.2.1.31.1.1.1.15.845|66|0 +1.3.6.1.2.1.31.1.1.1.15.846|66|0 +1.3.6.1.2.1.31.1.1.1.15.847|66|0 +1.3.6.1.2.1.31.1.1.1.15.848|66|1000 +1.3.6.1.2.1.31.1.1.1.15.849|66|1000 +1.3.6.1.2.1.31.1.1.1.15.850|66|1000 +1.3.6.1.2.1.31.1.1.1.15.851|66|0 +1.3.6.1.2.1.31.1.1.1.15.852|66|0 +1.3.6.1.2.1.31.1.1.1.15.853|66|0 +1.3.6.1.2.1.31.1.1.1.15.854|66|1000 +1.3.6.1.2.1.31.1.1.1.15.855|66|0 +1.3.6.1.2.1.31.1.1.1.15.856|66|0 +1.3.6.1.2.1.31.1.1.1.15.857|66|0 +1.3.6.1.2.1.31.1.1.1.15.858|66|0 +1.3.6.1.2.1.31.1.1.1.15.859|66|0 +1.3.6.1.2.1.31.1.1.1.15.864|66|0 +1.3.6.1.2.1.31.1.1.1.15.868|66|0 +1.3.6.1.2.1.31.1.1.1.15.869|66|0 +1.3.6.1.2.1.31.1.1.1.15.870|66|0 +1.3.6.1.2.1.31.1.1.1.15.871|66|1000 +1.3.6.1.2.1.31.1.1.1.15.872|66|1000 +1.3.6.1.2.1.31.1.1.1.15.873|66|0 +1.3.6.1.2.1.31.1.1.1.15.874|66|1000 +1.3.6.1.2.1.31.1.1.1.15.875|66|1000 +1.3.6.1.2.1.31.1.1.1.15.876|66|1000 +1.3.6.1.2.1.31.1.1.1.15.877|66|1000 +1.3.6.1.2.1.31.1.1.1.15.878|66|0 +1.3.6.1.2.1.31.1.1.1.15.879|66|0 +1.3.6.1.2.1.31.1.1.1.15.880|66|0 +1.3.6.1.2.1.31.1.1.1.15.881|66|0 +1.3.6.1.2.1.31.1.1.1.15.882|66|0 +1.3.6.1.2.1.31.1.1.1.15.883|66|1000 +1.3.6.1.2.1.31.1.1.1.15.884|66|0 +1.3.6.1.2.1.31.1.1.1.15.885|66|1000 +1.3.6.1.2.1.31.1.1.1.15.886|66|0 +1.3.6.1.2.1.31.1.1.1.15.887|66|0 +1.3.6.1.2.1.31.1.1.1.15.888|66|0 +1.3.6.1.2.1.31.1.1.1.15.889|66|0 +1.3.6.1.2.1.31.1.1.1.15.890|66|0 +1.3.6.1.2.1.31.1.1.1.15.891|66|0 +1.3.6.1.2.1.31.1.1.1.15.892|66|0 +1.3.6.1.2.1.31.1.1.1.15.893|66|0 +1.3.6.1.2.1.31.1.1.1.15.894|66|0 +1.3.6.1.2.1.31.1.1.1.15.895|66|0 +1.3.6.1.2.1.31.1.1.1.15.896|66|0 +1.3.6.1.2.1.31.1.1.1.15.897|66|0 +1.3.6.1.2.1.31.1.1.1.15.898|66|0 +1.3.6.1.2.1.31.1.1.1.15.899|66|0 +1.3.6.1.2.1.31.1.1.1.15.900|66|0 +1.3.6.1.2.1.31.1.1.1.15.901|66|0 +1.3.6.1.2.1.31.1.1.1.15.902|66|0 +1.3.6.1.2.1.31.1.1.1.15.903|66|0 +1.3.6.1.2.1.31.1.1.1.15.904|66|0 +1.3.6.1.2.1.31.1.1.1.15.905|66|0 +1.3.6.1.2.1.31.1.1.1.15.906|66|0 +1.3.6.1.2.1.31.1.1.1.15.907|66|1000 +1.3.6.1.2.1.31.1.1.1.15.908|66|1000 +1.3.6.1.2.1.31.1.1.1.15.909|66|1000 +1.3.6.1.2.1.31.1.1.1.15.910|66|0 +1.3.6.1.2.1.31.1.1.1.15.911|66|0 +1.3.6.1.2.1.31.1.1.1.15.912|66|0 +1.3.6.1.2.1.31.1.1.1.15.913|66|0 +1.3.6.1.2.1.31.1.1.1.15.914|66|0 +1.3.6.1.2.1.31.1.1.1.15.915|66|0 +1.3.6.1.2.1.31.1.1.1.15.916|66|0 +1.3.6.1.2.1.31.1.1.1.15.917|66|0 +1.3.6.1.2.1.31.1.1.1.15.918|66|0 +1.3.6.1.2.1.31.1.1.1.15.919|66|1000 +1.3.6.1.2.1.31.1.1.1.15.920|66|1000 +1.3.6.1.2.1.31.1.1.1.15.921|66|1000 +1.3.6.1.2.1.31.1.1.1.15.922|66|0 +1.3.6.1.2.1.31.1.1.1.15.923|66|0 +1.3.6.1.2.1.31.1.1.1.15.924|66|0 +1.3.6.1.2.1.31.1.1.1.15.925|66|1000 +1.3.6.1.2.1.31.1.1.1.15.926|66|1000 +1.3.6.1.2.1.31.1.1.1.15.927|66|1000 +1.3.6.1.2.1.31.1.1.1.15.928|66|0 +1.3.6.1.2.1.31.1.1.1.15.929|66|0 +1.3.6.1.2.1.31.1.1.1.15.930|66|0 +1.3.6.1.2.1.31.1.1.1.15.931|66|0 +1.3.6.1.2.1.31.1.1.1.15.932|66|0 +1.3.6.1.2.1.31.1.1.1.15.933|66|0 +1.3.6.1.2.1.31.1.1.1.15.934|66|0 +1.3.6.1.2.1.31.1.1.1.15.935|66|0 +1.3.6.1.2.1.31.1.1.1.15.936|66|0 +1.3.6.1.2.1.31.1.1.1.15.937|66|0 +1.3.6.1.2.1.31.1.1.1.15.938|66|1000 +1.3.6.1.2.1.31.1.1.1.15.939|66|1000 +1.3.6.1.2.1.31.1.1.1.15.940|66|1000 +1.3.6.1.2.1.31.1.1.1.15.941|66|1000 +1.3.6.1.2.1.31.1.1.1.15.942|66|0 +1.3.6.1.2.1.31.1.1.1.15.943|66|0 +1.3.6.1.2.1.31.1.1.1.15.944|66|0 +1.3.6.1.2.1.31.1.1.1.15.945|66|0 +1.3.6.1.2.1.31.1.1.1.15.946|66|0 +1.3.6.1.2.1.31.1.1.1.15.947|66|1000 +1.3.6.1.2.1.31.1.1.1.15.948|66|1000 +1.3.6.1.2.1.31.1.1.1.15.949|66|0 +1.3.6.1.2.1.31.1.1.1.16.251|2|2 +1.3.6.1.2.1.31.1.1.1.16.252|2|2 +1.3.6.1.2.1.31.1.1.1.16.253|2|2 +1.3.6.1.2.1.31.1.1.1.16.254|2|2 +1.3.6.1.2.1.31.1.1.1.16.255|2|2 +1.3.6.1.2.1.31.1.1.1.16.258|2|2 +1.3.6.1.2.1.31.1.1.1.16.259|2|2 +1.3.6.1.2.1.31.1.1.1.16.260|2|2 +1.3.6.1.2.1.31.1.1.1.16.261|2|2 +1.3.6.1.2.1.31.1.1.1.16.262|2|2 +1.3.6.1.2.1.31.1.1.1.16.263|2|2 +1.3.6.1.2.1.31.1.1.1.16.264|2|2 +1.3.6.1.2.1.31.1.1.1.16.265|2|2 +1.3.6.1.2.1.31.1.1.1.16.266|2|2 +1.3.6.1.2.1.31.1.1.1.16.267|2|2 +1.3.6.1.2.1.31.1.1.1.16.268|2|2 +1.3.6.1.2.1.31.1.1.1.16.269|2|2 +1.3.6.1.2.1.31.1.1.1.16.270|2|2 +1.3.6.1.2.1.31.1.1.1.16.273|2|2 +1.3.6.1.2.1.31.1.1.1.16.274|2|2 +1.3.6.1.2.1.31.1.1.1.16.275|2|2 +1.3.6.1.2.1.31.1.1.1.16.276|2|2 +1.3.6.1.2.1.31.1.1.1.16.277|2|2 +1.3.6.1.2.1.31.1.1.1.16.278|2|2 +1.3.6.1.2.1.31.1.1.1.16.280|2|2 +1.3.6.1.2.1.31.1.1.1.16.281|2|2 +1.3.6.1.2.1.31.1.1.1.16.282|2|2 +1.3.6.1.2.1.31.1.1.1.16.283|2|2 +1.3.6.1.2.1.31.1.1.1.16.284|2|2 +1.3.6.1.2.1.31.1.1.1.16.285|2|2 +1.3.6.1.2.1.31.1.1.1.16.286|2|2 +1.3.6.1.2.1.31.1.1.1.16.287|2|2 +1.3.6.1.2.1.31.1.1.1.16.288|2|2 +1.3.6.1.2.1.31.1.1.1.16.291|2|2 +1.3.6.1.2.1.31.1.1.1.16.292|2|2 +1.3.6.1.2.1.31.1.1.1.16.293|2|2 +1.3.6.1.2.1.31.1.1.1.16.294|2|2 +1.3.6.1.2.1.31.1.1.1.16.295|2|2 +1.3.6.1.2.1.31.1.1.1.16.395|2|2 +1.3.6.1.2.1.31.1.1.1.16.396|2|2 +1.3.6.1.2.1.31.1.1.1.16.398|2|2 +1.3.6.1.2.1.31.1.1.1.16.399|2|2 +1.3.6.1.2.1.31.1.1.1.16.414|2|2 +1.3.6.1.2.1.31.1.1.1.16.415|2|2 +1.3.6.1.2.1.31.1.1.1.16.417|2|2 +1.3.6.1.2.1.31.1.1.1.16.418|2|2 +1.3.6.1.2.1.31.1.1.1.16.438|2|2 +1.3.6.1.2.1.31.1.1.1.16.439|2|2 +1.3.6.1.2.1.31.1.1.1.16.440|2|2 +1.3.6.1.2.1.31.1.1.1.16.441|2|2 +1.3.6.1.2.1.31.1.1.1.16.442|2|2 +1.3.6.1.2.1.31.1.1.1.16.443|2|2 +1.3.6.1.2.1.31.1.1.1.16.444|2|2 +1.3.6.1.2.1.31.1.1.1.16.445|2|2 +1.3.6.1.2.1.31.1.1.1.16.446|2|2 +1.3.6.1.2.1.31.1.1.1.16.447|2|2 +1.3.6.1.2.1.31.1.1.1.16.448|2|2 +1.3.6.1.2.1.31.1.1.1.16.449|2|2 +1.3.6.1.2.1.31.1.1.1.16.450|2|2 +1.3.6.1.2.1.31.1.1.1.16.451|2|2 +1.3.6.1.2.1.31.1.1.1.16.452|2|2 +1.3.6.1.2.1.31.1.1.1.16.453|2|2 +1.3.6.1.2.1.31.1.1.1.16.454|2|2 +1.3.6.1.2.1.31.1.1.1.16.455|2|2 +1.3.6.1.2.1.31.1.1.1.16.456|2|2 +1.3.6.1.2.1.31.1.1.1.16.457|2|2 +1.3.6.1.2.1.31.1.1.1.16.462|2|2 +1.3.6.1.2.1.31.1.1.1.16.464|2|2 +1.3.6.1.2.1.31.1.1.1.16.465|2|2 +1.3.6.1.2.1.31.1.1.1.16.467|2|2 +1.3.6.1.2.1.31.1.1.1.16.468|2|2 +1.3.6.1.2.1.31.1.1.1.16.474|2|2 +1.3.6.1.2.1.31.1.1.1.16.475|2|2 +1.3.6.1.2.1.31.1.1.1.16.476|2|2 +1.3.6.1.2.1.31.1.1.1.16.477|2|2 +1.3.6.1.2.1.31.1.1.1.16.478|2|2 +1.3.6.1.2.1.31.1.1.1.16.487|2|2 +1.3.6.1.2.1.31.1.1.1.16.489|2|2 +1.3.6.1.2.1.31.1.1.1.16.490|2|2 +1.3.6.1.2.1.31.1.1.1.16.493|2|2 +1.3.6.1.2.1.31.1.1.1.16.494|2|2 +1.3.6.1.2.1.31.1.1.1.16.495|2|2 +1.3.6.1.2.1.31.1.1.1.16.496|2|2 +1.3.6.1.2.1.31.1.1.1.16.497|2|2 +1.3.6.1.2.1.31.1.1.1.16.502|2|2 +1.3.6.1.2.1.31.1.1.1.16.503|2|2 +1.3.6.1.2.1.31.1.1.1.16.504|2|2 +1.3.6.1.2.1.31.1.1.1.16.505|2|2 +1.3.6.1.2.1.31.1.1.1.16.506|2|2 +1.3.6.1.2.1.31.1.1.1.16.509|2|2 +1.3.6.1.2.1.31.1.1.1.16.510|2|2 +1.3.6.1.2.1.31.1.1.1.16.511|2|2 +1.3.6.1.2.1.31.1.1.1.16.513|2|2 +1.3.6.1.2.1.31.1.1.1.16.514|2|2 +1.3.6.1.2.1.31.1.1.1.16.515|2|2 +1.3.6.1.2.1.31.1.1.1.16.516|2|2 +1.3.6.1.2.1.31.1.1.1.16.517|2|2 +1.3.6.1.2.1.31.1.1.1.16.518|2|2 +1.3.6.1.2.1.31.1.1.1.16.519|2|2 +1.3.6.1.2.1.31.1.1.1.16.520|2|2 +1.3.6.1.2.1.31.1.1.1.16.523|2|2 +1.3.6.1.2.1.31.1.1.1.16.524|2|2 +1.3.6.1.2.1.31.1.1.1.16.525|2|2 +1.3.6.1.2.1.31.1.1.1.16.526|2|2 +1.3.6.1.2.1.31.1.1.1.16.527|2|2 +1.3.6.1.2.1.31.1.1.1.16.528|2|2 +1.3.6.1.2.1.31.1.1.1.16.529|2|2 +1.3.6.1.2.1.31.1.1.1.16.530|2|2 +1.3.6.1.2.1.31.1.1.1.16.531|2|2 +1.3.6.1.2.1.31.1.1.1.16.532|2|2 +1.3.6.1.2.1.31.1.1.1.16.533|2|2 +1.3.6.1.2.1.31.1.1.1.16.534|2|2 +1.3.6.1.2.1.31.1.1.1.16.535|2|2 +1.3.6.1.2.1.31.1.1.1.16.536|2|2 +1.3.6.1.2.1.31.1.1.1.16.538|2|2 +1.3.6.1.2.1.31.1.1.1.16.540|2|2 +1.3.6.1.2.1.31.1.1.1.16.541|2|2 +1.3.6.1.2.1.31.1.1.1.16.542|2|2 +1.3.6.1.2.1.31.1.1.1.16.543|2|2 +1.3.6.1.2.1.31.1.1.1.16.544|2|2 +1.3.6.1.2.1.31.1.1.1.16.545|2|2 +1.3.6.1.2.1.31.1.1.1.16.546|2|2 +1.3.6.1.2.1.31.1.1.1.16.547|2|2 +1.3.6.1.2.1.31.1.1.1.16.548|2|2 +1.3.6.1.2.1.31.1.1.1.16.549|2|2 +1.3.6.1.2.1.31.1.1.1.16.550|2|2 +1.3.6.1.2.1.31.1.1.1.16.551|2|2 +1.3.6.1.2.1.31.1.1.1.16.552|2|2 +1.3.6.1.2.1.31.1.1.1.16.553|2|2 +1.3.6.1.2.1.31.1.1.1.16.554|2|2 +1.3.6.1.2.1.31.1.1.1.16.555|2|2 +1.3.6.1.2.1.31.1.1.1.16.556|2|2 +1.3.6.1.2.1.31.1.1.1.16.557|2|2 +1.3.6.1.2.1.31.1.1.1.16.558|2|2 +1.3.6.1.2.1.31.1.1.1.16.559|2|2 +1.3.6.1.2.1.31.1.1.1.16.560|2|2 +1.3.6.1.2.1.31.1.1.1.16.561|2|2 +1.3.6.1.2.1.31.1.1.1.16.562|2|2 +1.3.6.1.2.1.31.1.1.1.16.563|2|2 +1.3.6.1.2.1.31.1.1.1.16.564|2|2 +1.3.6.1.2.1.31.1.1.1.16.565|2|2 +1.3.6.1.2.1.31.1.1.1.16.566|2|2 +1.3.6.1.2.1.31.1.1.1.16.567|2|2 +1.3.6.1.2.1.31.1.1.1.16.568|2|2 +1.3.6.1.2.1.31.1.1.1.16.569|2|2 +1.3.6.1.2.1.31.1.1.1.16.570|2|2 +1.3.6.1.2.1.31.1.1.1.16.571|2|2 +1.3.6.1.2.1.31.1.1.1.16.572|2|2 +1.3.6.1.2.1.31.1.1.1.16.573|2|2 +1.3.6.1.2.1.31.1.1.1.16.574|2|2 +1.3.6.1.2.1.31.1.1.1.16.575|2|2 +1.3.6.1.2.1.31.1.1.1.16.576|2|2 +1.3.6.1.2.1.31.1.1.1.16.577|2|2 +1.3.6.1.2.1.31.1.1.1.16.578|2|2 +1.3.6.1.2.1.31.1.1.1.16.579|2|2 +1.3.6.1.2.1.31.1.1.1.16.580|2|2 +1.3.6.1.2.1.31.1.1.1.16.581|2|2 +1.3.6.1.2.1.31.1.1.1.16.582|2|2 +1.3.6.1.2.1.31.1.1.1.16.583|2|2 +1.3.6.1.2.1.31.1.1.1.16.584|2|2 +1.3.6.1.2.1.31.1.1.1.16.585|2|2 +1.3.6.1.2.1.31.1.1.1.16.586|2|2 +1.3.6.1.2.1.31.1.1.1.16.587|2|2 +1.3.6.1.2.1.31.1.1.1.16.588|2|2 +1.3.6.1.2.1.31.1.1.1.16.589|2|2 +1.3.6.1.2.1.31.1.1.1.16.590|2|2 +1.3.6.1.2.1.31.1.1.1.16.591|2|2 +1.3.6.1.2.1.31.1.1.1.16.592|2|2 +1.3.6.1.2.1.31.1.1.1.16.593|2|2 +1.3.6.1.2.1.31.1.1.1.16.594|2|2 +1.3.6.1.2.1.31.1.1.1.16.595|2|2 +1.3.6.1.2.1.31.1.1.1.16.596|2|2 +1.3.6.1.2.1.31.1.1.1.16.597|2|2 +1.3.6.1.2.1.31.1.1.1.16.598|2|2 +1.3.6.1.2.1.31.1.1.1.16.599|2|2 +1.3.6.1.2.1.31.1.1.1.16.600|2|2 +1.3.6.1.2.1.31.1.1.1.16.601|2|2 +1.3.6.1.2.1.31.1.1.1.16.602|2|2 +1.3.6.1.2.1.31.1.1.1.16.603|2|2 +1.3.6.1.2.1.31.1.1.1.16.604|2|2 +1.3.6.1.2.1.31.1.1.1.16.605|2|2 +1.3.6.1.2.1.31.1.1.1.16.606|2|2 +1.3.6.1.2.1.31.1.1.1.16.607|2|2 +1.3.6.1.2.1.31.1.1.1.16.608|2|2 +1.3.6.1.2.1.31.1.1.1.16.609|2|2 +1.3.6.1.2.1.31.1.1.1.16.610|2|2 +1.3.6.1.2.1.31.1.1.1.16.611|2|2 +1.3.6.1.2.1.31.1.1.1.16.612|2|2 +1.3.6.1.2.1.31.1.1.1.16.613|2|2 +1.3.6.1.2.1.31.1.1.1.16.614|2|2 +1.3.6.1.2.1.31.1.1.1.16.615|2|2 +1.3.6.1.2.1.31.1.1.1.16.616|2|2 +1.3.6.1.2.1.31.1.1.1.16.617|2|2 +1.3.6.1.2.1.31.1.1.1.16.618|2|2 +1.3.6.1.2.1.31.1.1.1.16.619|2|2 +1.3.6.1.2.1.31.1.1.1.16.620|2|2 +1.3.6.1.2.1.31.1.1.1.16.621|2|2 +1.3.6.1.2.1.31.1.1.1.16.622|2|2 +1.3.6.1.2.1.31.1.1.1.16.623|2|2 +1.3.6.1.2.1.31.1.1.1.16.624|2|2 +1.3.6.1.2.1.31.1.1.1.16.625|2|2 +1.3.6.1.2.1.31.1.1.1.16.626|2|2 +1.3.6.1.2.1.31.1.1.1.16.627|2|2 +1.3.6.1.2.1.31.1.1.1.16.628|2|2 +1.3.6.1.2.1.31.1.1.1.16.629|2|2 +1.3.6.1.2.1.31.1.1.1.16.630|2|2 +1.3.6.1.2.1.31.1.1.1.16.631|2|2 +1.3.6.1.2.1.31.1.1.1.16.632|2|2 +1.3.6.1.2.1.31.1.1.1.16.633|2|2 +1.3.6.1.2.1.31.1.1.1.16.634|2|2 +1.3.6.1.2.1.31.1.1.1.16.635|2|2 +1.3.6.1.2.1.31.1.1.1.16.636|2|2 +1.3.6.1.2.1.31.1.1.1.16.637|2|2 +1.3.6.1.2.1.31.1.1.1.16.638|2|2 +1.3.6.1.2.1.31.1.1.1.16.639|2|2 +1.3.6.1.2.1.31.1.1.1.16.640|2|2 +1.3.6.1.2.1.31.1.1.1.16.641|2|2 +1.3.6.1.2.1.31.1.1.1.16.642|2|2 +1.3.6.1.2.1.31.1.1.1.16.643|2|2 +1.3.6.1.2.1.31.1.1.1.16.644|2|2 +1.3.6.1.2.1.31.1.1.1.16.645|2|2 +1.3.6.1.2.1.31.1.1.1.16.646|2|2 +1.3.6.1.2.1.31.1.1.1.16.647|2|2 +1.3.6.1.2.1.31.1.1.1.16.648|2|2 +1.3.6.1.2.1.31.1.1.1.16.649|2|2 +1.3.6.1.2.1.31.1.1.1.16.650|2|2 +1.3.6.1.2.1.31.1.1.1.16.651|2|2 +1.3.6.1.2.1.31.1.1.1.16.652|2|2 +1.3.6.1.2.1.31.1.1.1.16.653|2|2 +1.3.6.1.2.1.31.1.1.1.16.654|2|2 +1.3.6.1.2.1.31.1.1.1.16.655|2|2 +1.3.6.1.2.1.31.1.1.1.16.656|2|2 +1.3.6.1.2.1.31.1.1.1.16.657|2|2 +1.3.6.1.2.1.31.1.1.1.16.658|2|2 +1.3.6.1.2.1.31.1.1.1.16.659|2|2 +1.3.6.1.2.1.31.1.1.1.16.660|2|2 +1.3.6.1.2.1.31.1.1.1.16.661|2|2 +1.3.6.1.2.1.31.1.1.1.16.662|2|2 +1.3.6.1.2.1.31.1.1.1.16.663|2|2 +1.3.6.1.2.1.31.1.1.1.16.664|2|2 +1.3.6.1.2.1.31.1.1.1.16.665|2|2 +1.3.6.1.2.1.31.1.1.1.16.666|2|2 +1.3.6.1.2.1.31.1.1.1.16.667|2|2 +1.3.6.1.2.1.31.1.1.1.16.668|2|2 +1.3.6.1.2.1.31.1.1.1.16.669|2|2 +1.3.6.1.2.1.31.1.1.1.16.670|2|2 +1.3.6.1.2.1.31.1.1.1.16.671|2|2 +1.3.6.1.2.1.31.1.1.1.16.672|2|2 +1.3.6.1.2.1.31.1.1.1.16.673|2|2 +1.3.6.1.2.1.31.1.1.1.16.674|2|2 +1.3.6.1.2.1.31.1.1.1.16.675|2|2 +1.3.6.1.2.1.31.1.1.1.16.676|2|2 +1.3.6.1.2.1.31.1.1.1.16.677|2|2 +1.3.6.1.2.1.31.1.1.1.16.678|2|2 +1.3.6.1.2.1.31.1.1.1.16.679|2|2 +1.3.6.1.2.1.31.1.1.1.16.680|2|2 +1.3.6.1.2.1.31.1.1.1.16.681|2|2 +1.3.6.1.2.1.31.1.1.1.16.682|2|2 +1.3.6.1.2.1.31.1.1.1.16.683|2|2 +1.3.6.1.2.1.31.1.1.1.16.684|2|2 +1.3.6.1.2.1.31.1.1.1.16.685|2|2 +1.3.6.1.2.1.31.1.1.1.16.686|2|2 +1.3.6.1.2.1.31.1.1.1.16.687|2|2 +1.3.6.1.2.1.31.1.1.1.16.688|2|2 +1.3.6.1.2.1.31.1.1.1.16.689|2|2 +1.3.6.1.2.1.31.1.1.1.16.690|2|2 +1.3.6.1.2.1.31.1.1.1.16.691|2|2 +1.3.6.1.2.1.31.1.1.1.16.692|2|2 +1.3.6.1.2.1.31.1.1.1.16.693|2|2 +1.3.6.1.2.1.31.1.1.1.16.694|2|2 +1.3.6.1.2.1.31.1.1.1.16.695|2|2 +1.3.6.1.2.1.31.1.1.1.16.696|2|2 +1.3.6.1.2.1.31.1.1.1.16.697|2|2 +1.3.6.1.2.1.31.1.1.1.16.698|2|2 +1.3.6.1.2.1.31.1.1.1.16.699|2|2 +1.3.6.1.2.1.31.1.1.1.16.700|2|2 +1.3.6.1.2.1.31.1.1.1.16.701|2|2 +1.3.6.1.2.1.31.1.1.1.16.702|2|2 +1.3.6.1.2.1.31.1.1.1.16.703|2|2 +1.3.6.1.2.1.31.1.1.1.16.704|2|2 +1.3.6.1.2.1.31.1.1.1.16.705|2|2 +1.3.6.1.2.1.31.1.1.1.16.706|2|2 +1.3.6.1.2.1.31.1.1.1.16.707|2|2 +1.3.6.1.2.1.31.1.1.1.16.708|2|2 +1.3.6.1.2.1.31.1.1.1.16.709|2|2 +1.3.6.1.2.1.31.1.1.1.16.710|2|2 +1.3.6.1.2.1.31.1.1.1.16.711|2|2 +1.3.6.1.2.1.31.1.1.1.16.712|2|2 +1.3.6.1.2.1.31.1.1.1.16.713|2|2 +1.3.6.1.2.1.31.1.1.1.16.714|2|2 +1.3.6.1.2.1.31.1.1.1.16.715|2|2 +1.3.6.1.2.1.31.1.1.1.16.716|2|2 +1.3.6.1.2.1.31.1.1.1.16.717|2|2 +1.3.6.1.2.1.31.1.1.1.16.718|2|2 +1.3.6.1.2.1.31.1.1.1.16.719|2|2 +1.3.6.1.2.1.31.1.1.1.16.720|2|2 +1.3.6.1.2.1.31.1.1.1.16.721|2|2 +1.3.6.1.2.1.31.1.1.1.16.722|2|2 +1.3.6.1.2.1.31.1.1.1.16.723|2|2 +1.3.6.1.2.1.31.1.1.1.16.724|2|2 +1.3.6.1.2.1.31.1.1.1.16.725|2|2 +1.3.6.1.2.1.31.1.1.1.16.726|2|2 +1.3.6.1.2.1.31.1.1.1.16.727|2|2 +1.3.6.1.2.1.31.1.1.1.16.728|2|2 +1.3.6.1.2.1.31.1.1.1.16.729|2|2 +1.3.6.1.2.1.31.1.1.1.16.730|2|2 +1.3.6.1.2.1.31.1.1.1.16.731|2|2 +1.3.6.1.2.1.31.1.1.1.16.732|2|2 +1.3.6.1.2.1.31.1.1.1.16.733|2|2 +1.3.6.1.2.1.31.1.1.1.16.734|2|2 +1.3.6.1.2.1.31.1.1.1.16.735|2|2 +1.3.6.1.2.1.31.1.1.1.16.736|2|2 +1.3.6.1.2.1.31.1.1.1.16.737|2|2 +1.3.6.1.2.1.31.1.1.1.16.738|2|2 +1.3.6.1.2.1.31.1.1.1.16.739|2|2 +1.3.6.1.2.1.31.1.1.1.16.740|2|2 +1.3.6.1.2.1.31.1.1.1.16.741|2|2 +1.3.6.1.2.1.31.1.1.1.16.742|2|2 +1.3.6.1.2.1.31.1.1.1.16.743|2|2 +1.3.6.1.2.1.31.1.1.1.16.744|2|2 +1.3.6.1.2.1.31.1.1.1.16.745|2|2 +1.3.6.1.2.1.31.1.1.1.16.746|2|2 +1.3.6.1.2.1.31.1.1.1.16.747|2|2 +1.3.6.1.2.1.31.1.1.1.16.748|2|2 +1.3.6.1.2.1.31.1.1.1.16.749|2|2 +1.3.6.1.2.1.31.1.1.1.16.750|2|2 +1.3.6.1.2.1.31.1.1.1.16.751|2|2 +1.3.6.1.2.1.31.1.1.1.16.768|2|2 +1.3.6.1.2.1.31.1.1.1.16.769|2|2 +1.3.6.1.2.1.31.1.1.1.16.770|2|2 +1.3.6.1.2.1.31.1.1.1.16.771|2|2 +1.3.6.1.2.1.31.1.1.1.16.772|2|2 +1.3.6.1.2.1.31.1.1.1.16.773|2|2 +1.3.6.1.2.1.31.1.1.1.16.774|2|2 +1.3.6.1.2.1.31.1.1.1.16.775|2|2 +1.3.6.1.2.1.31.1.1.1.16.776|2|2 +1.3.6.1.2.1.31.1.1.1.16.777|2|2 +1.3.6.1.2.1.31.1.1.1.16.778|2|2 +1.3.6.1.2.1.31.1.1.1.16.779|2|2 +1.3.6.1.2.1.31.1.1.1.16.780|2|2 +1.3.6.1.2.1.31.1.1.1.16.781|2|2 +1.3.6.1.2.1.31.1.1.1.16.782|2|2 +1.3.6.1.2.1.31.1.1.1.16.783|2|2 +1.3.6.1.2.1.31.1.1.1.16.784|2|2 +1.3.6.1.2.1.31.1.1.1.16.785|2|2 +1.3.6.1.2.1.31.1.1.1.16.786|2|2 +1.3.6.1.2.1.31.1.1.1.16.787|2|2 +1.3.6.1.2.1.31.1.1.1.16.788|2|2 +1.3.6.1.2.1.31.1.1.1.16.789|2|2 +1.3.6.1.2.1.31.1.1.1.16.790|2|2 +1.3.6.1.2.1.31.1.1.1.16.791|2|2 +1.3.6.1.2.1.31.1.1.1.16.792|2|2 +1.3.6.1.2.1.31.1.1.1.16.793|2|2 +1.3.6.1.2.1.31.1.1.1.16.794|2|2 +1.3.6.1.2.1.31.1.1.1.16.795|2|2 +1.3.6.1.2.1.31.1.1.1.16.796|2|2 +1.3.6.1.2.1.31.1.1.1.16.797|2|2 +1.3.6.1.2.1.31.1.1.1.16.798|2|2 +1.3.6.1.2.1.31.1.1.1.16.799|2|2 +1.3.6.1.2.1.31.1.1.1.16.800|2|2 +1.3.6.1.2.1.31.1.1.1.16.801|2|2 +1.3.6.1.2.1.31.1.1.1.16.802|2|2 +1.3.6.1.2.1.31.1.1.1.16.803|2|2 +1.3.6.1.2.1.31.1.1.1.16.804|2|2 +1.3.6.1.2.1.31.1.1.1.16.805|2|2 +1.3.6.1.2.1.31.1.1.1.16.806|2|2 +1.3.6.1.2.1.31.1.1.1.16.807|2|2 +1.3.6.1.2.1.31.1.1.1.16.808|2|2 +1.3.6.1.2.1.31.1.1.1.16.809|2|2 +1.3.6.1.2.1.31.1.1.1.16.810|2|2 +1.3.6.1.2.1.31.1.1.1.16.811|2|2 +1.3.6.1.2.1.31.1.1.1.16.812|2|2 +1.3.6.1.2.1.31.1.1.1.16.813|2|2 +1.3.6.1.2.1.31.1.1.1.16.814|2|2 +1.3.6.1.2.1.31.1.1.1.16.815|2|2 +1.3.6.1.2.1.31.1.1.1.16.816|2|2 +1.3.6.1.2.1.31.1.1.1.16.817|2|2 +1.3.6.1.2.1.31.1.1.1.16.818|2|2 +1.3.6.1.2.1.31.1.1.1.16.819|2|2 +1.3.6.1.2.1.31.1.1.1.16.820|2|2 +1.3.6.1.2.1.31.1.1.1.16.821|2|2 +1.3.6.1.2.1.31.1.1.1.16.822|2|2 +1.3.6.1.2.1.31.1.1.1.16.823|2|2 +1.3.6.1.2.1.31.1.1.1.16.824|2|2 +1.3.6.1.2.1.31.1.1.1.16.825|2|2 +1.3.6.1.2.1.31.1.1.1.16.826|2|2 +1.3.6.1.2.1.31.1.1.1.16.827|2|2 +1.3.6.1.2.1.31.1.1.1.16.828|2|2 +1.3.6.1.2.1.31.1.1.1.16.829|2|2 +1.3.6.1.2.1.31.1.1.1.16.830|2|2 +1.3.6.1.2.1.31.1.1.1.16.831|2|2 +1.3.6.1.2.1.31.1.1.1.16.832|2|2 +1.3.6.1.2.1.31.1.1.1.16.833|2|2 +1.3.6.1.2.1.31.1.1.1.16.834|2|2 +1.3.6.1.2.1.31.1.1.1.16.835|2|2 +1.3.6.1.2.1.31.1.1.1.16.836|2|2 +1.3.6.1.2.1.31.1.1.1.16.837|2|2 +1.3.6.1.2.1.31.1.1.1.16.838|2|2 +1.3.6.1.2.1.31.1.1.1.16.839|2|2 +1.3.6.1.2.1.31.1.1.1.16.840|2|2 +1.3.6.1.2.1.31.1.1.1.16.841|2|2 +1.3.6.1.2.1.31.1.1.1.16.842|2|2 +1.3.6.1.2.1.31.1.1.1.16.843|2|2 +1.3.6.1.2.1.31.1.1.1.16.844|2|2 +1.3.6.1.2.1.31.1.1.1.16.845|2|2 +1.3.6.1.2.1.31.1.1.1.16.846|2|2 +1.3.6.1.2.1.31.1.1.1.16.847|2|2 +1.3.6.1.2.1.31.1.1.1.16.848|2|2 +1.3.6.1.2.1.31.1.1.1.16.849|2|2 +1.3.6.1.2.1.31.1.1.1.16.850|2|2 +1.3.6.1.2.1.31.1.1.1.16.851|2|2 +1.3.6.1.2.1.31.1.1.1.16.852|2|2 +1.3.6.1.2.1.31.1.1.1.16.853|2|2 +1.3.6.1.2.1.31.1.1.1.16.854|2|2 +1.3.6.1.2.1.31.1.1.1.16.855|2|2 +1.3.6.1.2.1.31.1.1.1.16.856|2|2 +1.3.6.1.2.1.31.1.1.1.16.857|2|2 +1.3.6.1.2.1.31.1.1.1.16.858|2|2 +1.3.6.1.2.1.31.1.1.1.16.859|2|2 +1.3.6.1.2.1.31.1.1.1.16.864|2|2 +1.3.6.1.2.1.31.1.1.1.16.868|2|2 +1.3.6.1.2.1.31.1.1.1.16.869|2|2 +1.3.6.1.2.1.31.1.1.1.16.870|2|2 +1.3.6.1.2.1.31.1.1.1.16.871|2|2 +1.3.6.1.2.1.31.1.1.1.16.872|2|2 +1.3.6.1.2.1.31.1.1.1.16.873|2|2 +1.3.6.1.2.1.31.1.1.1.16.874|2|2 +1.3.6.1.2.1.31.1.1.1.16.875|2|2 +1.3.6.1.2.1.31.1.1.1.16.876|2|2 +1.3.6.1.2.1.31.1.1.1.16.877|2|2 +1.3.6.1.2.1.31.1.1.1.16.878|2|2 +1.3.6.1.2.1.31.1.1.1.16.879|2|2 +1.3.6.1.2.1.31.1.1.1.16.880|2|2 +1.3.6.1.2.1.31.1.1.1.16.881|2|2 +1.3.6.1.2.1.31.1.1.1.16.882|2|2 +1.3.6.1.2.1.31.1.1.1.16.883|2|2 +1.3.6.1.2.1.31.1.1.1.16.884|2|2 +1.3.6.1.2.1.31.1.1.1.16.885|2|2 +1.3.6.1.2.1.31.1.1.1.16.886|2|2 +1.3.6.1.2.1.31.1.1.1.16.887|2|2 +1.3.6.1.2.1.31.1.1.1.16.888|2|2 +1.3.6.1.2.1.31.1.1.1.16.889|2|2 +1.3.6.1.2.1.31.1.1.1.16.890|2|2 +1.3.6.1.2.1.31.1.1.1.16.891|2|2 +1.3.6.1.2.1.31.1.1.1.16.892|2|2 +1.3.6.1.2.1.31.1.1.1.16.893|2|2 +1.3.6.1.2.1.31.1.1.1.16.894|2|2 +1.3.6.1.2.1.31.1.1.1.16.895|2|2 +1.3.6.1.2.1.31.1.1.1.16.896|2|2 +1.3.6.1.2.1.31.1.1.1.16.897|2|2 +1.3.6.1.2.1.31.1.1.1.16.898|2|2 +1.3.6.1.2.1.31.1.1.1.16.899|2|2 +1.3.6.1.2.1.31.1.1.1.16.900|2|2 +1.3.6.1.2.1.31.1.1.1.16.901|2|2 +1.3.6.1.2.1.31.1.1.1.16.902|2|2 +1.3.6.1.2.1.31.1.1.1.16.903|2|2 +1.3.6.1.2.1.31.1.1.1.16.904|2|2 +1.3.6.1.2.1.31.1.1.1.16.905|2|2 +1.3.6.1.2.1.31.1.1.1.16.906|2|2 +1.3.6.1.2.1.31.1.1.1.16.907|2|2 +1.3.6.1.2.1.31.1.1.1.16.908|2|2 +1.3.6.1.2.1.31.1.1.1.16.909|2|2 +1.3.6.1.2.1.31.1.1.1.16.910|2|2 +1.3.6.1.2.1.31.1.1.1.16.911|2|2 +1.3.6.1.2.1.31.1.1.1.16.912|2|2 +1.3.6.1.2.1.31.1.1.1.16.913|2|2 +1.3.6.1.2.1.31.1.1.1.16.914|2|2 +1.3.6.1.2.1.31.1.1.1.16.915|2|2 +1.3.6.1.2.1.31.1.1.1.16.916|2|2 +1.3.6.1.2.1.31.1.1.1.16.917|2|2 +1.3.6.1.2.1.31.1.1.1.16.918|2|2 +1.3.6.1.2.1.31.1.1.1.16.919|2|2 +1.3.6.1.2.1.31.1.1.1.16.920|2|2 +1.3.6.1.2.1.31.1.1.1.16.921|2|2 +1.3.6.1.2.1.31.1.1.1.16.922|2|2 +1.3.6.1.2.1.31.1.1.1.16.923|2|2 +1.3.6.1.2.1.31.1.1.1.16.924|2|2 +1.3.6.1.2.1.31.1.1.1.16.925|2|2 +1.3.6.1.2.1.31.1.1.1.16.926|2|2 +1.3.6.1.2.1.31.1.1.1.16.927|2|2 +1.3.6.1.2.1.31.1.1.1.16.928|2|2 +1.3.6.1.2.1.31.1.1.1.16.929|2|2 +1.3.6.1.2.1.31.1.1.1.16.930|2|2 +1.3.6.1.2.1.31.1.1.1.16.931|2|2 +1.3.6.1.2.1.31.1.1.1.16.932|2|2 +1.3.6.1.2.1.31.1.1.1.16.933|2|2 +1.3.6.1.2.1.31.1.1.1.16.934|2|2 +1.3.6.1.2.1.31.1.1.1.16.935|2|2 +1.3.6.1.2.1.31.1.1.1.16.936|2|2 +1.3.6.1.2.1.31.1.1.1.16.937|2|2 +1.3.6.1.2.1.31.1.1.1.16.938|2|2 +1.3.6.1.2.1.31.1.1.1.16.939|2|2 +1.3.6.1.2.1.31.1.1.1.16.940|2|2 +1.3.6.1.2.1.31.1.1.1.16.941|2|2 +1.3.6.1.2.1.31.1.1.1.16.942|2|2 +1.3.6.1.2.1.31.1.1.1.16.943|2|2 +1.3.6.1.2.1.31.1.1.1.16.944|2|2 +1.3.6.1.2.1.31.1.1.1.16.945|2|2 +1.3.6.1.2.1.31.1.1.1.16.946|2|2 +1.3.6.1.2.1.31.1.1.1.16.947|2|2 +1.3.6.1.2.1.31.1.1.1.16.948|2|2 +1.3.6.1.2.1.31.1.1.1.16.949|2|2 +1.3.6.1.2.1.31.1.1.1.17.251|2|2 +1.3.6.1.2.1.31.1.1.1.17.252|2|1 +1.3.6.1.2.1.31.1.1.1.17.253|2|2 +1.3.6.1.2.1.31.1.1.1.17.254|2|2 +1.3.6.1.2.1.31.1.1.1.17.255|2|2 +1.3.6.1.2.1.31.1.1.1.17.258|2|2 +1.3.6.1.2.1.31.1.1.1.17.259|2|2 +1.3.6.1.2.1.31.1.1.1.17.260|2|2 +1.3.6.1.2.1.31.1.1.1.17.261|2|2 +1.3.6.1.2.1.31.1.1.1.17.262|2|2 +1.3.6.1.2.1.31.1.1.1.17.263|2|2 +1.3.6.1.2.1.31.1.1.1.17.264|2|2 +1.3.6.1.2.1.31.1.1.1.17.265|2|2 +1.3.6.1.2.1.31.1.1.1.17.266|2|2 +1.3.6.1.2.1.31.1.1.1.17.267|2|2 +1.3.6.1.2.1.31.1.1.1.17.268|2|2 +1.3.6.1.2.1.31.1.1.1.17.269|2|2 +1.3.6.1.2.1.31.1.1.1.17.270|2|2 +1.3.6.1.2.1.31.1.1.1.17.273|2|2 +1.3.6.1.2.1.31.1.1.1.17.274|2|2 +1.3.6.1.2.1.31.1.1.1.17.275|2|2 +1.3.6.1.2.1.31.1.1.1.17.276|2|2 +1.3.6.1.2.1.31.1.1.1.17.277|2|2 +1.3.6.1.2.1.31.1.1.1.17.278|2|2 +1.3.6.1.2.1.31.1.1.1.17.280|2|2 +1.3.6.1.2.1.31.1.1.1.17.281|2|2 +1.3.6.1.2.1.31.1.1.1.17.282|2|2 +1.3.6.1.2.1.31.1.1.1.17.283|2|2 +1.3.6.1.2.1.31.1.1.1.17.284|2|2 +1.3.6.1.2.1.31.1.1.1.17.285|2|2 +1.3.6.1.2.1.31.1.1.1.17.286|2|2 +1.3.6.1.2.1.31.1.1.1.17.287|2|2 +1.3.6.1.2.1.31.1.1.1.17.288|2|2 +1.3.6.1.2.1.31.1.1.1.17.291|2|2 +1.3.6.1.2.1.31.1.1.1.17.292|2|2 +1.3.6.1.2.1.31.1.1.1.17.293|2|2 +1.3.6.1.2.1.31.1.1.1.17.294|2|2 +1.3.6.1.2.1.31.1.1.1.17.295|2|2 +1.3.6.1.2.1.31.1.1.1.17.395|2|2 +1.3.6.1.2.1.31.1.1.1.17.396|2|2 +1.3.6.1.2.1.31.1.1.1.17.398|2|2 +1.3.6.1.2.1.31.1.1.1.17.399|2|2 +1.3.6.1.2.1.31.1.1.1.17.414|2|2 +1.3.6.1.2.1.31.1.1.1.17.415|2|2 +1.3.6.1.2.1.31.1.1.1.17.417|2|2 +1.3.6.1.2.1.31.1.1.1.17.418|2|2 +1.3.6.1.2.1.31.1.1.1.17.438|2|2 +1.3.6.1.2.1.31.1.1.1.17.439|2|2 +1.3.6.1.2.1.31.1.1.1.17.440|2|2 +1.3.6.1.2.1.31.1.1.1.17.441|2|2 +1.3.6.1.2.1.31.1.1.1.17.442|2|2 +1.3.6.1.2.1.31.1.1.1.17.443|2|2 +1.3.6.1.2.1.31.1.1.1.17.444|2|2 +1.3.6.1.2.1.31.1.1.1.17.445|2|2 +1.3.6.1.2.1.31.1.1.1.17.446|2|2 +1.3.6.1.2.1.31.1.1.1.17.447|2|2 +1.3.6.1.2.1.31.1.1.1.17.448|2|2 +1.3.6.1.2.1.31.1.1.1.17.449|2|2 +1.3.6.1.2.1.31.1.1.1.17.450|2|2 +1.3.6.1.2.1.31.1.1.1.17.451|2|2 +1.3.6.1.2.1.31.1.1.1.17.452|2|2 +1.3.6.1.2.1.31.1.1.1.17.453|2|2 +1.3.6.1.2.1.31.1.1.1.17.454|2|2 +1.3.6.1.2.1.31.1.1.1.17.455|2|2 +1.3.6.1.2.1.31.1.1.1.17.456|2|2 +1.3.6.1.2.1.31.1.1.1.17.457|2|2 +1.3.6.1.2.1.31.1.1.1.17.462|2|2 +1.3.6.1.2.1.31.1.1.1.17.464|2|2 +1.3.6.1.2.1.31.1.1.1.17.465|2|2 +1.3.6.1.2.1.31.1.1.1.17.467|2|2 +1.3.6.1.2.1.31.1.1.1.17.468|2|2 +1.3.6.1.2.1.31.1.1.1.17.474|2|2 +1.3.6.1.2.1.31.1.1.1.17.475|2|2 +1.3.6.1.2.1.31.1.1.1.17.476|2|2 +1.3.6.1.2.1.31.1.1.1.17.477|2|2 +1.3.6.1.2.1.31.1.1.1.17.478|2|2 +1.3.6.1.2.1.31.1.1.1.17.487|2|2 +1.3.6.1.2.1.31.1.1.1.17.489|2|2 +1.3.6.1.2.1.31.1.1.1.17.490|2|2 +1.3.6.1.2.1.31.1.1.1.17.493|2|2 +1.3.6.1.2.1.31.1.1.1.17.494|2|2 +1.3.6.1.2.1.31.1.1.1.17.495|2|2 +1.3.6.1.2.1.31.1.1.1.17.496|2|2 +1.3.6.1.2.1.31.1.1.1.17.497|2|2 +1.3.6.1.2.1.31.1.1.1.17.502|2|2 +1.3.6.1.2.1.31.1.1.1.17.503|2|2 +1.3.6.1.2.1.31.1.1.1.17.504|2|2 +1.3.6.1.2.1.31.1.1.1.17.505|2|2 +1.3.6.1.2.1.31.1.1.1.17.506|2|2 +1.3.6.1.2.1.31.1.1.1.17.509|2|2 +1.3.6.1.2.1.31.1.1.1.17.510|2|2 +1.3.6.1.2.1.31.1.1.1.17.511|2|2 +1.3.6.1.2.1.31.1.1.1.17.513|2|2 +1.3.6.1.2.1.31.1.1.1.17.514|2|2 +1.3.6.1.2.1.31.1.1.1.17.515|2|2 +1.3.6.1.2.1.31.1.1.1.17.516|2|2 +1.3.6.1.2.1.31.1.1.1.17.517|2|2 +1.3.6.1.2.1.31.1.1.1.17.518|2|2 +1.3.6.1.2.1.31.1.1.1.17.519|2|2 +1.3.6.1.2.1.31.1.1.1.17.520|2|2 +1.3.6.1.2.1.31.1.1.1.17.523|2|2 +1.3.6.1.2.1.31.1.1.1.17.524|2|2 +1.3.6.1.2.1.31.1.1.1.17.525|2|2 +1.3.6.1.2.1.31.1.1.1.17.526|2|2 +1.3.6.1.2.1.31.1.1.1.17.527|2|2 +1.3.6.1.2.1.31.1.1.1.17.528|2|2 +1.3.6.1.2.1.31.1.1.1.17.529|2|2 +1.3.6.1.2.1.31.1.1.1.17.530|2|2 +1.3.6.1.2.1.31.1.1.1.17.531|2|2 +1.3.6.1.2.1.31.1.1.1.17.532|2|2 +1.3.6.1.2.1.31.1.1.1.17.533|2|2 +1.3.6.1.2.1.31.1.1.1.17.534|2|2 +1.3.6.1.2.1.31.1.1.1.17.535|2|2 +1.3.6.1.2.1.31.1.1.1.17.536|2|2 +1.3.6.1.2.1.31.1.1.1.17.538|2|2 +1.3.6.1.2.1.31.1.1.1.17.540|2|2 +1.3.6.1.2.1.31.1.1.1.17.541|2|2 +1.3.6.1.2.1.31.1.1.1.17.542|2|2 +1.3.6.1.2.1.31.1.1.1.17.543|2|2 +1.3.6.1.2.1.31.1.1.1.17.544|2|2 +1.3.6.1.2.1.31.1.1.1.17.545|2|2 +1.3.6.1.2.1.31.1.1.1.17.546|2|2 +1.3.6.1.2.1.31.1.1.1.17.547|2|1 +1.3.6.1.2.1.31.1.1.1.17.548|2|1 +1.3.6.1.2.1.31.1.1.1.17.549|2|1 +1.3.6.1.2.1.31.1.1.1.17.550|2|1 +1.3.6.1.2.1.31.1.1.1.17.551|2|1 +1.3.6.1.2.1.31.1.1.1.17.552|2|1 +1.3.6.1.2.1.31.1.1.1.17.553|2|1 +1.3.6.1.2.1.31.1.1.1.17.554|2|1 +1.3.6.1.2.1.31.1.1.1.17.555|2|1 +1.3.6.1.2.1.31.1.1.1.17.556|2|1 +1.3.6.1.2.1.31.1.1.1.17.557|2|1 +1.3.6.1.2.1.31.1.1.1.17.558|2|1 +1.3.6.1.2.1.31.1.1.1.17.559|2|1 +1.3.6.1.2.1.31.1.1.1.17.560|2|1 +1.3.6.1.2.1.31.1.1.1.17.561|2|1 +1.3.6.1.2.1.31.1.1.1.17.562|2|1 +1.3.6.1.2.1.31.1.1.1.17.563|2|1 +1.3.6.1.2.1.31.1.1.1.17.564|2|1 +1.3.6.1.2.1.31.1.1.1.17.565|2|1 +1.3.6.1.2.1.31.1.1.1.17.566|2|1 +1.3.6.1.2.1.31.1.1.1.17.567|2|1 +1.3.6.1.2.1.31.1.1.1.17.568|2|1 +1.3.6.1.2.1.31.1.1.1.17.569|2|1 +1.3.6.1.2.1.31.1.1.1.17.570|2|1 +1.3.6.1.2.1.31.1.1.1.17.571|2|1 +1.3.6.1.2.1.31.1.1.1.17.572|2|1 +1.3.6.1.2.1.31.1.1.1.17.573|2|1 +1.3.6.1.2.1.31.1.1.1.17.574|2|1 +1.3.6.1.2.1.31.1.1.1.17.575|2|1 +1.3.6.1.2.1.31.1.1.1.17.576|2|1 +1.3.6.1.2.1.31.1.1.1.17.577|2|1 +1.3.6.1.2.1.31.1.1.1.17.578|2|1 +1.3.6.1.2.1.31.1.1.1.17.579|2|1 +1.3.6.1.2.1.31.1.1.1.17.580|2|1 +1.3.6.1.2.1.31.1.1.1.17.581|2|1 +1.3.6.1.2.1.31.1.1.1.17.582|2|1 +1.3.6.1.2.1.31.1.1.1.17.583|2|1 +1.3.6.1.2.1.31.1.1.1.17.584|2|1 +1.3.6.1.2.1.31.1.1.1.17.585|2|1 +1.3.6.1.2.1.31.1.1.1.17.586|2|1 +1.3.6.1.2.1.31.1.1.1.17.587|2|1 +1.3.6.1.2.1.31.1.1.1.17.588|2|1 +1.3.6.1.2.1.31.1.1.1.17.589|2|1 +1.3.6.1.2.1.31.1.1.1.17.590|2|1 +1.3.6.1.2.1.31.1.1.1.17.591|2|1 +1.3.6.1.2.1.31.1.1.1.17.592|2|1 +1.3.6.1.2.1.31.1.1.1.17.593|2|1 +1.3.6.1.2.1.31.1.1.1.17.594|2|1 +1.3.6.1.2.1.31.1.1.1.17.595|2|1 +1.3.6.1.2.1.31.1.1.1.17.596|2|1 +1.3.6.1.2.1.31.1.1.1.17.597|2|1 +1.3.6.1.2.1.31.1.1.1.17.598|2|1 +1.3.6.1.2.1.31.1.1.1.17.599|2|1 +1.3.6.1.2.1.31.1.1.1.17.600|2|1 +1.3.6.1.2.1.31.1.1.1.17.601|2|1 +1.3.6.1.2.1.31.1.1.1.17.602|2|1 +1.3.6.1.2.1.31.1.1.1.17.603|2|1 +1.3.6.1.2.1.31.1.1.1.17.604|2|1 +1.3.6.1.2.1.31.1.1.1.17.605|2|1 +1.3.6.1.2.1.31.1.1.1.17.606|2|1 +1.3.6.1.2.1.31.1.1.1.17.607|2|1 +1.3.6.1.2.1.31.1.1.1.17.608|2|1 +1.3.6.1.2.1.31.1.1.1.17.609|2|1 +1.3.6.1.2.1.31.1.1.1.17.610|2|1 +1.3.6.1.2.1.31.1.1.1.17.611|2|1 +1.3.6.1.2.1.31.1.1.1.17.612|2|1 +1.3.6.1.2.1.31.1.1.1.17.613|2|1 +1.3.6.1.2.1.31.1.1.1.17.614|2|1 +1.3.6.1.2.1.31.1.1.1.17.615|2|1 +1.3.6.1.2.1.31.1.1.1.17.616|2|1 +1.3.6.1.2.1.31.1.1.1.17.617|2|1 +1.3.6.1.2.1.31.1.1.1.17.618|2|1 +1.3.6.1.2.1.31.1.1.1.17.619|2|1 +1.3.6.1.2.1.31.1.1.1.17.620|2|1 +1.3.6.1.2.1.31.1.1.1.17.621|2|1 +1.3.6.1.2.1.31.1.1.1.17.622|2|1 +1.3.6.1.2.1.31.1.1.1.17.623|2|1 +1.3.6.1.2.1.31.1.1.1.17.624|2|1 +1.3.6.1.2.1.31.1.1.1.17.625|2|1 +1.3.6.1.2.1.31.1.1.1.17.626|2|1 +1.3.6.1.2.1.31.1.1.1.17.627|2|1 +1.3.6.1.2.1.31.1.1.1.17.628|2|1 +1.3.6.1.2.1.31.1.1.1.17.629|2|1 +1.3.6.1.2.1.31.1.1.1.17.630|2|1 +1.3.6.1.2.1.31.1.1.1.17.631|2|1 +1.3.6.1.2.1.31.1.1.1.17.632|2|1 +1.3.6.1.2.1.31.1.1.1.17.633|2|1 +1.3.6.1.2.1.31.1.1.1.17.634|2|1 +1.3.6.1.2.1.31.1.1.1.17.635|2|1 +1.3.6.1.2.1.31.1.1.1.17.636|2|1 +1.3.6.1.2.1.31.1.1.1.17.637|2|1 +1.3.6.1.2.1.31.1.1.1.17.638|2|1 +1.3.6.1.2.1.31.1.1.1.17.639|2|1 +1.3.6.1.2.1.31.1.1.1.17.640|2|1 +1.3.6.1.2.1.31.1.1.1.17.641|2|1 +1.3.6.1.2.1.31.1.1.1.17.642|2|1 +1.3.6.1.2.1.31.1.1.1.17.643|2|1 +1.3.6.1.2.1.31.1.1.1.17.644|2|1 +1.3.6.1.2.1.31.1.1.1.17.645|2|1 +1.3.6.1.2.1.31.1.1.1.17.646|2|1 +1.3.6.1.2.1.31.1.1.1.17.647|2|1 +1.3.6.1.2.1.31.1.1.1.17.648|2|1 +1.3.6.1.2.1.31.1.1.1.17.649|2|1 +1.3.6.1.2.1.31.1.1.1.17.650|2|1 +1.3.6.1.2.1.31.1.1.1.17.651|2|1 +1.3.6.1.2.1.31.1.1.1.17.652|2|1 +1.3.6.1.2.1.31.1.1.1.17.653|2|1 +1.3.6.1.2.1.31.1.1.1.17.654|2|1 +1.3.6.1.2.1.31.1.1.1.17.655|2|1 +1.3.6.1.2.1.31.1.1.1.17.656|2|1 +1.3.6.1.2.1.31.1.1.1.17.657|2|1 +1.3.6.1.2.1.31.1.1.1.17.658|2|1 +1.3.6.1.2.1.31.1.1.1.17.659|2|1 +1.3.6.1.2.1.31.1.1.1.17.660|2|1 +1.3.6.1.2.1.31.1.1.1.17.661|2|1 +1.3.6.1.2.1.31.1.1.1.17.662|2|1 +1.3.6.1.2.1.31.1.1.1.17.663|2|1 +1.3.6.1.2.1.31.1.1.1.17.664|2|1 +1.3.6.1.2.1.31.1.1.1.17.665|2|1 +1.3.6.1.2.1.31.1.1.1.17.666|2|1 +1.3.6.1.2.1.31.1.1.1.17.667|2|1 +1.3.6.1.2.1.31.1.1.1.17.668|2|1 +1.3.6.1.2.1.31.1.1.1.17.669|2|1 +1.3.6.1.2.1.31.1.1.1.17.670|2|1 +1.3.6.1.2.1.31.1.1.1.17.671|2|1 +1.3.6.1.2.1.31.1.1.1.17.672|2|1 +1.3.6.1.2.1.31.1.1.1.17.673|2|1 +1.3.6.1.2.1.31.1.1.1.17.674|2|1 +1.3.6.1.2.1.31.1.1.1.17.675|2|1 +1.3.6.1.2.1.31.1.1.1.17.676|2|1 +1.3.6.1.2.1.31.1.1.1.17.677|2|1 +1.3.6.1.2.1.31.1.1.1.17.678|2|1 +1.3.6.1.2.1.31.1.1.1.17.679|2|1 +1.3.6.1.2.1.31.1.1.1.17.680|2|1 +1.3.6.1.2.1.31.1.1.1.17.681|2|1 +1.3.6.1.2.1.31.1.1.1.17.682|2|1 +1.3.6.1.2.1.31.1.1.1.17.683|2|1 +1.3.6.1.2.1.31.1.1.1.17.684|2|1 +1.3.6.1.2.1.31.1.1.1.17.685|2|1 +1.3.6.1.2.1.31.1.1.1.17.686|2|1 +1.3.6.1.2.1.31.1.1.1.17.687|2|1 +1.3.6.1.2.1.31.1.1.1.17.688|2|1 +1.3.6.1.2.1.31.1.1.1.17.689|2|1 +1.3.6.1.2.1.31.1.1.1.17.690|2|1 +1.3.6.1.2.1.31.1.1.1.17.691|2|1 +1.3.6.1.2.1.31.1.1.1.17.692|2|1 +1.3.6.1.2.1.31.1.1.1.17.693|2|1 +1.3.6.1.2.1.31.1.1.1.17.694|2|1 +1.3.6.1.2.1.31.1.1.1.17.695|2|1 +1.3.6.1.2.1.31.1.1.1.17.696|2|1 +1.3.6.1.2.1.31.1.1.1.17.697|2|1 +1.3.6.1.2.1.31.1.1.1.17.698|2|1 +1.3.6.1.2.1.31.1.1.1.17.699|2|1 +1.3.6.1.2.1.31.1.1.1.17.700|2|1 +1.3.6.1.2.1.31.1.1.1.17.701|2|1 +1.3.6.1.2.1.31.1.1.1.17.702|2|1 +1.3.6.1.2.1.31.1.1.1.17.703|2|1 +1.3.6.1.2.1.31.1.1.1.17.704|2|1 +1.3.6.1.2.1.31.1.1.1.17.705|2|1 +1.3.6.1.2.1.31.1.1.1.17.706|2|1 +1.3.6.1.2.1.31.1.1.1.17.707|2|1 +1.3.6.1.2.1.31.1.1.1.17.708|2|1 +1.3.6.1.2.1.31.1.1.1.17.709|2|1 +1.3.6.1.2.1.31.1.1.1.17.710|2|1 +1.3.6.1.2.1.31.1.1.1.17.711|2|1 +1.3.6.1.2.1.31.1.1.1.17.712|2|1 +1.3.6.1.2.1.31.1.1.1.17.713|2|1 +1.3.6.1.2.1.31.1.1.1.17.714|2|1 +1.3.6.1.2.1.31.1.1.1.17.715|2|1 +1.3.6.1.2.1.31.1.1.1.17.716|2|1 +1.3.6.1.2.1.31.1.1.1.17.717|2|1 +1.3.6.1.2.1.31.1.1.1.17.718|2|1 +1.3.6.1.2.1.31.1.1.1.17.719|2|1 +1.3.6.1.2.1.31.1.1.1.17.720|2|1 +1.3.6.1.2.1.31.1.1.1.17.721|2|1 +1.3.6.1.2.1.31.1.1.1.17.722|2|1 +1.3.6.1.2.1.31.1.1.1.17.723|2|1 +1.3.6.1.2.1.31.1.1.1.17.724|2|1 +1.3.6.1.2.1.31.1.1.1.17.725|2|1 +1.3.6.1.2.1.31.1.1.1.17.726|2|1 +1.3.6.1.2.1.31.1.1.1.17.727|2|1 +1.3.6.1.2.1.31.1.1.1.17.728|2|1 +1.3.6.1.2.1.31.1.1.1.17.729|2|1 +1.3.6.1.2.1.31.1.1.1.17.730|2|1 +1.3.6.1.2.1.31.1.1.1.17.731|2|1 +1.3.6.1.2.1.31.1.1.1.17.732|2|1 +1.3.6.1.2.1.31.1.1.1.17.733|2|1 +1.3.6.1.2.1.31.1.1.1.17.734|2|1 +1.3.6.1.2.1.31.1.1.1.17.735|2|1 +1.3.6.1.2.1.31.1.1.1.17.736|2|1 +1.3.6.1.2.1.31.1.1.1.17.737|2|1 +1.3.6.1.2.1.31.1.1.1.17.738|2|1 +1.3.6.1.2.1.31.1.1.1.17.739|2|1 +1.3.6.1.2.1.31.1.1.1.17.740|2|1 +1.3.6.1.2.1.31.1.1.1.17.741|2|1 +1.3.6.1.2.1.31.1.1.1.17.742|2|1 +1.3.6.1.2.1.31.1.1.1.17.743|2|1 +1.3.6.1.2.1.31.1.1.1.17.744|2|1 +1.3.6.1.2.1.31.1.1.1.17.745|2|1 +1.3.6.1.2.1.31.1.1.1.17.746|2|1 +1.3.6.1.2.1.31.1.1.1.17.747|2|1 +1.3.6.1.2.1.31.1.1.1.17.748|2|1 +1.3.6.1.2.1.31.1.1.1.17.749|2|1 +1.3.6.1.2.1.31.1.1.1.17.750|2|1 +1.3.6.1.2.1.31.1.1.1.17.751|2|1 +1.3.6.1.2.1.31.1.1.1.17.768|2|2 +1.3.6.1.2.1.31.1.1.1.17.769|2|2 +1.3.6.1.2.1.31.1.1.1.17.770|2|2 +1.3.6.1.2.1.31.1.1.1.17.771|2|2 +1.3.6.1.2.1.31.1.1.1.17.772|2|2 +1.3.6.1.2.1.31.1.1.1.17.773|2|2 +1.3.6.1.2.1.31.1.1.1.17.774|2|2 +1.3.6.1.2.1.31.1.1.1.17.775|2|2 +1.3.6.1.2.1.31.1.1.1.17.776|2|2 +1.3.6.1.2.1.31.1.1.1.17.777|2|2 +1.3.6.1.2.1.31.1.1.1.17.778|2|2 +1.3.6.1.2.1.31.1.1.1.17.779|2|2 +1.3.6.1.2.1.31.1.1.1.17.780|2|2 +1.3.6.1.2.1.31.1.1.1.17.781|2|2 +1.3.6.1.2.1.31.1.1.1.17.782|2|2 +1.3.6.1.2.1.31.1.1.1.17.783|2|2 +1.3.6.1.2.1.31.1.1.1.17.784|2|2 +1.3.6.1.2.1.31.1.1.1.17.785|2|2 +1.3.6.1.2.1.31.1.1.1.17.786|2|2 +1.3.6.1.2.1.31.1.1.1.17.787|2|2 +1.3.6.1.2.1.31.1.1.1.17.788|2|2 +1.3.6.1.2.1.31.1.1.1.17.789|2|2 +1.3.6.1.2.1.31.1.1.1.17.790|2|2 +1.3.6.1.2.1.31.1.1.1.17.791|2|2 +1.3.6.1.2.1.31.1.1.1.17.792|2|2 +1.3.6.1.2.1.31.1.1.1.17.793|2|2 +1.3.6.1.2.1.31.1.1.1.17.794|2|2 +1.3.6.1.2.1.31.1.1.1.17.795|2|2 +1.3.6.1.2.1.31.1.1.1.17.796|2|2 +1.3.6.1.2.1.31.1.1.1.17.797|2|2 +1.3.6.1.2.1.31.1.1.1.17.798|2|2 +1.3.6.1.2.1.31.1.1.1.17.799|2|2 +1.3.6.1.2.1.31.1.1.1.17.800|2|2 +1.3.6.1.2.1.31.1.1.1.17.801|2|2 +1.3.6.1.2.1.31.1.1.1.17.802|2|2 +1.3.6.1.2.1.31.1.1.1.17.803|2|2 +1.3.6.1.2.1.31.1.1.1.17.804|2|2 +1.3.6.1.2.1.31.1.1.1.17.805|2|2 +1.3.6.1.2.1.31.1.1.1.17.806|2|2 +1.3.6.1.2.1.31.1.1.1.17.807|2|2 +1.3.6.1.2.1.31.1.1.1.17.808|2|2 +1.3.6.1.2.1.31.1.1.1.17.809|2|2 +1.3.6.1.2.1.31.1.1.1.17.810|2|2 +1.3.6.1.2.1.31.1.1.1.17.811|2|2 +1.3.6.1.2.1.31.1.1.1.17.812|2|2 +1.3.6.1.2.1.31.1.1.1.17.813|2|2 +1.3.6.1.2.1.31.1.1.1.17.814|2|2 +1.3.6.1.2.1.31.1.1.1.17.815|2|2 +1.3.6.1.2.1.31.1.1.1.17.816|2|2 +1.3.6.1.2.1.31.1.1.1.17.817|2|2 +1.3.6.1.2.1.31.1.1.1.17.818|2|2 +1.3.6.1.2.1.31.1.1.1.17.819|2|2 +1.3.6.1.2.1.31.1.1.1.17.820|2|2 +1.3.6.1.2.1.31.1.1.1.17.821|2|2 +1.3.6.1.2.1.31.1.1.1.17.822|2|2 +1.3.6.1.2.1.31.1.1.1.17.823|2|2 +1.3.6.1.2.1.31.1.1.1.17.824|2|2 +1.3.6.1.2.1.31.1.1.1.17.825|2|2 +1.3.6.1.2.1.31.1.1.1.17.826|2|2 +1.3.6.1.2.1.31.1.1.1.17.827|2|2 +1.3.6.1.2.1.31.1.1.1.17.828|2|2 +1.3.6.1.2.1.31.1.1.1.17.829|2|2 +1.3.6.1.2.1.31.1.1.1.17.830|2|2 +1.3.6.1.2.1.31.1.1.1.17.831|2|2 +1.3.6.1.2.1.31.1.1.1.17.832|2|2 +1.3.6.1.2.1.31.1.1.1.17.833|2|2 +1.3.6.1.2.1.31.1.1.1.17.834|2|2 +1.3.6.1.2.1.31.1.1.1.17.835|2|2 +1.3.6.1.2.1.31.1.1.1.17.836|2|2 +1.3.6.1.2.1.31.1.1.1.17.837|2|2 +1.3.6.1.2.1.31.1.1.1.17.838|2|2 +1.3.6.1.2.1.31.1.1.1.17.839|2|2 +1.3.6.1.2.1.31.1.1.1.17.840|2|2 +1.3.6.1.2.1.31.1.1.1.17.841|2|2 +1.3.6.1.2.1.31.1.1.1.17.842|2|2 +1.3.6.1.2.1.31.1.1.1.17.843|2|2 +1.3.6.1.2.1.31.1.1.1.17.844|2|2 +1.3.6.1.2.1.31.1.1.1.17.845|2|2 +1.3.6.1.2.1.31.1.1.1.17.846|2|2 +1.3.6.1.2.1.31.1.1.1.17.847|2|2 +1.3.6.1.2.1.31.1.1.1.17.848|2|2 +1.3.6.1.2.1.31.1.1.1.17.849|2|2 +1.3.6.1.2.1.31.1.1.1.17.850|2|2 +1.3.6.1.2.1.31.1.1.1.17.851|2|2 +1.3.6.1.2.1.31.1.1.1.17.852|2|2 +1.3.6.1.2.1.31.1.1.1.17.853|2|2 +1.3.6.1.2.1.31.1.1.1.17.854|2|2 +1.3.6.1.2.1.31.1.1.1.17.855|2|2 +1.3.6.1.2.1.31.1.1.1.17.856|2|2 +1.3.6.1.2.1.31.1.1.1.17.857|2|2 +1.3.6.1.2.1.31.1.1.1.17.858|2|2 +1.3.6.1.2.1.31.1.1.1.17.859|2|2 +1.3.6.1.2.1.31.1.1.1.17.864|2|2 +1.3.6.1.2.1.31.1.1.1.17.868|2|2 +1.3.6.1.2.1.31.1.1.1.17.869|2|2 +1.3.6.1.2.1.31.1.1.1.17.870|2|2 +1.3.6.1.2.1.31.1.1.1.17.871|2|2 +1.3.6.1.2.1.31.1.1.1.17.872|2|2 +1.3.6.1.2.1.31.1.1.1.17.873|2|2 +1.3.6.1.2.1.31.1.1.1.17.874|2|2 +1.3.6.1.2.1.31.1.1.1.17.875|2|2 +1.3.6.1.2.1.31.1.1.1.17.876|2|2 +1.3.6.1.2.1.31.1.1.1.17.877|2|2 +1.3.6.1.2.1.31.1.1.1.17.878|2|2 +1.3.6.1.2.1.31.1.1.1.17.879|2|2 +1.3.6.1.2.1.31.1.1.1.17.880|2|2 +1.3.6.1.2.1.31.1.1.1.17.881|2|2 +1.3.6.1.2.1.31.1.1.1.17.882|2|2 +1.3.6.1.2.1.31.1.1.1.17.883|2|2 +1.3.6.1.2.1.31.1.1.1.17.884|2|2 +1.3.6.1.2.1.31.1.1.1.17.885|2|2 +1.3.6.1.2.1.31.1.1.1.17.886|2|2 +1.3.6.1.2.1.31.1.1.1.17.887|2|2 +1.3.6.1.2.1.31.1.1.1.17.888|2|2 +1.3.6.1.2.1.31.1.1.1.17.889|2|2 +1.3.6.1.2.1.31.1.1.1.17.890|2|2 +1.3.6.1.2.1.31.1.1.1.17.891|2|2 +1.3.6.1.2.1.31.1.1.1.17.892|2|2 +1.3.6.1.2.1.31.1.1.1.17.893|2|2 +1.3.6.1.2.1.31.1.1.1.17.894|2|2 +1.3.6.1.2.1.31.1.1.1.17.895|2|2 +1.3.6.1.2.1.31.1.1.1.17.896|2|2 +1.3.6.1.2.1.31.1.1.1.17.897|2|2 +1.3.6.1.2.1.31.1.1.1.17.898|2|2 +1.3.6.1.2.1.31.1.1.1.17.899|2|2 +1.3.6.1.2.1.31.1.1.1.17.900|2|2 +1.3.6.1.2.1.31.1.1.1.17.901|2|2 +1.3.6.1.2.1.31.1.1.1.17.902|2|2 +1.3.6.1.2.1.31.1.1.1.17.903|2|2 +1.3.6.1.2.1.31.1.1.1.17.904|2|2 +1.3.6.1.2.1.31.1.1.1.17.905|2|2 +1.3.6.1.2.1.31.1.1.1.17.906|2|2 +1.3.6.1.2.1.31.1.1.1.17.907|2|2 +1.3.6.1.2.1.31.1.1.1.17.908|2|2 +1.3.6.1.2.1.31.1.1.1.17.909|2|2 +1.3.6.1.2.1.31.1.1.1.17.910|2|2 +1.3.6.1.2.1.31.1.1.1.17.911|2|2 +1.3.6.1.2.1.31.1.1.1.17.912|2|2 +1.3.6.1.2.1.31.1.1.1.17.913|2|2 +1.3.6.1.2.1.31.1.1.1.17.914|2|2 +1.3.6.1.2.1.31.1.1.1.17.915|2|2 +1.3.6.1.2.1.31.1.1.1.17.916|2|2 +1.3.6.1.2.1.31.1.1.1.17.917|2|2 +1.3.6.1.2.1.31.1.1.1.17.918|2|2 +1.3.6.1.2.1.31.1.1.1.17.919|2|2 +1.3.6.1.2.1.31.1.1.1.17.920|2|2 +1.3.6.1.2.1.31.1.1.1.17.921|2|2 +1.3.6.1.2.1.31.1.1.1.17.922|2|2 +1.3.6.1.2.1.31.1.1.1.17.923|2|2 +1.3.6.1.2.1.31.1.1.1.17.924|2|2 +1.3.6.1.2.1.31.1.1.1.17.925|2|2 +1.3.6.1.2.1.31.1.1.1.17.926|2|2 +1.3.6.1.2.1.31.1.1.1.17.927|2|2 +1.3.6.1.2.1.31.1.1.1.17.928|2|2 +1.3.6.1.2.1.31.1.1.1.17.929|2|2 +1.3.6.1.2.1.31.1.1.1.17.930|2|2 +1.3.6.1.2.1.31.1.1.1.17.931|2|2 +1.3.6.1.2.1.31.1.1.1.17.932|2|2 +1.3.6.1.2.1.31.1.1.1.17.933|2|2 +1.3.6.1.2.1.31.1.1.1.17.934|2|2 +1.3.6.1.2.1.31.1.1.1.17.935|2|2 +1.3.6.1.2.1.31.1.1.1.17.936|2|2 +1.3.6.1.2.1.31.1.1.1.17.937|2|2 +1.3.6.1.2.1.31.1.1.1.17.938|2|2 +1.3.6.1.2.1.31.1.1.1.17.939|2|2 +1.3.6.1.2.1.31.1.1.1.17.940|2|2 +1.3.6.1.2.1.31.1.1.1.17.941|2|2 +1.3.6.1.2.1.31.1.1.1.17.942|2|2 +1.3.6.1.2.1.31.1.1.1.17.943|2|2 +1.3.6.1.2.1.31.1.1.1.17.944|2|2 +1.3.6.1.2.1.31.1.1.1.17.945|2|2 +1.3.6.1.2.1.31.1.1.1.17.946|2|2 +1.3.6.1.2.1.31.1.1.1.17.947|2|2 +1.3.6.1.2.1.31.1.1.1.17.948|2|2 +1.3.6.1.2.1.31.1.1.1.17.949|2|2 +1.3.6.1.2.1.31.1.1.1.18.251|4| +1.3.6.1.2.1.31.1.1.1.18.252|4| +1.3.6.1.2.1.31.1.1.1.18.253|4| +1.3.6.1.2.1.31.1.1.1.18.254|4| +1.3.6.1.2.1.31.1.1.1.18.255|4| +1.3.6.1.2.1.31.1.1.1.18.258|4| +1.3.6.1.2.1.31.1.1.1.18.259|4| +1.3.6.1.2.1.31.1.1.1.18.260|4| +1.3.6.1.2.1.31.1.1.1.18.261|4| +1.3.6.1.2.1.31.1.1.1.18.262|4| +1.3.6.1.2.1.31.1.1.1.18.263|4| +1.3.6.1.2.1.31.1.1.1.18.264|4| +1.3.6.1.2.1.31.1.1.1.18.265|4| +1.3.6.1.2.1.31.1.1.1.18.266|4| +1.3.6.1.2.1.31.1.1.1.18.267|4| +1.3.6.1.2.1.31.1.1.1.18.268|4| +1.3.6.1.2.1.31.1.1.1.18.269|4| +1.3.6.1.2.1.31.1.1.1.18.270|4| +1.3.6.1.2.1.31.1.1.1.18.273|4| +1.3.6.1.2.1.31.1.1.1.18.274|4| +1.3.6.1.2.1.31.1.1.1.18.275|4| +1.3.6.1.2.1.31.1.1.1.18.276|4| +1.3.6.1.2.1.31.1.1.1.18.277|4| +1.3.6.1.2.1.31.1.1.1.18.278|4| +1.3.6.1.2.1.31.1.1.1.18.280|4| +1.3.6.1.2.1.31.1.1.1.18.281|4| +1.3.6.1.2.1.31.1.1.1.18.282|4| +1.3.6.1.2.1.31.1.1.1.18.283|4| +1.3.6.1.2.1.31.1.1.1.18.284|4| +1.3.6.1.2.1.31.1.1.1.18.285|4| +1.3.6.1.2.1.31.1.1.1.18.286|4| +1.3.6.1.2.1.31.1.1.1.18.287|4| +1.3.6.1.2.1.31.1.1.1.18.288|4| +1.3.6.1.2.1.31.1.1.1.18.291|4| +1.3.6.1.2.1.31.1.1.1.18.292|4| +1.3.6.1.2.1.31.1.1.1.18.293|4| +1.3.6.1.2.1.31.1.1.1.18.294|4| +1.3.6.1.2.1.31.1.1.1.18.295|4| +1.3.6.1.2.1.31.1.1.1.18.395|4| +1.3.6.1.2.1.31.1.1.1.18.396|4| +1.3.6.1.2.1.31.1.1.1.18.398|4| +1.3.6.1.2.1.31.1.1.1.18.399|4| +1.3.6.1.2.1.31.1.1.1.18.414|4| +1.3.6.1.2.1.31.1.1.1.18.415|4| +1.3.6.1.2.1.31.1.1.1.18.417|4| +1.3.6.1.2.1.31.1.1.1.18.418|4| +1.3.6.1.2.1.31.1.1.1.18.438|4| +1.3.6.1.2.1.31.1.1.1.18.439|4| +1.3.6.1.2.1.31.1.1.1.18.440|4| +1.3.6.1.2.1.31.1.1.1.18.441|4| +1.3.6.1.2.1.31.1.1.1.18.442|4| +1.3.6.1.2.1.31.1.1.1.18.443|4| +1.3.6.1.2.1.31.1.1.1.18.444|4| +1.3.6.1.2.1.31.1.1.1.18.445|4| +1.3.6.1.2.1.31.1.1.1.18.446|4| +1.3.6.1.2.1.31.1.1.1.18.447|4| +1.3.6.1.2.1.31.1.1.1.18.448|4| +1.3.6.1.2.1.31.1.1.1.18.449|4| +1.3.6.1.2.1.31.1.1.1.18.450|4| +1.3.6.1.2.1.31.1.1.1.18.451|4| +1.3.6.1.2.1.31.1.1.1.18.452|4| +1.3.6.1.2.1.31.1.1.1.18.453|4| +1.3.6.1.2.1.31.1.1.1.18.454|4| +1.3.6.1.2.1.31.1.1.1.18.455|4| +1.3.6.1.2.1.31.1.1.1.18.456|4| +1.3.6.1.2.1.31.1.1.1.18.457|4| +1.3.6.1.2.1.31.1.1.1.18.462|4| +1.3.6.1.2.1.31.1.1.1.18.464|4| +1.3.6.1.2.1.31.1.1.1.18.465|4| +1.3.6.1.2.1.31.1.1.1.18.467|4| +1.3.6.1.2.1.31.1.1.1.18.468|4| +1.3.6.1.2.1.31.1.1.1.18.474|4| +1.3.6.1.2.1.31.1.1.1.18.475|4| +1.3.6.1.2.1.31.1.1.1.18.476|4| +1.3.6.1.2.1.31.1.1.1.18.477|4| +1.3.6.1.2.1.31.1.1.1.18.478|4| +1.3.6.1.2.1.31.1.1.1.18.487|4| +1.3.6.1.2.1.31.1.1.1.18.489|4| +1.3.6.1.2.1.31.1.1.1.18.490|4| +1.3.6.1.2.1.31.1.1.1.18.493|4| +1.3.6.1.2.1.31.1.1.1.18.494|4| +1.3.6.1.2.1.31.1.1.1.18.495|4| +1.3.6.1.2.1.31.1.1.1.18.496|4| +1.3.6.1.2.1.31.1.1.1.18.497|4| +1.3.6.1.2.1.31.1.1.1.18.502|4| +1.3.6.1.2.1.31.1.1.1.18.503|4| +1.3.6.1.2.1.31.1.1.1.18.504|4| +1.3.6.1.2.1.31.1.1.1.18.505|4| +1.3.6.1.2.1.31.1.1.1.18.506|4| +1.3.6.1.2.1.31.1.1.1.18.509|4| +1.3.6.1.2.1.31.1.1.1.18.510|4| +1.3.6.1.2.1.31.1.1.1.18.511|4| +1.3.6.1.2.1.31.1.1.1.18.513|4| +1.3.6.1.2.1.31.1.1.1.18.514|4| +1.3.6.1.2.1.31.1.1.1.18.515|4| +1.3.6.1.2.1.31.1.1.1.18.516|4| +1.3.6.1.2.1.31.1.1.1.18.517|4| +1.3.6.1.2.1.31.1.1.1.18.518|4| +1.3.6.1.2.1.31.1.1.1.18.519|4| +1.3.6.1.2.1.31.1.1.1.18.520|4| +1.3.6.1.2.1.31.1.1.1.18.523|4| +1.3.6.1.2.1.31.1.1.1.18.524|4| +1.3.6.1.2.1.31.1.1.1.18.525|4| +1.3.6.1.2.1.31.1.1.1.18.526|4| +1.3.6.1.2.1.31.1.1.1.18.527|4| +1.3.6.1.2.1.31.1.1.1.18.528|4| +1.3.6.1.2.1.31.1.1.1.18.529|4| +1.3.6.1.2.1.31.1.1.1.18.530|4| +1.3.6.1.2.1.31.1.1.1.18.531|4| +1.3.6.1.2.1.31.1.1.1.18.532|4| +1.3.6.1.2.1.31.1.1.1.18.533|4| +1.3.6.1.2.1.31.1.1.1.18.534|4| +1.3.6.1.2.1.31.1.1.1.18.535|4| +1.3.6.1.2.1.31.1.1.1.18.536|4| +1.3.6.1.2.1.31.1.1.1.18.538|4| +1.3.6.1.2.1.31.1.1.1.18.540|4| +1.3.6.1.2.1.31.1.1.1.18.541|4| +1.3.6.1.2.1.31.1.1.1.18.542|4| +1.3.6.1.2.1.31.1.1.1.18.543|4| +1.3.6.1.2.1.31.1.1.1.18.544|4| +1.3.6.1.2.1.31.1.1.1.18.545|4| +1.3.6.1.2.1.31.1.1.1.18.546|4| +1.3.6.1.2.1.31.1.1.1.18.547|4| +1.3.6.1.2.1.31.1.1.1.18.548|4| +1.3.6.1.2.1.31.1.1.1.18.549|4| +1.3.6.1.2.1.31.1.1.1.18.550|4| +1.3.6.1.2.1.31.1.1.1.18.551|4| +1.3.6.1.2.1.31.1.1.1.18.552|4| +1.3.6.1.2.1.31.1.1.1.18.553|4| +1.3.6.1.2.1.31.1.1.1.18.554|4| +1.3.6.1.2.1.31.1.1.1.18.555|4| +1.3.6.1.2.1.31.1.1.1.18.556|4| +1.3.6.1.2.1.31.1.1.1.18.557|4| +1.3.6.1.2.1.31.1.1.1.18.558|4| +1.3.6.1.2.1.31.1.1.1.18.559|4| +1.3.6.1.2.1.31.1.1.1.18.560|4| +1.3.6.1.2.1.31.1.1.1.18.561|4| +1.3.6.1.2.1.31.1.1.1.18.562|4| +1.3.6.1.2.1.31.1.1.1.18.563|4| +1.3.6.1.2.1.31.1.1.1.18.564|4| +1.3.6.1.2.1.31.1.1.1.18.565|4| +1.3.6.1.2.1.31.1.1.1.18.566|4| +1.3.6.1.2.1.31.1.1.1.18.567|4| +1.3.6.1.2.1.31.1.1.1.18.568|4| +1.3.6.1.2.1.31.1.1.1.18.569|4| +1.3.6.1.2.1.31.1.1.1.18.570|4| +1.3.6.1.2.1.31.1.1.1.18.571|4| +1.3.6.1.2.1.31.1.1.1.18.572|4| +1.3.6.1.2.1.31.1.1.1.18.573|4| +1.3.6.1.2.1.31.1.1.1.18.574|4| +1.3.6.1.2.1.31.1.1.1.18.575|4| +1.3.6.1.2.1.31.1.1.1.18.576|4| +1.3.6.1.2.1.31.1.1.1.18.577|4| +1.3.6.1.2.1.31.1.1.1.18.578|4| +1.3.6.1.2.1.31.1.1.1.18.579|4| +1.3.6.1.2.1.31.1.1.1.18.580|4| +1.3.6.1.2.1.31.1.1.1.18.581|4| +1.3.6.1.2.1.31.1.1.1.18.582|4| +1.3.6.1.2.1.31.1.1.1.18.583|4| +1.3.6.1.2.1.31.1.1.1.18.584|4| +1.3.6.1.2.1.31.1.1.1.18.585|4| +1.3.6.1.2.1.31.1.1.1.18.586|4| +1.3.6.1.2.1.31.1.1.1.18.587|4| +1.3.6.1.2.1.31.1.1.1.18.588|4| +1.3.6.1.2.1.31.1.1.1.18.589|4| +1.3.6.1.2.1.31.1.1.1.18.590|4| +1.3.6.1.2.1.31.1.1.1.18.591|4| +1.3.6.1.2.1.31.1.1.1.18.592|4| +1.3.6.1.2.1.31.1.1.1.18.593|4| +1.3.6.1.2.1.31.1.1.1.18.594|4| +1.3.6.1.2.1.31.1.1.1.18.595|4| +1.3.6.1.2.1.31.1.1.1.18.596|4| +1.3.6.1.2.1.31.1.1.1.18.597|4| +1.3.6.1.2.1.31.1.1.1.18.598|4| +1.3.6.1.2.1.31.1.1.1.18.599|4| +1.3.6.1.2.1.31.1.1.1.18.600|4| +1.3.6.1.2.1.31.1.1.1.18.601|4| +1.3.6.1.2.1.31.1.1.1.18.602|4| +1.3.6.1.2.1.31.1.1.1.18.603|4| +1.3.6.1.2.1.31.1.1.1.18.604|4| +1.3.6.1.2.1.31.1.1.1.18.605|4| +1.3.6.1.2.1.31.1.1.1.18.606|4| +1.3.6.1.2.1.31.1.1.1.18.607|4| +1.3.6.1.2.1.31.1.1.1.18.608|4| +1.3.6.1.2.1.31.1.1.1.18.609|4| +1.3.6.1.2.1.31.1.1.1.18.610|4| +1.3.6.1.2.1.31.1.1.1.18.611|4| +1.3.6.1.2.1.31.1.1.1.18.612|4| +1.3.6.1.2.1.31.1.1.1.18.613|4| +1.3.6.1.2.1.31.1.1.1.18.614|4| +1.3.6.1.2.1.31.1.1.1.18.615|4| +1.3.6.1.2.1.31.1.1.1.18.616|4| +1.3.6.1.2.1.31.1.1.1.18.617|4| +1.3.6.1.2.1.31.1.1.1.18.618|4| +1.3.6.1.2.1.31.1.1.1.18.619|4| +1.3.6.1.2.1.31.1.1.1.18.620|4| +1.3.6.1.2.1.31.1.1.1.18.621|4| +1.3.6.1.2.1.31.1.1.1.18.622|4| +1.3.6.1.2.1.31.1.1.1.18.623|4| +1.3.6.1.2.1.31.1.1.1.18.624|4| +1.3.6.1.2.1.31.1.1.1.18.625|4| +1.3.6.1.2.1.31.1.1.1.18.626|4| +1.3.6.1.2.1.31.1.1.1.18.627|4| +1.3.6.1.2.1.31.1.1.1.18.628|4| +1.3.6.1.2.1.31.1.1.1.18.629|4| +1.3.6.1.2.1.31.1.1.1.18.630|4| +1.3.6.1.2.1.31.1.1.1.18.631|4| +1.3.6.1.2.1.31.1.1.1.18.632|4| +1.3.6.1.2.1.31.1.1.1.18.633|4| +1.3.6.1.2.1.31.1.1.1.18.634|4| +1.3.6.1.2.1.31.1.1.1.18.635|4| +1.3.6.1.2.1.31.1.1.1.18.636|4| +1.3.6.1.2.1.31.1.1.1.18.637|4| +1.3.6.1.2.1.31.1.1.1.18.638|4| +1.3.6.1.2.1.31.1.1.1.18.639|4| +1.3.6.1.2.1.31.1.1.1.18.640|4| +1.3.6.1.2.1.31.1.1.1.18.641|4| +1.3.6.1.2.1.31.1.1.1.18.642|4| +1.3.6.1.2.1.31.1.1.1.18.643|4| +1.3.6.1.2.1.31.1.1.1.18.644|4| +1.3.6.1.2.1.31.1.1.1.18.645|4| +1.3.6.1.2.1.31.1.1.1.18.646|4| +1.3.6.1.2.1.31.1.1.1.18.647|4| +1.3.6.1.2.1.31.1.1.1.18.648|4| +1.3.6.1.2.1.31.1.1.1.18.649|4| +1.3.6.1.2.1.31.1.1.1.18.650|4| +1.3.6.1.2.1.31.1.1.1.18.651|4| +1.3.6.1.2.1.31.1.1.1.18.652|4| +1.3.6.1.2.1.31.1.1.1.18.653|4| +1.3.6.1.2.1.31.1.1.1.18.654|4| +1.3.6.1.2.1.31.1.1.1.18.655|4| +1.3.6.1.2.1.31.1.1.1.18.656|4| +1.3.6.1.2.1.31.1.1.1.18.657|4| +1.3.6.1.2.1.31.1.1.1.18.658|4| +1.3.6.1.2.1.31.1.1.1.18.659|4| +1.3.6.1.2.1.31.1.1.1.18.660|4| +1.3.6.1.2.1.31.1.1.1.18.661|4| +1.3.6.1.2.1.31.1.1.1.18.662|4| +1.3.6.1.2.1.31.1.1.1.18.663|4| +1.3.6.1.2.1.31.1.1.1.18.664|4| +1.3.6.1.2.1.31.1.1.1.18.665|4| +1.3.6.1.2.1.31.1.1.1.18.666|4| +1.3.6.1.2.1.31.1.1.1.18.667|4| +1.3.6.1.2.1.31.1.1.1.18.668|4| +1.3.6.1.2.1.31.1.1.1.18.669|4| +1.3.6.1.2.1.31.1.1.1.18.670|4| +1.3.6.1.2.1.31.1.1.1.18.671|4| +1.3.6.1.2.1.31.1.1.1.18.672|4| +1.3.6.1.2.1.31.1.1.1.18.673|4| +1.3.6.1.2.1.31.1.1.1.18.674|4| +1.3.6.1.2.1.31.1.1.1.18.675|4| +1.3.6.1.2.1.31.1.1.1.18.676|4| +1.3.6.1.2.1.31.1.1.1.18.677|4| +1.3.6.1.2.1.31.1.1.1.18.678|4| +1.3.6.1.2.1.31.1.1.1.18.679|4| +1.3.6.1.2.1.31.1.1.1.18.680|4| +1.3.6.1.2.1.31.1.1.1.18.681|4| +1.3.6.1.2.1.31.1.1.1.18.682|4| +1.3.6.1.2.1.31.1.1.1.18.683|4| +1.3.6.1.2.1.31.1.1.1.18.684|4| +1.3.6.1.2.1.31.1.1.1.18.685|4| +1.3.6.1.2.1.31.1.1.1.18.686|4| +1.3.6.1.2.1.31.1.1.1.18.687|4| +1.3.6.1.2.1.31.1.1.1.18.688|4| +1.3.6.1.2.1.31.1.1.1.18.689|4| +1.3.6.1.2.1.31.1.1.1.18.690|4| +1.3.6.1.2.1.31.1.1.1.18.691|4| +1.3.6.1.2.1.31.1.1.1.18.692|4| +1.3.6.1.2.1.31.1.1.1.18.693|4| +1.3.6.1.2.1.31.1.1.1.18.694|4| +1.3.6.1.2.1.31.1.1.1.18.695|4| +1.3.6.1.2.1.31.1.1.1.18.696|4| +1.3.6.1.2.1.31.1.1.1.18.697|4| +1.3.6.1.2.1.31.1.1.1.18.698|4| +1.3.6.1.2.1.31.1.1.1.18.699|4| +1.3.6.1.2.1.31.1.1.1.18.700|4| +1.3.6.1.2.1.31.1.1.1.18.701|4| +1.3.6.1.2.1.31.1.1.1.18.702|4| +1.3.6.1.2.1.31.1.1.1.18.703|4| +1.3.6.1.2.1.31.1.1.1.18.704|4| +1.3.6.1.2.1.31.1.1.1.18.705|4| +1.3.6.1.2.1.31.1.1.1.18.706|4| +1.3.6.1.2.1.31.1.1.1.18.707|4| +1.3.6.1.2.1.31.1.1.1.18.708|4| +1.3.6.1.2.1.31.1.1.1.18.709|4| +1.3.6.1.2.1.31.1.1.1.18.710|4| +1.3.6.1.2.1.31.1.1.1.18.711|4| +1.3.6.1.2.1.31.1.1.1.18.712|4| +1.3.6.1.2.1.31.1.1.1.18.713|4| +1.3.6.1.2.1.31.1.1.1.18.714|4| +1.3.6.1.2.1.31.1.1.1.18.715|4| +1.3.6.1.2.1.31.1.1.1.18.716|4| +1.3.6.1.2.1.31.1.1.1.18.717|4| +1.3.6.1.2.1.31.1.1.1.18.718|4| +1.3.6.1.2.1.31.1.1.1.18.719|4| +1.3.6.1.2.1.31.1.1.1.18.720|4| +1.3.6.1.2.1.31.1.1.1.18.721|4| +1.3.6.1.2.1.31.1.1.1.18.722|4| +1.3.6.1.2.1.31.1.1.1.18.723|4| +1.3.6.1.2.1.31.1.1.1.18.724|4| +1.3.6.1.2.1.31.1.1.1.18.725|4| +1.3.6.1.2.1.31.1.1.1.18.726|4| +1.3.6.1.2.1.31.1.1.1.18.727|4| +1.3.6.1.2.1.31.1.1.1.18.728|4| +1.3.6.1.2.1.31.1.1.1.18.729|4| +1.3.6.1.2.1.31.1.1.1.18.730|4| +1.3.6.1.2.1.31.1.1.1.18.731|4| +1.3.6.1.2.1.31.1.1.1.18.732|4| +1.3.6.1.2.1.31.1.1.1.18.733|4| +1.3.6.1.2.1.31.1.1.1.18.734|4| +1.3.6.1.2.1.31.1.1.1.18.735|4| +1.3.6.1.2.1.31.1.1.1.18.736|4| +1.3.6.1.2.1.31.1.1.1.18.737|4| +1.3.6.1.2.1.31.1.1.1.18.738|4| +1.3.6.1.2.1.31.1.1.1.18.739|4| +1.3.6.1.2.1.31.1.1.1.18.740|4| +1.3.6.1.2.1.31.1.1.1.18.741|4| +1.3.6.1.2.1.31.1.1.1.18.742|4| +1.3.6.1.2.1.31.1.1.1.18.743|4| +1.3.6.1.2.1.31.1.1.1.18.744|4| +1.3.6.1.2.1.31.1.1.1.18.745|4| +1.3.6.1.2.1.31.1.1.1.18.746|4| +1.3.6.1.2.1.31.1.1.1.18.747|4| +1.3.6.1.2.1.31.1.1.1.18.748|4| +1.3.6.1.2.1.31.1.1.1.18.749|4| +1.3.6.1.2.1.31.1.1.1.18.750|4| +1.3.6.1.2.1.31.1.1.1.18.751|4| +1.3.6.1.2.1.31.1.1.1.18.768|4| +1.3.6.1.2.1.31.1.1.1.18.769|4| +1.3.6.1.2.1.31.1.1.1.18.770|4| +1.3.6.1.2.1.31.1.1.1.18.771|4| +1.3.6.1.2.1.31.1.1.1.18.772|4| +1.3.6.1.2.1.31.1.1.1.18.773|4| +1.3.6.1.2.1.31.1.1.1.18.774|4| +1.3.6.1.2.1.31.1.1.1.18.775|4| +1.3.6.1.2.1.31.1.1.1.18.776|4| +1.3.6.1.2.1.31.1.1.1.18.777|4| +1.3.6.1.2.1.31.1.1.1.18.778|4| +1.3.6.1.2.1.31.1.1.1.18.779|4| +1.3.6.1.2.1.31.1.1.1.18.780|4| +1.3.6.1.2.1.31.1.1.1.18.781|4| +1.3.6.1.2.1.31.1.1.1.18.782|4| +1.3.6.1.2.1.31.1.1.1.18.783|4| +1.3.6.1.2.1.31.1.1.1.18.784|4| +1.3.6.1.2.1.31.1.1.1.18.785|4| +1.3.6.1.2.1.31.1.1.1.18.786|4| +1.3.6.1.2.1.31.1.1.1.18.787|4| +1.3.6.1.2.1.31.1.1.1.18.788|4| +1.3.6.1.2.1.31.1.1.1.18.789|4| +1.3.6.1.2.1.31.1.1.1.18.790|4| +1.3.6.1.2.1.31.1.1.1.18.791|4| +1.3.6.1.2.1.31.1.1.1.18.792|4| +1.3.6.1.2.1.31.1.1.1.18.793|4| +1.3.6.1.2.1.31.1.1.1.18.794|4| +1.3.6.1.2.1.31.1.1.1.18.795|4| +1.3.6.1.2.1.31.1.1.1.18.796|4| +1.3.6.1.2.1.31.1.1.1.18.797|4| +1.3.6.1.2.1.31.1.1.1.18.798|4| +1.3.6.1.2.1.31.1.1.1.18.799|4| +1.3.6.1.2.1.31.1.1.1.18.800|4| +1.3.6.1.2.1.31.1.1.1.18.801|4| +1.3.6.1.2.1.31.1.1.1.18.802|4| +1.3.6.1.2.1.31.1.1.1.18.803|4| +1.3.6.1.2.1.31.1.1.1.18.804|4| +1.3.6.1.2.1.31.1.1.1.18.805|4| +1.3.6.1.2.1.31.1.1.1.18.806|4| +1.3.6.1.2.1.31.1.1.1.18.807|4| +1.3.6.1.2.1.31.1.1.1.18.808|4| +1.3.6.1.2.1.31.1.1.1.18.809|4| +1.3.6.1.2.1.31.1.1.1.18.810|4| +1.3.6.1.2.1.31.1.1.1.18.811|4| +1.3.6.1.2.1.31.1.1.1.18.812|4| +1.3.6.1.2.1.31.1.1.1.18.813|4| +1.3.6.1.2.1.31.1.1.1.18.814|4| +1.3.6.1.2.1.31.1.1.1.18.815|4| +1.3.6.1.2.1.31.1.1.1.18.816|4| +1.3.6.1.2.1.31.1.1.1.18.817|4| +1.3.6.1.2.1.31.1.1.1.18.818|4| +1.3.6.1.2.1.31.1.1.1.18.819|4| +1.3.6.1.2.1.31.1.1.1.18.820|4| +1.3.6.1.2.1.31.1.1.1.18.821|4| +1.3.6.1.2.1.31.1.1.1.18.822|4| +1.3.6.1.2.1.31.1.1.1.18.823|4| +1.3.6.1.2.1.31.1.1.1.18.824|4| +1.3.6.1.2.1.31.1.1.1.18.825|4| +1.3.6.1.2.1.31.1.1.1.18.826|4| +1.3.6.1.2.1.31.1.1.1.18.827|4| +1.3.6.1.2.1.31.1.1.1.18.828|4| +1.3.6.1.2.1.31.1.1.1.18.829|4| +1.3.6.1.2.1.31.1.1.1.18.830|4| +1.3.6.1.2.1.31.1.1.1.18.831|4| +1.3.6.1.2.1.31.1.1.1.18.832|4| +1.3.6.1.2.1.31.1.1.1.18.833|4| +1.3.6.1.2.1.31.1.1.1.18.834|4| +1.3.6.1.2.1.31.1.1.1.18.835|4| +1.3.6.1.2.1.31.1.1.1.18.836|4| +1.3.6.1.2.1.31.1.1.1.18.837|4| +1.3.6.1.2.1.31.1.1.1.18.838|4| +1.3.6.1.2.1.31.1.1.1.18.839|4| +1.3.6.1.2.1.31.1.1.1.18.840|4| +1.3.6.1.2.1.31.1.1.1.18.841|4| +1.3.6.1.2.1.31.1.1.1.18.842|4| +1.3.6.1.2.1.31.1.1.1.18.843|4| +1.3.6.1.2.1.31.1.1.1.18.844|4| +1.3.6.1.2.1.31.1.1.1.18.845|4| +1.3.6.1.2.1.31.1.1.1.18.846|4| +1.3.6.1.2.1.31.1.1.1.18.847|4| +1.3.6.1.2.1.31.1.1.1.18.848|4| +1.3.6.1.2.1.31.1.1.1.18.849|4| +1.3.6.1.2.1.31.1.1.1.18.850|4| +1.3.6.1.2.1.31.1.1.1.18.851|4| +1.3.6.1.2.1.31.1.1.1.18.852|4| +1.3.6.1.2.1.31.1.1.1.18.853|4| +1.3.6.1.2.1.31.1.1.1.18.854|4| +1.3.6.1.2.1.31.1.1.1.18.855|4| +1.3.6.1.2.1.31.1.1.1.18.856|4| +1.3.6.1.2.1.31.1.1.1.18.857|4| +1.3.6.1.2.1.31.1.1.1.18.858|4| +1.3.6.1.2.1.31.1.1.1.18.859|4| +1.3.6.1.2.1.31.1.1.1.18.864|4| +1.3.6.1.2.1.31.1.1.1.18.868|4| +1.3.6.1.2.1.31.1.1.1.18.869|4| +1.3.6.1.2.1.31.1.1.1.18.870|4| +1.3.6.1.2.1.31.1.1.1.18.871|4| +1.3.6.1.2.1.31.1.1.1.18.872|4| +1.3.6.1.2.1.31.1.1.1.18.873|4| +1.3.6.1.2.1.31.1.1.1.18.874|4| +1.3.6.1.2.1.31.1.1.1.18.875|4| +1.3.6.1.2.1.31.1.1.1.18.876|4| +1.3.6.1.2.1.31.1.1.1.18.877|4| +1.3.6.1.2.1.31.1.1.1.18.878|4| +1.3.6.1.2.1.31.1.1.1.18.879|4| +1.3.6.1.2.1.31.1.1.1.18.880|4| +1.3.6.1.2.1.31.1.1.1.18.881|4| +1.3.6.1.2.1.31.1.1.1.18.882|4| +1.3.6.1.2.1.31.1.1.1.18.883|4| +1.3.6.1.2.1.31.1.1.1.18.884|4| +1.3.6.1.2.1.31.1.1.1.18.885|4| +1.3.6.1.2.1.31.1.1.1.18.886|4| +1.3.6.1.2.1.31.1.1.1.18.887|4| +1.3.6.1.2.1.31.1.1.1.18.888|4| +1.3.6.1.2.1.31.1.1.1.18.889|4| +1.3.6.1.2.1.31.1.1.1.18.890|4| +1.3.6.1.2.1.31.1.1.1.18.891|4| +1.3.6.1.2.1.31.1.1.1.18.892|4| +1.3.6.1.2.1.31.1.1.1.18.893|4| +1.3.6.1.2.1.31.1.1.1.18.894|4| +1.3.6.1.2.1.31.1.1.1.18.895|4| +1.3.6.1.2.1.31.1.1.1.18.896|4| +1.3.6.1.2.1.31.1.1.1.18.897|4| +1.3.6.1.2.1.31.1.1.1.18.898|4| +1.3.6.1.2.1.31.1.1.1.18.899|4| +1.3.6.1.2.1.31.1.1.1.18.900|4| +1.3.6.1.2.1.31.1.1.1.18.901|4| +1.3.6.1.2.1.31.1.1.1.18.902|4| +1.3.6.1.2.1.31.1.1.1.18.903|4| +1.3.6.1.2.1.31.1.1.1.18.904|4| +1.3.6.1.2.1.31.1.1.1.18.905|4| +1.3.6.1.2.1.31.1.1.1.18.906|4| +1.3.6.1.2.1.31.1.1.1.18.907|4| +1.3.6.1.2.1.31.1.1.1.18.908|4| +1.3.6.1.2.1.31.1.1.1.18.909|4| +1.3.6.1.2.1.31.1.1.1.18.910|4| +1.3.6.1.2.1.31.1.1.1.18.911|4| +1.3.6.1.2.1.31.1.1.1.18.912|4| +1.3.6.1.2.1.31.1.1.1.18.913|4| +1.3.6.1.2.1.31.1.1.1.18.914|4| +1.3.6.1.2.1.31.1.1.1.18.915|4| +1.3.6.1.2.1.31.1.1.1.18.916|4| +1.3.6.1.2.1.31.1.1.1.18.917|4| +1.3.6.1.2.1.31.1.1.1.18.918|4| +1.3.6.1.2.1.31.1.1.1.18.919|4| +1.3.6.1.2.1.31.1.1.1.18.920|4| +1.3.6.1.2.1.31.1.1.1.18.921|4| +1.3.6.1.2.1.31.1.1.1.18.922|4| +1.3.6.1.2.1.31.1.1.1.18.923|4| +1.3.6.1.2.1.31.1.1.1.18.924|4| +1.3.6.1.2.1.31.1.1.1.18.925|4| +1.3.6.1.2.1.31.1.1.1.18.926|4| +1.3.6.1.2.1.31.1.1.1.18.927|4| +1.3.6.1.2.1.31.1.1.1.18.928|4| +1.3.6.1.2.1.31.1.1.1.18.929|4| +1.3.6.1.2.1.31.1.1.1.18.930|4| +1.3.6.1.2.1.31.1.1.1.18.931|4| +1.3.6.1.2.1.31.1.1.1.18.932|4| +1.3.6.1.2.1.31.1.1.1.18.933|4| +1.3.6.1.2.1.31.1.1.1.18.934|4| +1.3.6.1.2.1.31.1.1.1.18.935|4| +1.3.6.1.2.1.31.1.1.1.18.936|4| +1.3.6.1.2.1.31.1.1.1.18.937|4| +1.3.6.1.2.1.31.1.1.1.18.938|4| +1.3.6.1.2.1.31.1.1.1.18.939|4| +1.3.6.1.2.1.31.1.1.1.18.940|4| +1.3.6.1.2.1.31.1.1.1.18.941|4| +1.3.6.1.2.1.31.1.1.1.18.942|4| +1.3.6.1.2.1.31.1.1.1.18.943|4| +1.3.6.1.2.1.31.1.1.1.18.944|4| +1.3.6.1.2.1.31.1.1.1.18.945|4| +1.3.6.1.2.1.31.1.1.1.18.946|4| +1.3.6.1.2.1.31.1.1.1.18.947|4| +1.3.6.1.2.1.31.1.1.1.18.948|4| +1.3.6.1.2.1.31.1.1.1.18.949|4| +1.3.6.1.2.1.31.1.1.1.19.251|67|2376 +1.3.6.1.2.1.31.1.1.1.19.252|67|2378 +1.3.6.1.2.1.31.1.1.1.19.253|67|2615 +1.3.6.1.2.1.31.1.1.1.19.254|67|2747 +1.3.6.1.2.1.31.1.1.1.19.255|67|2747 +1.3.6.1.2.1.31.1.1.1.19.258|67|3396 +1.3.6.1.2.1.31.1.1.1.19.259|67|9668 +1.3.6.1.2.1.31.1.1.1.19.260|67|10428 +1.3.6.1.2.1.31.1.1.1.19.261|67|10428 +1.3.6.1.2.1.31.1.1.1.19.262|67|10432 +1.3.6.1.2.1.31.1.1.1.19.263|67|10447 +1.3.6.1.2.1.31.1.1.1.19.264|67|10451 +1.3.6.1.2.1.31.1.1.1.19.265|67|11291 +1.3.6.1.2.1.31.1.1.1.19.266|67|11293 +1.3.6.1.2.1.31.1.1.1.19.267|67|11294 +1.3.6.1.2.1.31.1.1.1.19.268|67|11296 +1.3.6.1.2.1.31.1.1.1.19.269|67|11330 +1.3.6.1.2.1.31.1.1.1.19.270|67|4018 +1.3.6.1.2.1.31.1.1.1.19.273|67|4045 +1.3.6.1.2.1.31.1.1.1.19.274|67|3409 +1.3.6.1.2.1.31.1.1.1.19.275|67|11949 +1.3.6.1.2.1.31.1.1.1.19.276|67|11950 +1.3.6.1.2.1.31.1.1.1.19.277|67|3434 +1.3.6.1.2.1.31.1.1.1.19.278|67|3546 +1.3.6.1.2.1.31.1.1.1.19.280|67|3568 +1.3.6.1.2.1.31.1.1.1.19.281|67|3457 +1.3.6.1.2.1.31.1.1.1.19.282|67|3480 +1.3.6.1.2.1.31.1.1.1.19.283|67|3591 +1.3.6.1.2.1.31.1.1.1.19.284|67|3613 +1.3.6.1.2.1.31.1.1.1.19.285|67|3502 +1.3.6.1.2.1.31.1.1.1.19.286|67|3636 +1.3.6.1.2.1.31.1.1.1.19.287|67|3524 +1.3.6.1.2.1.31.1.1.1.19.288|67|3658 +1.3.6.1.2.1.31.1.1.1.19.291|67|11297 +1.3.6.1.2.1.31.1.1.1.19.292|67|11297 +1.3.6.1.2.1.31.1.1.1.19.293|67|11341 +1.3.6.1.2.1.31.1.1.1.19.294|67|11362 +1.3.6.1.2.1.31.1.1.1.19.295|67|11362 +1.3.6.1.2.1.31.1.1.1.19.395|67|3776 +1.3.6.1.2.1.31.1.1.1.19.396|67|3735 +1.3.6.1.2.1.31.1.1.1.19.398|67|8791 +1.3.6.1.2.1.31.1.1.1.19.399|67|8757 +1.3.6.1.2.1.31.1.1.1.19.414|67|11339 +1.3.6.1.2.1.31.1.1.1.19.415|67|3398 +1.3.6.1.2.1.31.1.1.1.19.417|67|8800 +1.3.6.1.2.1.31.1.1.1.19.418|67|8819 +1.3.6.1.2.1.31.1.1.1.19.438|67|11385 +1.3.6.1.2.1.31.1.1.1.19.439|67|11386 +1.3.6.1.2.1.31.1.1.1.19.440|67|11404 +1.3.6.1.2.1.31.1.1.1.19.441|67|11404 +1.3.6.1.2.1.31.1.1.1.19.442|67|11405 +1.3.6.1.2.1.31.1.1.1.19.443|67|11409 +1.3.6.1.2.1.31.1.1.1.19.444|67|11410 +1.3.6.1.2.1.31.1.1.1.19.445|67|11414 +1.3.6.1.2.1.31.1.1.1.19.446|67|11414 +1.3.6.1.2.1.31.1.1.1.19.447|67|11435 +1.3.6.1.2.1.31.1.1.1.19.448|67|11437 +1.3.6.1.2.1.31.1.1.1.19.449|67|11437 +1.3.6.1.2.1.31.1.1.1.19.450|67|11438 +1.3.6.1.2.1.31.1.1.1.19.451|67|11438 +1.3.6.1.2.1.31.1.1.1.19.452|67|11438 +1.3.6.1.2.1.31.1.1.1.19.453|67|11439 +1.3.6.1.2.1.31.1.1.1.19.454|67|11439 +1.3.6.1.2.1.31.1.1.1.19.455|67|11440 +1.3.6.1.2.1.31.1.1.1.19.456|67|11440 +1.3.6.1.2.1.31.1.1.1.19.457|67|11406 +1.3.6.1.2.1.31.1.1.1.19.462|67|11406 +1.3.6.1.2.1.31.1.1.1.19.464|67|3793 +1.3.6.1.2.1.31.1.1.1.19.465|67|3815 +1.3.6.1.2.1.31.1.1.1.19.467|67|11330 +1.3.6.1.2.1.31.1.1.1.19.468|67|11406 +1.3.6.1.2.1.31.1.1.1.19.474|67|11410 +1.3.6.1.2.1.31.1.1.1.19.475|67|11407 +1.3.6.1.2.1.31.1.1.1.19.476|67|11410 +1.3.6.1.2.1.31.1.1.1.19.477|67|3838 +1.3.6.1.2.1.31.1.1.1.19.478|67|11410 +1.3.6.1.2.1.31.1.1.1.19.487|67|3955 +1.3.6.1.2.1.31.1.1.1.19.489|67|11411 +1.3.6.1.2.1.31.1.1.1.19.490|67|11411 +1.3.6.1.2.1.31.1.1.1.19.493|67|11412 +1.3.6.1.2.1.31.1.1.1.19.494|67|3860 +1.3.6.1.2.1.31.1.1.1.19.495|67|3882 +1.3.6.1.2.1.31.1.1.1.19.496|67|3685 +1.3.6.1.2.1.31.1.1.1.19.497|67|3718 +1.3.6.1.2.1.31.1.1.1.19.502|67|11442 +1.3.6.1.2.1.31.1.1.1.19.503|67|11443 +1.3.6.1.2.1.31.1.1.1.19.504|67|11444 +1.3.6.1.2.1.31.1.1.1.19.505|67|11444 +1.3.6.1.2.1.31.1.1.1.19.506|67|8822 +1.3.6.1.2.1.31.1.1.1.19.509|67|8824 +1.3.6.1.2.1.31.1.1.1.19.510|67|11444 +1.3.6.1.2.1.31.1.1.1.19.511|67|11445 +1.3.6.1.2.1.31.1.1.1.19.513|67|11445 +1.3.6.1.2.1.31.1.1.1.19.514|67|3905 +1.3.6.1.2.1.31.1.1.1.19.515|67|3928 +1.3.6.1.2.1.31.1.1.1.19.516|67|11408 +1.3.6.1.2.1.31.1.1.1.19.517|67|11446 +1.3.6.1.2.1.31.1.1.1.19.518|67|3972 +1.3.6.1.2.1.31.1.1.1.19.519|67|3399 +1.3.6.1.2.1.31.1.1.1.19.520|67|3995 +1.3.6.1.2.1.31.1.1.1.19.523|67|11951 +1.3.6.1.2.1.31.1.1.1.19.524|67|11951 +1.3.6.1.2.1.31.1.1.1.19.525|67|11446 +1.3.6.1.2.1.31.1.1.1.19.526|67|11456 +1.3.6.1.2.1.31.1.1.1.19.527|67|11456 +1.3.6.1.2.1.31.1.1.1.19.528|67|11456 +1.3.6.1.2.1.31.1.1.1.19.529|67|11457 +1.3.6.1.2.1.31.1.1.1.19.530|67|11457 +1.3.6.1.2.1.31.1.1.1.19.531|67|11458 +1.3.6.1.2.1.31.1.1.1.19.532|67|11458 +1.3.6.1.2.1.31.1.1.1.19.533|67|11458 +1.3.6.1.2.1.31.1.1.1.19.534|67|11459 +1.3.6.1.2.1.31.1.1.1.19.535|67|8826 +1.3.6.1.2.1.31.1.1.1.19.536|67|8828 +1.3.6.1.2.1.31.1.1.1.19.538|67|8871 +1.3.6.1.2.1.31.1.1.1.19.540|67|11460 +1.3.6.1.2.1.31.1.1.1.19.541|67|11291 +1.3.6.1.2.1.31.1.1.1.19.542|67|8874 +1.3.6.1.2.1.31.1.1.1.19.543|67|8872 +1.3.6.1.2.1.31.1.1.1.19.544|67|8927 +1.3.6.1.2.1.31.1.1.1.19.545|67|11479 +1.3.6.1.2.1.31.1.1.1.19.546|67|11483 +1.3.6.1.2.1.31.1.1.1.19.547|67|4072 +1.3.6.1.2.1.31.1.1.1.19.548|67|4088 +1.3.6.1.2.1.31.1.1.1.19.549|67|4095 +1.3.6.1.2.1.31.1.1.1.19.550|67|4101 +1.3.6.1.2.1.31.1.1.1.19.551|67|2351 +1.3.6.1.2.1.31.1.1.1.19.552|67|2352 +1.3.6.1.2.1.31.1.1.1.19.553|67|2352 +1.3.6.1.2.1.31.1.1.1.19.554|67|2352 +1.3.6.1.2.1.31.1.1.1.19.555|67|4121 +1.3.6.1.2.1.31.1.1.1.19.556|67|4137 +1.3.6.1.2.1.31.1.1.1.19.557|67|4154 +1.3.6.1.2.1.31.1.1.1.19.558|67|4170 +1.3.6.1.2.1.31.1.1.1.19.559|67|4187 +1.3.6.1.2.1.31.1.1.1.19.560|67|4208 +1.3.6.1.2.1.31.1.1.1.19.561|67|4229 +1.3.6.1.2.1.31.1.1.1.19.562|67|4246 +1.3.6.1.2.1.31.1.1.1.19.563|67|4267 +1.3.6.1.2.1.31.1.1.1.19.564|67|4294 +1.3.6.1.2.1.31.1.1.1.19.565|67|4310 +1.3.6.1.2.1.31.1.1.1.19.566|67|4326 +1.3.6.1.2.1.31.1.1.1.19.567|67|4358 +1.3.6.1.2.1.31.1.1.1.19.568|67|4390 +1.3.6.1.2.1.31.1.1.1.19.569|67|4421 +1.3.6.1.2.1.31.1.1.1.19.570|67|4437 +1.3.6.1.2.1.31.1.1.1.19.571|67|4469 +1.3.6.1.2.1.31.1.1.1.19.572|67|4485 +1.3.6.1.2.1.31.1.1.1.19.573|67|4502 +1.3.6.1.2.1.31.1.1.1.19.574|67|4523 +1.3.6.1.2.1.31.1.1.1.19.575|67|4539 +1.3.6.1.2.1.31.1.1.1.19.576|67|4556 +1.3.6.1.2.1.31.1.1.1.19.577|67|2354 +1.3.6.1.2.1.31.1.1.1.19.578|67|2354 +1.3.6.1.2.1.31.1.1.1.19.579|67|4575 +1.3.6.1.2.1.31.1.1.1.19.580|67|4592 +1.3.6.1.2.1.31.1.1.1.19.581|67|4608 +1.3.6.1.2.1.31.1.1.1.19.582|67|4625 +1.3.6.1.2.1.31.1.1.1.19.583|67|4641 +1.3.6.1.2.1.31.1.1.1.19.584|67|4658 +1.3.6.1.2.1.31.1.1.1.19.585|67|4674 +1.3.6.1.2.1.31.1.1.1.19.586|67|4690 +1.3.6.1.2.1.31.1.1.1.19.587|67|4707 +1.3.6.1.2.1.31.1.1.1.19.588|67|4723 +1.3.6.1.2.1.31.1.1.1.19.589|67|4750 +1.3.6.1.2.1.31.1.1.1.19.590|67|4777 +1.3.6.1.2.1.31.1.1.1.19.591|67|4793 +1.3.6.1.2.1.31.1.1.1.19.592|67|4810 +1.3.6.1.2.1.31.1.1.1.19.593|67|4831 +1.3.6.1.2.1.31.1.1.1.19.594|67|4848 +1.3.6.1.2.1.31.1.1.1.19.595|67|4864 +1.3.6.1.2.1.31.1.1.1.19.596|67|4880 +1.3.6.1.2.1.31.1.1.1.19.597|67|2356 +1.3.6.1.2.1.31.1.1.1.19.598|67|4898 +1.3.6.1.2.1.31.1.1.1.19.599|67|4920 +1.3.6.1.2.1.31.1.1.1.19.600|67|4936 +1.3.6.1.2.1.31.1.1.1.19.601|67|4953 +1.3.6.1.2.1.31.1.1.1.19.602|67|4969 +1.3.6.1.2.1.31.1.1.1.19.603|67|4986 +1.3.6.1.2.1.31.1.1.1.19.604|67|5012 +1.3.6.1.2.1.31.1.1.1.19.605|67|5038 +1.3.6.1.2.1.31.1.1.1.19.606|67|5064 +1.3.6.1.2.1.31.1.1.1.19.607|67|5091 +1.3.6.1.2.1.31.1.1.1.19.608|67|5117 +1.3.6.1.2.1.31.1.1.1.19.609|67|5143 +1.3.6.1.2.1.31.1.1.1.19.610|67|5160 +1.3.6.1.2.1.31.1.1.1.19.611|67|5176 +1.3.6.1.2.1.31.1.1.1.19.612|67|5192 +1.3.6.1.2.1.31.1.1.1.19.613|67|5209 +1.3.6.1.2.1.31.1.1.1.19.614|67|5225 +1.3.6.1.2.1.31.1.1.1.19.615|67|2358 +1.3.6.1.2.1.31.1.1.1.19.616|67|5242 +1.3.6.1.2.1.31.1.1.1.19.617|67|5281 +1.3.6.1.2.1.31.1.1.1.19.618|67|5298 +1.3.6.1.2.1.31.1.1.1.19.619|67|5314 +1.3.6.1.2.1.31.1.1.1.19.620|67|5330 +1.3.6.1.2.1.31.1.1.1.19.621|67|5347 +1.3.6.1.2.1.31.1.1.1.19.622|67|5363 +1.3.6.1.2.1.31.1.1.1.19.623|67|5380 +1.3.6.1.2.1.31.1.1.1.19.624|67|5396 +1.3.6.1.2.1.31.1.1.1.19.625|67|5413 +1.3.6.1.2.1.31.1.1.1.19.626|67|5429 +1.3.6.1.2.1.31.1.1.1.19.627|67|5446 +1.3.6.1.2.1.31.1.1.1.19.628|67|5467 +1.3.6.1.2.1.31.1.1.1.19.629|67|5483 +1.3.6.1.2.1.31.1.1.1.19.630|67|5504 +1.3.6.1.2.1.31.1.1.1.19.631|67|5521 +1.3.6.1.2.1.31.1.1.1.19.632|67|5538 +1.3.6.1.2.1.31.1.1.1.19.633|67|5554 +1.3.6.1.2.1.31.1.1.1.19.634|67|5571 +1.3.6.1.2.1.31.1.1.1.19.635|67|5588 +1.3.6.1.2.1.31.1.1.1.19.636|67|5604 +1.3.6.1.2.1.31.1.1.1.19.637|67|5621 +1.3.6.1.2.1.31.1.1.1.19.638|67|5637 +1.3.6.1.2.1.31.1.1.1.19.639|67|5664 +1.3.6.1.2.1.31.1.1.1.19.640|67|5680 +1.3.6.1.2.1.31.1.1.1.19.641|67|5697 +1.3.6.1.2.1.31.1.1.1.19.642|67|5714 +1.3.6.1.2.1.31.1.1.1.19.643|67|5730 +1.3.6.1.2.1.31.1.1.1.19.644|67|5746 +1.3.6.1.2.1.31.1.1.1.19.645|67|5763 +1.3.6.1.2.1.31.1.1.1.19.646|67|5780 +1.3.6.1.2.1.31.1.1.1.19.647|67|5796 +1.3.6.1.2.1.31.1.1.1.19.648|67|5813 +1.3.6.1.2.1.31.1.1.1.19.649|67|5830 +1.3.6.1.2.1.31.1.1.1.19.650|67|5856 +1.3.6.1.2.1.31.1.1.1.19.651|67|5873 +1.3.6.1.2.1.31.1.1.1.19.652|67|2363 +1.3.6.1.2.1.31.1.1.1.19.653|67|2363 +1.3.6.1.2.1.31.1.1.1.19.654|67|2363 +1.3.6.1.2.1.31.1.1.1.19.655|67|2363 +1.3.6.1.2.1.31.1.1.1.19.656|67|5892 +1.3.6.1.2.1.31.1.1.1.19.657|67|5919 +1.3.6.1.2.1.31.1.1.1.19.658|67|5945 +1.3.6.1.2.1.31.1.1.1.19.659|67|5967 +1.3.6.1.2.1.31.1.1.1.19.660|67|5984 +1.3.6.1.2.1.31.1.1.1.19.661|67|6010 +1.3.6.1.2.1.31.1.1.1.19.662|67|6022 +1.3.6.1.2.1.31.1.1.1.19.663|67|6038 +1.3.6.1.2.1.31.1.1.1.19.664|67|6054 +1.3.6.1.2.1.31.1.1.1.19.665|67|6081 +1.3.6.1.2.1.31.1.1.1.19.666|67|6108 +1.3.6.1.2.1.31.1.1.1.19.667|67|6124 +1.3.6.1.2.1.31.1.1.1.19.668|67|6141 +1.3.6.1.2.1.31.1.1.1.19.669|67|6152 +1.3.6.1.2.1.31.1.1.1.19.670|67|6164 +1.3.6.1.2.1.31.1.1.1.19.671|67|6176 +1.3.6.1.2.1.31.1.1.1.19.672|67|6192 +1.3.6.1.2.1.31.1.1.1.19.673|67|6204 +1.3.6.1.2.1.31.1.1.1.19.674|67|6220 +1.3.6.1.2.1.31.1.1.1.19.675|67|6232 +1.3.6.1.2.1.31.1.1.1.19.676|67|6248 +1.3.6.1.2.1.31.1.1.1.19.677|67|6260 +1.3.6.1.2.1.31.1.1.1.19.678|67|6277 +1.3.6.1.2.1.31.1.1.1.19.679|67|6288 +1.3.6.1.2.1.31.1.1.1.19.680|67|6300 +1.3.6.1.2.1.31.1.1.1.19.681|67|6312 +1.3.6.1.2.1.31.1.1.1.19.682|67|6333 +1.3.6.1.2.1.31.1.1.1.19.683|67|6350 +1.3.6.1.2.1.31.1.1.1.19.684|67|6366 +1.3.6.1.2.1.31.1.1.1.19.685|67|6378 +1.3.6.1.2.1.31.1.1.1.19.686|67|6390 +1.3.6.1.2.1.31.1.1.1.19.687|67|6401 +1.3.6.1.2.1.31.1.1.1.19.688|67|6413 +1.3.6.1.2.1.31.1.1.1.19.689|67|6453 +1.3.6.1.2.1.31.1.1.1.19.690|67|6484 +1.3.6.1.2.1.31.1.1.1.19.691|67|6516 +1.3.6.1.2.1.31.1.1.1.19.692|67|6564 +1.3.6.1.2.1.31.1.1.1.19.693|67|6592 +1.3.6.1.2.1.31.1.1.1.19.694|67|6620 +1.3.6.1.2.1.31.1.1.1.19.695|67|6666 +1.3.6.1.2.1.31.1.1.1.19.696|67|6704 +1.3.6.1.2.1.31.1.1.1.19.697|67|6747 +1.3.6.1.2.1.31.1.1.1.19.698|67|6790 +1.3.6.1.2.1.31.1.1.1.19.699|67|6828 +1.3.6.1.2.1.31.1.1.1.19.700|67|6865 +1.3.6.1.2.1.31.1.1.1.19.701|67|6902 +1.3.6.1.2.1.31.1.1.1.19.702|67|6948 +1.3.6.1.2.1.31.1.1.1.19.703|67|6994 +1.3.6.1.2.1.31.1.1.1.19.704|67|7041 +1.3.6.1.2.1.31.1.1.1.19.705|67|7083 +1.3.6.1.2.1.31.1.1.1.19.706|67|7126 +1.3.6.1.2.1.31.1.1.1.19.707|67|7168 +1.3.6.1.2.1.31.1.1.1.19.708|67|7200 +1.3.6.1.2.1.31.1.1.1.19.709|67|7232 +1.3.6.1.2.1.31.1.1.1.19.710|67|7275 +1.3.6.1.2.1.31.1.1.1.19.711|67|7318 +1.3.6.1.2.1.31.1.1.1.19.712|67|7350 +1.3.6.1.2.1.31.1.1.1.19.713|67|7393 +1.3.6.1.2.1.31.1.1.1.19.714|67|7436 +1.3.6.1.2.1.31.1.1.1.19.715|67|7478 +1.3.6.1.2.1.31.1.1.1.19.716|67|7520 +1.3.6.1.2.1.31.1.1.1.19.717|67|7556 +1.3.6.1.2.1.31.1.1.1.19.718|67|7584 +1.3.6.1.2.1.31.1.1.1.19.719|67|7612 +1.3.6.1.2.1.31.1.1.1.19.720|67|7644 +1.3.6.1.2.1.31.1.1.1.19.721|67|7672 +1.3.6.1.2.1.31.1.1.1.19.722|67|7699 +1.3.6.1.2.1.31.1.1.1.19.723|67|7727 +1.3.6.1.2.1.31.1.1.1.19.724|67|7760 +1.3.6.1.2.1.31.1.1.1.19.725|67|7788 +1.3.6.1.2.1.31.1.1.1.19.726|67|7815 +1.3.6.1.2.1.31.1.1.1.19.727|67|7852 +1.3.6.1.2.1.31.1.1.1.19.728|67|7879 +1.3.6.1.2.1.31.1.1.1.19.729|67|7926 +1.3.6.1.2.1.31.1.1.1.19.730|67|7959 +1.3.6.1.2.1.31.1.1.1.19.731|67|7991 +1.3.6.1.2.1.31.1.1.1.19.732|67|8024 +1.3.6.1.2.1.31.1.1.1.19.733|67|8060 +1.3.6.1.2.1.31.1.1.1.19.734|67|8102 +1.3.6.1.2.1.31.1.1.1.19.735|67|8135 +1.3.6.1.2.1.31.1.1.1.19.736|67|8173 +1.3.6.1.2.1.31.1.1.1.19.737|67|8216 +1.3.6.1.2.1.31.1.1.1.19.738|67|8253 +1.3.6.1.2.1.31.1.1.1.19.739|67|8294 +1.3.6.1.2.1.31.1.1.1.19.740|67|8350 +1.3.6.1.2.1.31.1.1.1.19.741|67|8409 +1.3.6.1.2.1.31.1.1.1.19.742|67|8442 +1.3.6.1.2.1.31.1.1.1.19.743|67|2374 +1.3.6.1.2.1.31.1.1.1.19.744|67|8490 +1.3.6.1.2.1.31.1.1.1.19.745|67|8532 +1.3.6.1.2.1.31.1.1.1.19.746|67|8564 +1.3.6.1.2.1.31.1.1.1.19.747|67|8606 +1.3.6.1.2.1.31.1.1.1.19.748|67|8647 +1.3.6.1.2.1.31.1.1.1.19.749|67|8695 +1.3.6.1.2.1.31.1.1.1.19.750|67|2374 +1.3.6.1.2.1.31.1.1.1.19.751|67|8734 +1.3.6.1.2.1.31.1.1.1.19.768|67|11484 +1.3.6.1.2.1.31.1.1.1.19.769|67|8909 +1.3.6.1.2.1.31.1.1.1.19.770|67|8928 +1.3.6.1.2.1.31.1.1.1.19.771|67|11591 +1.3.6.1.2.1.31.1.1.1.19.772|67|11612 +1.3.6.1.2.1.31.1.1.1.19.773|67|11633 +1.3.6.1.2.1.31.1.1.1.19.774|67|8932 +1.3.6.1.2.1.31.1.1.1.19.775|67|8934 +1.3.6.1.2.1.31.1.1.1.19.776|67|8935 +1.3.6.1.2.1.31.1.1.1.19.777|67|11484 +1.3.6.1.2.1.31.1.1.1.19.778|67|11484 +1.3.6.1.2.1.31.1.1.1.19.779|67|11485 +1.3.6.1.2.1.31.1.1.1.19.780|67|11440 +1.3.6.1.2.1.31.1.1.1.19.781|67|11441 +1.3.6.1.2.1.31.1.1.1.19.782|67|11926 +1.3.6.1.2.1.31.1.1.1.19.783|67|11442 +1.3.6.1.2.1.31.1.1.1.19.784|67|11654 +1.3.6.1.2.1.31.1.1.1.19.785|67|8962 +1.3.6.1.2.1.31.1.1.1.19.786|67|11506 +1.3.6.1.2.1.31.1.1.1.19.787|67|11549 +1.3.6.1.2.1.31.1.1.1.19.788|67|11570 +1.3.6.1.2.1.31.1.1.1.19.789|67|11674 +1.3.6.1.2.1.31.1.1.1.19.790|67|11714 +1.3.6.1.2.1.31.1.1.1.19.791|67|11714 +1.3.6.1.2.1.31.1.1.1.19.792|67|8996 +1.3.6.1.2.1.31.1.1.1.19.793|67|9000 +1.3.6.1.2.1.31.1.1.1.19.794|67|9002 +1.3.6.1.2.1.31.1.1.1.19.795|67|11715 +1.3.6.1.2.1.31.1.1.1.19.796|67|11715 +1.3.6.1.2.1.31.1.1.1.19.797|67|11716 +1.3.6.1.2.1.31.1.1.1.19.798|67|11717 +1.3.6.1.2.1.31.1.1.1.19.799|67|11717 +1.3.6.1.2.1.31.1.1.1.19.800|67|11716 +1.3.6.1.2.1.31.1.1.1.19.801|67|8930 +1.3.6.1.2.1.31.1.1.1.19.802|67|9053 +1.3.6.1.2.1.31.1.1.1.19.803|67|9055 +1.3.6.1.2.1.31.1.1.1.19.804|67|9004 +1.3.6.1.2.1.31.1.1.1.19.805|67|9006 +1.3.6.1.2.1.31.1.1.1.19.806|67|9049 +1.3.6.1.2.1.31.1.1.1.19.807|67|9051 +1.3.6.1.2.1.31.1.1.1.19.808|67|11718 +1.3.6.1.2.1.31.1.1.1.19.809|67|11718 +1.3.6.1.2.1.31.1.1.1.19.810|67|9056 +1.3.6.1.2.1.31.1.1.1.19.811|67|9058 +1.3.6.1.2.1.31.1.1.1.19.812|67|11718 +1.3.6.1.2.1.31.1.1.1.19.813|67|11718 +1.3.6.1.2.1.31.1.1.1.19.814|67|9112 +1.3.6.1.2.1.31.1.1.1.19.815|67|9110 +1.3.6.1.2.1.31.1.1.1.19.816|67|11718 +1.3.6.1.2.1.31.1.1.1.19.817|67|11719 +1.3.6.1.2.1.31.1.1.1.19.818|67|9113 +1.3.6.1.2.1.31.1.1.1.19.819|67|11296 +1.3.6.1.2.1.31.1.1.1.19.820|67|11719 +1.3.6.1.2.1.31.1.1.1.19.821|67|11721 +1.3.6.1.2.1.31.1.1.1.19.822|67|11721 +1.3.6.1.2.1.31.1.1.1.19.823|67|11721 +1.3.6.1.2.1.31.1.1.1.19.824|67|11927 +1.3.6.1.2.1.31.1.1.1.19.825|67|11786 +1.3.6.1.2.1.31.1.1.1.19.826|67|11790 +1.3.6.1.2.1.31.1.1.1.19.827|67|11791 +1.3.6.1.2.1.31.1.1.1.19.828|67|11813 +1.3.6.1.2.1.31.1.1.1.19.829|67|11814 +1.3.6.1.2.1.31.1.1.1.19.830|67|11830 +1.3.6.1.2.1.31.1.1.1.19.831|67|11792 +1.3.6.1.2.1.31.1.1.1.19.832|67|11812 +1.3.6.1.2.1.31.1.1.1.19.833|67|11791 +1.3.6.1.2.1.31.1.1.1.19.834|67|9115 +1.3.6.1.2.1.31.1.1.1.19.835|67|9117 +1.3.6.1.2.1.31.1.1.1.19.836|67|9119 +1.3.6.1.2.1.31.1.1.1.19.837|67|11832 +1.3.6.1.2.1.31.1.1.1.19.838|67|9137 +1.3.6.1.2.1.31.1.1.1.19.839|67|11380 +1.3.6.1.2.1.31.1.1.1.19.840|67|11381 +1.3.6.1.2.1.31.1.1.1.19.841|67|11832 +1.3.6.1.2.1.31.1.1.1.19.842|67|11854 +1.3.6.1.2.1.31.1.1.1.19.843|67|11856 +1.3.6.1.2.1.31.1.1.1.19.844|67|11382 +1.3.6.1.2.1.31.1.1.1.19.845|67|11383 +1.3.6.1.2.1.31.1.1.1.19.846|67|11857 +1.3.6.1.2.1.31.1.1.1.19.847|67|11856 +1.3.6.1.2.1.31.1.1.1.19.848|67|9139 +1.3.6.1.2.1.31.1.1.1.19.849|67|9141 +1.3.6.1.2.1.31.1.1.1.19.850|67|9143 +1.3.6.1.2.1.31.1.1.1.19.851|67|11857 +1.3.6.1.2.1.31.1.1.1.19.852|67|11858 +1.3.6.1.2.1.31.1.1.1.19.853|67|11903 +1.3.6.1.2.1.31.1.1.1.19.854|67|9203 +1.3.6.1.2.1.31.1.1.1.19.855|67|11412 +1.3.6.1.2.1.31.1.1.1.19.856|67|11882 +1.3.6.1.2.1.31.1.1.1.19.857|67|11902 +1.3.6.1.2.1.31.1.1.1.19.858|67|11902 +1.3.6.1.2.1.31.1.1.1.19.859|67|11902 +1.3.6.1.2.1.31.1.1.1.19.864|67|11880 +1.3.6.1.2.1.31.1.1.1.19.868|67|11385 +1.3.6.1.2.1.31.1.1.1.19.869|67|11924 +1.3.6.1.2.1.31.1.1.1.19.870|67|11925 +1.3.6.1.2.1.31.1.1.1.19.871|67|9205 +1.3.6.1.2.1.31.1.1.1.19.872|67|9234 +1.3.6.1.2.1.31.1.1.1.19.873|67|11926 +1.3.6.1.2.1.31.1.1.1.19.874|67|9201 +1.3.6.1.2.1.31.1.1.1.19.875|67|9199 +1.3.6.1.2.1.31.1.1.1.19.876|67|9145 +1.3.6.1.2.1.31.1.1.1.19.877|67|9147 +1.3.6.1.2.1.31.1.1.1.19.878|67|11880 +1.3.6.1.2.1.31.1.1.1.19.879|67|11880 +1.3.6.1.2.1.31.1.1.1.19.880|67|11881 +1.3.6.1.2.1.31.1.1.1.19.881|67|11881 +1.3.6.1.2.1.31.1.1.1.19.882|67|11926 +1.3.6.1.2.1.31.1.1.1.19.883|67|9267 +1.3.6.1.2.1.31.1.1.1.19.884|67|11925 +1.3.6.1.2.1.31.1.1.1.19.885|67|9207 +1.3.6.1.2.1.31.1.1.1.19.886|67|11924 +1.3.6.1.2.1.31.1.1.1.19.887|67|11924 +1.3.6.1.2.1.31.1.1.1.19.888|67|11972 +1.3.6.1.2.1.31.1.1.1.19.889|67|11972 +1.3.6.1.2.1.31.1.1.1.19.890|67|11972 +1.3.6.1.2.1.31.1.1.1.19.891|67|0 +1.3.6.1.2.1.31.1.1.1.19.892|67|0 +1.3.6.1.2.1.31.1.1.1.19.893|67|0 +1.3.6.1.2.1.31.1.1.1.19.894|67|0 +1.3.6.1.2.1.31.1.1.1.19.895|67|0 +1.3.6.1.2.1.31.1.1.1.19.896|67|0 +1.3.6.1.2.1.31.1.1.1.19.897|67|0 +1.3.6.1.2.1.31.1.1.1.19.898|67|0 +1.3.6.1.2.1.31.1.1.1.19.899|67|0 +1.3.6.1.2.1.31.1.1.1.19.900|67|0 +1.3.6.1.2.1.31.1.1.1.19.901|67|0 +1.3.6.1.2.1.31.1.1.1.19.902|67|0 +1.3.6.1.2.1.31.1.1.1.19.903|67|0 +1.3.6.1.2.1.31.1.1.1.19.904|67|0 +1.3.6.1.2.1.31.1.1.1.19.905|67|0 +1.3.6.1.2.1.31.1.1.1.19.906|67|0 +1.3.6.1.2.1.31.1.1.1.19.907|67|0 +1.3.6.1.2.1.31.1.1.1.19.908|67|0 +1.3.6.1.2.1.31.1.1.1.19.909|67|0 +1.3.6.1.2.1.31.1.1.1.19.910|67|0 +1.3.6.1.2.1.31.1.1.1.19.911|67|0 +1.3.6.1.2.1.31.1.1.1.19.912|67|0 +1.3.6.1.2.1.31.1.1.1.19.913|67|0 +1.3.6.1.2.1.31.1.1.1.19.914|67|0 +1.3.6.1.2.1.31.1.1.1.19.915|67|0 +1.3.6.1.2.1.31.1.1.1.19.916|67|0 +1.3.6.1.2.1.31.1.1.1.19.917|67|0 +1.3.6.1.2.1.31.1.1.1.19.918|67|0 +1.3.6.1.2.1.31.1.1.1.19.919|67|0 +1.3.6.1.2.1.31.1.1.1.19.920|67|0 +1.3.6.1.2.1.31.1.1.1.19.921|67|0 +1.3.6.1.2.1.31.1.1.1.19.922|67|0 +1.3.6.1.2.1.31.1.1.1.19.923|67|0 +1.3.6.1.2.1.31.1.1.1.19.924|67|0 +1.3.6.1.2.1.31.1.1.1.19.925|67|0 +1.3.6.1.2.1.31.1.1.1.19.926|67|0 +1.3.6.1.2.1.31.1.1.1.19.927|67|0 +1.3.6.1.2.1.31.1.1.1.19.928|67|0 +1.3.6.1.2.1.31.1.1.1.19.929|67|0 +1.3.6.1.2.1.31.1.1.1.19.930|67|0 +1.3.6.1.2.1.31.1.1.1.19.931|67|0 +1.3.6.1.2.1.31.1.1.1.19.932|67|0 +1.3.6.1.2.1.31.1.1.1.19.933|67|0 +1.3.6.1.2.1.31.1.1.1.19.934|67|0 +1.3.6.1.2.1.31.1.1.1.19.935|67|0 +1.3.6.1.2.1.31.1.1.1.19.936|67|0 +1.3.6.1.2.1.31.1.1.1.19.937|67|0 +1.3.6.1.2.1.31.1.1.1.19.938|67|0 +1.3.6.1.2.1.31.1.1.1.19.939|67|0 +1.3.6.1.2.1.31.1.1.1.19.940|67|0 +1.3.6.1.2.1.31.1.1.1.19.941|67|0 +1.3.6.1.2.1.31.1.1.1.19.942|67|0 +1.3.6.1.2.1.31.1.1.1.19.943|67|0 +1.3.6.1.2.1.31.1.1.1.19.944|67|0 +1.3.6.1.2.1.31.1.1.1.19.945|67|0 +1.3.6.1.2.1.31.1.1.1.19.946|67|0 +1.3.6.1.2.1.31.1.1.1.19.947|67|0 +1.3.6.1.2.1.31.1.1.1.19.948|67|0 +1.3.6.1.2.1.31.1.1.1.19.949|67|0 +1.3.6.1.4.1.9.5.1.4.1.1.11.1.1|2|547 +1.3.6.1.4.1.9.5.1.4.1.1.11.1.2|2|548 +1.3.6.1.4.1.9.5.1.4.1.1.11.1.3|2|549 +1.3.6.1.4.1.9.5.1.4.1.1.11.1.4|2|550 +1.3.6.1.4.1.9.5.1.4.1.1.11.1.5|2|551 +1.3.6.1.4.1.9.5.1.4.1.1.11.1.6|2|552 +1.3.6.1.4.1.9.5.1.4.1.1.11.1.7|2|553 +1.3.6.1.4.1.9.5.1.4.1.1.11.1.8|2|554 +1.3.6.1.4.1.9.5.1.4.1.1.11.3.1|2|555 +1.3.6.1.4.1.9.5.1.4.1.1.11.3.2|2|556 +1.3.6.1.4.1.9.5.1.4.1.1.11.3.3|2|557 +1.3.6.1.4.1.9.5.1.4.1.1.11.3.4|2|558 +1.3.6.1.4.1.9.5.1.4.1.1.11.3.5|2|559 +1.3.6.1.4.1.9.5.1.4.1.1.11.3.6|2|560 +1.3.6.1.4.1.9.5.1.4.1.1.11.3.7|2|561 +1.3.6.1.4.1.9.5.1.4.1.1.11.3.8|2|562 +1.3.6.1.4.1.9.5.1.4.1.1.11.3.9|2|563 +1.3.6.1.4.1.9.5.1.4.1.1.11.3.10|2|564 +1.3.6.1.4.1.9.5.1.4.1.1.11.3.11|2|565 +1.3.6.1.4.1.9.5.1.4.1.1.11.3.12|2|566 +1.3.6.1.4.1.9.5.1.4.1.1.11.3.13|2|567 +1.3.6.1.4.1.9.5.1.4.1.1.11.3.14|2|568 +1.3.6.1.4.1.9.5.1.4.1.1.11.3.15|2|569 +1.3.6.1.4.1.9.5.1.4.1.1.11.3.16|2|570 +1.3.6.1.4.1.9.5.1.4.1.1.11.3.17|2|571 +1.3.6.1.4.1.9.5.1.4.1.1.11.3.18|2|572 +1.3.6.1.4.1.9.5.1.4.1.1.11.3.19|2|573 +1.3.6.1.4.1.9.5.1.4.1.1.11.3.20|2|574 +1.3.6.1.4.1.9.5.1.4.1.1.11.3.21|2|575 +1.3.6.1.4.1.9.5.1.4.1.1.11.3.22|2|576 +1.3.6.1.4.1.9.5.1.4.1.1.11.3.23|2|577 +1.3.6.1.4.1.9.5.1.4.1.1.11.3.24|2|578 +1.3.6.1.4.1.9.5.1.4.1.1.11.3.25|2|579 +1.3.6.1.4.1.9.5.1.4.1.1.11.3.26|2|580 +1.3.6.1.4.1.9.5.1.4.1.1.11.3.27|2|581 +1.3.6.1.4.1.9.5.1.4.1.1.11.3.28|2|582 +1.3.6.1.4.1.9.5.1.4.1.1.11.3.29|2|583 +1.3.6.1.4.1.9.5.1.4.1.1.11.3.30|2|584 +1.3.6.1.4.1.9.5.1.4.1.1.11.3.31|2|585 +1.3.6.1.4.1.9.5.1.4.1.1.11.3.32|2|586 +1.3.6.1.4.1.9.5.1.4.1.1.11.3.33|2|587 +1.3.6.1.4.1.9.5.1.4.1.1.11.3.34|2|588 +1.3.6.1.4.1.9.5.1.4.1.1.11.3.35|2|589 +1.3.6.1.4.1.9.5.1.4.1.1.11.3.36|2|590 +1.3.6.1.4.1.9.5.1.4.1.1.11.3.37|2|591 +1.3.6.1.4.1.9.5.1.4.1.1.11.3.38|2|592 +1.3.6.1.4.1.9.5.1.4.1.1.11.3.39|2|593 +1.3.6.1.4.1.9.5.1.4.1.1.11.3.40|2|594 +1.3.6.1.4.1.9.5.1.4.1.1.11.3.41|2|595 +1.3.6.1.4.1.9.5.1.4.1.1.11.3.42|2|596 +1.3.6.1.4.1.9.5.1.4.1.1.11.3.43|2|597 +1.3.6.1.4.1.9.5.1.4.1.1.11.3.44|2|598 +1.3.6.1.4.1.9.5.1.4.1.1.11.3.45|2|599 +1.3.6.1.4.1.9.5.1.4.1.1.11.3.46|2|600 +1.3.6.1.4.1.9.5.1.4.1.1.11.3.47|2|601 +1.3.6.1.4.1.9.5.1.4.1.1.11.3.48|2|602 +1.3.6.1.4.1.9.5.1.4.1.1.11.4.1|2|603 +1.3.6.1.4.1.9.5.1.4.1.1.11.4.2|2|604 +1.3.6.1.4.1.9.5.1.4.1.1.11.4.3|2|605 +1.3.6.1.4.1.9.5.1.4.1.1.11.4.4|2|606 +1.3.6.1.4.1.9.5.1.4.1.1.11.4.5|2|607 +1.3.6.1.4.1.9.5.1.4.1.1.11.4.6|2|608 +1.3.6.1.4.1.9.5.1.4.1.1.11.4.7|2|609 +1.3.6.1.4.1.9.5.1.4.1.1.11.4.8|2|610 +1.3.6.1.4.1.9.5.1.4.1.1.11.4.9|2|611 +1.3.6.1.4.1.9.5.1.4.1.1.11.4.10|2|612 +1.3.6.1.4.1.9.5.1.4.1.1.11.4.11|2|613 +1.3.6.1.4.1.9.5.1.4.1.1.11.4.12|2|614 +1.3.6.1.4.1.9.5.1.4.1.1.11.4.13|2|615 +1.3.6.1.4.1.9.5.1.4.1.1.11.4.14|2|616 +1.3.6.1.4.1.9.5.1.4.1.1.11.4.15|2|617 +1.3.6.1.4.1.9.5.1.4.1.1.11.4.16|2|618 +1.3.6.1.4.1.9.5.1.4.1.1.11.4.17|2|619 +1.3.6.1.4.1.9.5.1.4.1.1.11.4.18|2|620 +1.3.6.1.4.1.9.5.1.4.1.1.11.4.19|2|621 +1.3.6.1.4.1.9.5.1.4.1.1.11.4.20|2|622 +1.3.6.1.4.1.9.5.1.4.1.1.11.4.21|2|623 +1.3.6.1.4.1.9.5.1.4.1.1.11.4.22|2|624 +1.3.6.1.4.1.9.5.1.4.1.1.11.4.23|2|625 +1.3.6.1.4.1.9.5.1.4.1.1.11.4.24|2|626 +1.3.6.1.4.1.9.5.1.4.1.1.11.4.25|2|627 +1.3.6.1.4.1.9.5.1.4.1.1.11.4.26|2|628 +1.3.6.1.4.1.9.5.1.4.1.1.11.4.27|2|629 +1.3.6.1.4.1.9.5.1.4.1.1.11.4.28|2|630 +1.3.6.1.4.1.9.5.1.4.1.1.11.4.29|2|631 +1.3.6.1.4.1.9.5.1.4.1.1.11.4.30|2|632 +1.3.6.1.4.1.9.5.1.4.1.1.11.4.31|2|633 +1.3.6.1.4.1.9.5.1.4.1.1.11.4.32|2|634 +1.3.6.1.4.1.9.5.1.4.1.1.11.4.33|2|635 +1.3.6.1.4.1.9.5.1.4.1.1.11.4.34|2|636 +1.3.6.1.4.1.9.5.1.4.1.1.11.4.35|2|637 +1.3.6.1.4.1.9.5.1.4.1.1.11.4.36|2|638 +1.3.6.1.4.1.9.5.1.4.1.1.11.4.37|2|639 +1.3.6.1.4.1.9.5.1.4.1.1.11.4.38|2|640 +1.3.6.1.4.1.9.5.1.4.1.1.11.4.39|2|641 +1.3.6.1.4.1.9.5.1.4.1.1.11.4.40|2|642 +1.3.6.1.4.1.9.5.1.4.1.1.11.4.41|2|643 +1.3.6.1.4.1.9.5.1.4.1.1.11.4.42|2|644 +1.3.6.1.4.1.9.5.1.4.1.1.11.4.43|2|645 +1.3.6.1.4.1.9.5.1.4.1.1.11.4.44|2|646 +1.3.6.1.4.1.9.5.1.4.1.1.11.4.45|2|647 +1.3.6.1.4.1.9.5.1.4.1.1.11.4.46|2|648 +1.3.6.1.4.1.9.5.1.4.1.1.11.4.47|2|649 +1.3.6.1.4.1.9.5.1.4.1.1.11.4.48|2|650 +1.3.6.1.4.1.9.5.1.4.1.1.11.5.1|2|651 +1.3.6.1.4.1.9.5.1.4.1.1.11.5.2|2|652 +1.3.6.1.4.1.9.5.1.4.1.1.11.5.3|2|653 +1.3.6.1.4.1.9.5.1.4.1.1.11.5.4|2|654 +1.3.6.1.4.1.9.5.1.4.1.1.11.5.5|2|655 +1.3.6.1.4.1.9.5.1.4.1.1.11.6.1|2|656 +1.3.6.1.4.1.9.5.1.4.1.1.11.6.2|2|657 +1.3.6.1.4.1.9.5.1.4.1.1.11.6.3|2|658 +1.3.6.1.4.1.9.5.1.4.1.1.11.6.4|2|659 +1.3.6.1.4.1.9.5.1.4.1.1.11.6.5|2|660 +1.3.6.1.4.1.9.5.1.4.1.1.11.6.6|2|661 +1.3.6.1.4.1.9.5.1.4.1.1.11.6.7|2|662 +1.3.6.1.4.1.9.5.1.4.1.1.11.6.8|2|663 +1.3.6.1.4.1.9.5.1.4.1.1.11.6.9|2|664 +1.3.6.1.4.1.9.5.1.4.1.1.11.6.10|2|665 +1.3.6.1.4.1.9.5.1.4.1.1.11.6.11|2|666 +1.3.6.1.4.1.9.5.1.4.1.1.11.6.12|2|667 +1.3.6.1.4.1.9.5.1.4.1.1.11.6.13|2|668 +1.3.6.1.4.1.9.5.1.4.1.1.11.6.14|2|669 +1.3.6.1.4.1.9.5.1.4.1.1.11.6.15|2|670 +1.3.6.1.4.1.9.5.1.4.1.1.11.6.16|2|671 +1.3.6.1.4.1.9.5.1.4.1.1.11.6.17|2|672 +1.3.6.1.4.1.9.5.1.4.1.1.11.6.18|2|673 +1.3.6.1.4.1.9.5.1.4.1.1.11.6.19|2|674 +1.3.6.1.4.1.9.5.1.4.1.1.11.6.20|2|675 +1.3.6.1.4.1.9.5.1.4.1.1.11.6.21|2|676 +1.3.6.1.4.1.9.5.1.4.1.1.11.6.22|2|677 +1.3.6.1.4.1.9.5.1.4.1.1.11.6.23|2|678 +1.3.6.1.4.1.9.5.1.4.1.1.11.6.24|2|679 +1.3.6.1.4.1.9.5.1.4.1.1.11.6.25|2|680 +1.3.6.1.4.1.9.5.1.4.1.1.11.6.26|2|681 +1.3.6.1.4.1.9.5.1.4.1.1.11.6.27|2|682 +1.3.6.1.4.1.9.5.1.4.1.1.11.6.28|2|683 +1.3.6.1.4.1.9.5.1.4.1.1.11.6.29|2|684 +1.3.6.1.4.1.9.5.1.4.1.1.11.6.30|2|685 +1.3.6.1.4.1.9.5.1.4.1.1.11.6.31|2|686 +1.3.6.1.4.1.9.5.1.4.1.1.11.6.32|2|687 +1.3.6.1.4.1.9.5.1.4.1.1.11.6.33|2|688 +1.3.6.1.4.1.9.5.1.4.1.1.11.6.34|2|689 +1.3.6.1.4.1.9.5.1.4.1.1.11.6.35|2|690 +1.3.6.1.4.1.9.5.1.4.1.1.11.6.36|2|691 +1.3.6.1.4.1.9.5.1.4.1.1.11.6.37|2|692 +1.3.6.1.4.1.9.5.1.4.1.1.11.6.38|2|693 +1.3.6.1.4.1.9.5.1.4.1.1.11.6.39|2|694 +1.3.6.1.4.1.9.5.1.4.1.1.11.6.40|2|695 +1.3.6.1.4.1.9.5.1.4.1.1.11.6.41|2|696 +1.3.6.1.4.1.9.5.1.4.1.1.11.6.42|2|697 +1.3.6.1.4.1.9.5.1.4.1.1.11.6.43|2|698 +1.3.6.1.4.1.9.5.1.4.1.1.11.6.44|2|699 +1.3.6.1.4.1.9.5.1.4.1.1.11.6.45|2|700 +1.3.6.1.4.1.9.5.1.4.1.1.11.6.46|2|701 +1.3.6.1.4.1.9.5.1.4.1.1.11.6.47|2|702 +1.3.6.1.4.1.9.5.1.4.1.1.11.6.48|2|703 +1.3.6.1.4.1.9.5.1.4.1.1.11.7.1|2|704 +1.3.6.1.4.1.9.5.1.4.1.1.11.7.2|2|705 +1.3.6.1.4.1.9.5.1.4.1.1.11.7.3|2|706 +1.3.6.1.4.1.9.5.1.4.1.1.11.7.4|2|707 +1.3.6.1.4.1.9.5.1.4.1.1.11.7.5|2|708 +1.3.6.1.4.1.9.5.1.4.1.1.11.7.6|2|709 +1.3.6.1.4.1.9.5.1.4.1.1.11.7.7|2|710 +1.3.6.1.4.1.9.5.1.4.1.1.11.7.8|2|711 +1.3.6.1.4.1.9.5.1.4.1.1.11.7.9|2|712 +1.3.6.1.4.1.9.5.1.4.1.1.11.7.10|2|713 +1.3.6.1.4.1.9.5.1.4.1.1.11.7.11|2|714 +1.3.6.1.4.1.9.5.1.4.1.1.11.7.12|2|715 +1.3.6.1.4.1.9.5.1.4.1.1.11.7.13|2|716 +1.3.6.1.4.1.9.5.1.4.1.1.11.7.14|2|717 +1.3.6.1.4.1.9.5.1.4.1.1.11.7.15|2|718 +1.3.6.1.4.1.9.5.1.4.1.1.11.7.16|2|719 +1.3.6.1.4.1.9.5.1.4.1.1.11.7.17|2|720 +1.3.6.1.4.1.9.5.1.4.1.1.11.7.18|2|721 +1.3.6.1.4.1.9.5.1.4.1.1.11.7.19|2|722 +1.3.6.1.4.1.9.5.1.4.1.1.11.7.20|2|723 +1.3.6.1.4.1.9.5.1.4.1.1.11.7.21|2|724 +1.3.6.1.4.1.9.5.1.4.1.1.11.7.22|2|725 +1.3.6.1.4.1.9.5.1.4.1.1.11.7.23|2|726 +1.3.6.1.4.1.9.5.1.4.1.1.11.7.24|2|727 +1.3.6.1.4.1.9.5.1.4.1.1.11.7.25|2|728 +1.3.6.1.4.1.9.5.1.4.1.1.11.7.26|2|729 +1.3.6.1.4.1.9.5.1.4.1.1.11.7.27|2|730 +1.3.6.1.4.1.9.5.1.4.1.1.11.7.28|2|731 +1.3.6.1.4.1.9.5.1.4.1.1.11.7.29|2|732 +1.3.6.1.4.1.9.5.1.4.1.1.11.7.30|2|733 +1.3.6.1.4.1.9.5.1.4.1.1.11.7.31|2|734 +1.3.6.1.4.1.9.5.1.4.1.1.11.7.32|2|735 +1.3.6.1.4.1.9.5.1.4.1.1.11.7.33|2|736 +1.3.6.1.4.1.9.5.1.4.1.1.11.7.34|2|737 +1.3.6.1.4.1.9.5.1.4.1.1.11.7.35|2|738 +1.3.6.1.4.1.9.5.1.4.1.1.11.7.36|2|739 +1.3.6.1.4.1.9.5.1.4.1.1.11.7.37|2|740 +1.3.6.1.4.1.9.5.1.4.1.1.11.7.38|2|741 +1.3.6.1.4.1.9.5.1.4.1.1.11.7.39|2|742 +1.3.6.1.4.1.9.5.1.4.1.1.11.7.40|2|743 +1.3.6.1.4.1.9.5.1.4.1.1.11.7.41|2|744 +1.3.6.1.4.1.9.5.1.4.1.1.11.7.42|2|745 +1.3.6.1.4.1.9.5.1.4.1.1.11.7.43|2|746 +1.3.6.1.4.1.9.5.1.4.1.1.11.7.44|2|747 +1.3.6.1.4.1.9.5.1.4.1.1.11.7.45|2|748 +1.3.6.1.4.1.9.5.1.4.1.1.11.7.46|2|749 +1.3.6.1.4.1.9.5.1.4.1.1.11.7.47|2|750 +1.3.6.1.4.1.9.5.1.4.1.1.11.7.48|2|751 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.270|2|0 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.273|2|0 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.274|2|0 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.277|2|0 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.278|2|0 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.280|2|0 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.281|2|0 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.282|2|0 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.283|2|0 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.284|2|0 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.285|2|0 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.286|2|0 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.287|2|0 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.288|2|0 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.395|2|0 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.396|2|0 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.464|2|0 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.465|2|0 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.477|2|0 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.487|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.494|2|0 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.495|2|0 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.496|2|30 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.497|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.514|2|0 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.515|2|0 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.518|2|0 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.520|2|0 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.547|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.548|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.549|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.550|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.555|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.556|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.557|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.558|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.559|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.560|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.561|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.562|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.563|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.564|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.565|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.566|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.567|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.568|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.569|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.570|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.571|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.572|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.573|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.574|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.575|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.576|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.579|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.580|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.581|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.582|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.583|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.584|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.585|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.586|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.587|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.588|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.589|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.590|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.591|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.592|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.593|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.594|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.595|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.596|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.598|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.599|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.600|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.601|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.602|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.603|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.604|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.605|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.606|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.607|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.608|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.609|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.610|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.611|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.612|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.613|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.614|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.616|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.617|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.618|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.619|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.620|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.621|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.622|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.623|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.624|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.625|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.626|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.627|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.628|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.629|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.630|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.631|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.632|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.633|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.634|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.635|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.636|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.637|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.638|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.639|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.640|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.641|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.642|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.643|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.644|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.645|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.646|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.647|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.648|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.649|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.650|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.651|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.656|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.657|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.658|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.659|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.660|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.661|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.662|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.663|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.664|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.665|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.666|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.667|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.668|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.669|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.670|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.671|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.672|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.673|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.674|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.675|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.676|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.677|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.678|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.679|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.680|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.681|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.682|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.683|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.684|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.685|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.686|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.687|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.688|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.689|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.690|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.691|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.692|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.693|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.694|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.695|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.696|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.697|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.698|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.699|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.700|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.701|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.702|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.703|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.704|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.705|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.706|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.707|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.708|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.709|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.710|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.711|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.712|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.713|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.714|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.715|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.716|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.717|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.718|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.719|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.720|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.721|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.722|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.723|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.724|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.725|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.726|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.727|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.728|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.729|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.730|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.731|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.732|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.733|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.734|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.735|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.736|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.737|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.738|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.739|2|318 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.740|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.741|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.742|2|30 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.744|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.745|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.746|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.747|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.748|2|318 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.749|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.5.751|2|1 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.270|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.273|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.274|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.277|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.278|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.280|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.281|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.282|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.283|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.284|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.285|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.286|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.287|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.288|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.395|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.396|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.464|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.465|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.477|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.487|2|4 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.494|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.495|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.496|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.497|2|4 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.514|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.515|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.518|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.520|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.547|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.548|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.549|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.550|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.555|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.556|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.557|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.558|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.559|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.560|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.561|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.562|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.563|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.564|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.565|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.566|2|4 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.567|2|4 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.568|2|4 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.569|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.570|2|4 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.571|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.572|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.573|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.574|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.575|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.576|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.579|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.580|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.581|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.582|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.583|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.584|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.585|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.586|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.587|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.588|2|4 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.589|2|4 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.590|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.591|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.592|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.593|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.594|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.595|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.596|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.598|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.599|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.600|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.601|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.602|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.603|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.604|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.605|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.606|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.607|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.608|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.609|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.610|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.611|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.612|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.613|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.614|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.616|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.617|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.618|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.619|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.620|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.621|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.622|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.623|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.624|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.625|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.626|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.627|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.628|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.629|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.630|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.631|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.632|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.633|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.634|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.635|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.636|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.637|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.638|2|4 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.639|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.640|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.641|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.642|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.643|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.644|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.645|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.646|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.647|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.648|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.649|2|4 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.650|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.651|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.656|2|4 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.657|2|4 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.658|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.659|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.660|2|4 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.661|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.662|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.663|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.664|2|4 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.665|2|4 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.666|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.667|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.668|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.669|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.670|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.671|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.672|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.673|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.674|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.675|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.676|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.677|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.678|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.679|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.680|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.681|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.682|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.683|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.684|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.685|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.686|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.687|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.688|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.689|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.690|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.691|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.692|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.693|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.694|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.695|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.696|2|4 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.697|2|4 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.698|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.699|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.700|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.701|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.702|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.703|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.704|2|4 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.705|2|4 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.706|2|4 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.707|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.708|2|4 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.709|2|4 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.710|2|4 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.711|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.712|2|4 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.713|2|4 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.714|2|4 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.715|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.716|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.717|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.718|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.719|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.720|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.721|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.722|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.723|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.724|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.725|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.726|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.727|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.728|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.729|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.730|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.731|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.732|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.733|2|4 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.734|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.735|2|4 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.736|2|4 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.737|2|4 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.738|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.739|2|4 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.740|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.741|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.742|2|4 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.744|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.745|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.746|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.747|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.748|2|4 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.749|2|6 +1.3.6.1.4.1.9.9.46.1.6.1.1.16.751|2|6 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.270|2|0 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.273|2|30 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.274|2|0 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.277|2|0 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.278|2|0 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.280|2|0 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.281|2|0 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.282|2|0 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.283|2|0 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.284|2|0 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.285|2|0 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.286|2|0 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.287|2|0 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.288|2|30 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.395|2|30 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.396|2|0 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.464|2|0 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.465|2|0 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.477|2|0 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.494|2|0 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.495|2|0 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.496|2|30 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.514|2|0 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.515|2|30 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.518|2|0 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.520|2|0 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.548|2|1 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.549|2|1 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.555|2|30 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.556|2|467 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.557|2|310 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.558|2|310 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.559|2|310 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.560|2|310 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.561|2|30 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.562|2|454 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.563|2|30 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.564|2|30 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.565|2|310 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.569|2|30 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.571|2|310 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.572|2|30 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.573|2|454 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.574|2|30 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.575|2|99 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.576|2|30 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.579|2|391 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.580|2|30 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.581|2|30 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.582|2|99 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.583|2|310 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.584|2|30 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.585|2|30 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.586|2|310 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.587|2|310 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.590|2|99 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.591|2|99 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.592|2|454 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.593|2|30 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.594|2|30 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.595|2|310 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.596|2|30 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.598|2|1 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.599|2|30 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.600|2|310 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.601|2|448 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.602|2|901 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.603|2|310 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.604|2|30 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.605|2|454 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.606|2|454 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.607|2|454 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.608|2|454 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.609|2|30 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.610|2|30 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.611|2|901 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.612|2|30 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.613|2|30 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.614|2|30 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.616|2|30 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.617|2|30 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.618|2|310 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.619|2|30 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.620|2|30 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.621|2|454 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.622|2|310 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.623|2|454 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.624|2|390 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.625|2|454 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.626|2|310 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.627|2|310 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.628|2|911 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.629|2|310 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.630|2|902 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.631|2|40 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.632|2|310 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.635|2|30 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.636|2|30 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.637|2|203 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.639|2|911 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.640|2|911 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.641|2|310 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.642|2|912 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.643|2|30 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.644|2|30 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.645|2|463 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.646|2|463 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.647|2|463 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.648|2|70 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.650|2|30 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.658|2|454 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.659|2|310 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.661|2|1 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.662|2|310 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.663|2|310 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.666|2|310 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.667|2|310 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.668|2|901 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.669|2|310 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.670|2|30 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.671|2|203 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.672|2|30 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.673|2|454 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.674|2|30 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.675|2|454 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.676|2|203 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.677|2|912 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.678|2|911 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.679|2|30 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.680|2|30 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.681|2|454 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.682|2|454 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.683|2|30 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.684|2|902 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.685|2|912 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.686|2|310 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.687|2|310 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.688|2|310 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.689|2|310 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.690|2|310 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.691|2|310 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.692|2|310 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.693|2|310 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.694|2|901 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.695|2|30 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.698|2|454 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.699|2|454 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.700|2|454 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.701|2|454 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.702|2|454 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.703|2|454 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.707|2|310 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.711|2|911 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.715|2|454 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.716|2|30 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.717|2|310 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.718|2|310 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.719|2|310 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.720|2|30 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.721|2|310 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.722|2|30 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.723|2|310 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.724|2|30 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.725|2|310 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.726|2|30 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.727|2|912 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.728|2|1 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.729|2|310 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.730|2|310 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.731|2|991 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.732|2|990 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.734|2|606 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.738|2|454 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.740|2|99 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.741|2|99 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.744|2|454 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.745|2|310 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.746|2|454 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.747|2|454 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.749|2|29 +1.3.6.1.4.1.9.9.68.1.2.2.1.2.751|2|30 +1.3.6.1.4.1.9.9.711.1.1.1.1.2.1|4|20 +1.3.6.1.4.1.9.9.711.1.1.1.1.2.2|4|30 +1.3.6.1.4.1.9.9.711.1.1.1.1.2.3|4|40 +1.3.6.1.4.1.9.9.711.1.1.1.1.2.4|4|50 +1.3.6.1.4.1.9.9.711.1.1.1.1.2.5|4|CGN +1.3.6.1.4.1.9.9.711.1.1.1.1.2.6|4|CFI +1.3.6.1.4.1.9.9.711.1.1.1.1.2.7|4|Cne +1.3.6.1.4.1.9.9.711.1.1.1.1.2.8|4|CED +1.3.6.1.4.1.9.9.711.1.1.1.1.2.9|4|CID +1.3.6.1.4.1.9.9.711.1.1.1.1.2.10|4|Crt +1.3.6.1.4.1.9.9.711.1.1.1.1.2.11|4|CVA +1.3.6.1.4.1.9.9.711.1.1.1.1.2.12|4|CDL +1.3.6.1.4.1.9.9.711.1.1.1.1.2.13|4|Cte +1.3.6.1.4.1.9.9.711.1.1.1.1.2.14|4|CHC +1.3.6.1.4.1.9.9.711.1.1.1.1.2.15|4|CYV +1.3.6.1.4.1.9.9.711.1.1.1.1.2.16|4|CTM +1.3.6.1.4.1.9.9.711.1.1.1.1.2.17|4|CBE +1.3.6.1.4.1.9.9.711.1.1.1.1.2.18|4|PIC +1.3.6.1.4.1.9.9.711.1.1.1.1.2.19|4|O_Tit +1.3.6.1.4.1.9.9.711.1.1.1.1.2.20|4|CCO +1.3.6.1.4.1.9.9.711.1.1.1.1.2.21|4|CLF +1.3.6.1.4.1.9.9.711.1.1.1.1.2.22|4|O_EXT +1.3.6.1.4.1.9.9.711.1.1.1.1.2.23|4|O_INT +1.3.6.1.4.1.9.9.711.1.1.1.1.2.2047|4|__Platform_iVRF:_ID00_ +1.3.6.1.4.1.9.9.711.1.2.1.1.2.1.399|2|3 +1.3.6.1.4.1.9.9.711.1.2.1.1.2.2.398|2|3 +1.3.6.1.4.1.9.9.711.1.2.1.1.2.3.417|2|3 +1.3.6.1.4.1.9.9.711.1.2.1.1.2.4.418|2|3 +1.3.6.1.4.1.9.9.711.1.2.1.1.2.5.578|2|3 +1.3.6.1.4.1.9.9.711.1.2.1.1.2.5.834|2|3 +1.3.6.1.4.1.9.9.711.1.2.1.1.2.5.835|2|3 +1.3.6.1.4.1.9.9.711.1.2.1.1.2.5.836|2|3 +1.3.6.1.4.1.9.9.711.1.2.1.1.2.6.848|2|3 +1.3.6.1.4.1.9.9.711.1.2.1.1.2.6.849|2|3 +1.3.6.1.4.1.9.9.711.1.2.1.1.2.6.850|2|3 +1.3.6.1.4.1.9.9.711.1.2.1.1.2.7.506|2|3 +1.3.6.1.4.1.9.9.711.1.2.1.1.2.7.509|2|3 +1.3.6.1.4.1.9.9.711.1.2.1.1.2.7.577|2|3 +1.3.6.1.4.1.9.9.711.1.2.1.1.2.7.615|2|3 +1.3.6.1.4.1.9.9.711.1.2.1.1.2.8.774|2|3 +1.3.6.1.4.1.9.9.711.1.2.1.1.2.8.775|2|3 +1.3.6.1.4.1.9.9.711.1.2.1.1.2.8.776|2|3 +1.3.6.1.4.1.9.9.711.1.2.1.1.2.9.874|2|3 +1.3.6.1.4.1.9.9.711.1.2.1.1.2.9.875|2|3 +1.3.6.1.4.1.9.9.711.1.2.1.1.2.9.876|2|3 +1.3.6.1.4.1.9.9.711.1.2.1.1.2.9.877|2|3 +1.3.6.1.4.1.9.9.711.1.2.1.1.2.10.535|2|3 +1.3.6.1.4.1.9.9.711.1.2.1.1.2.10.536|2|3 +1.3.6.1.4.1.9.9.711.1.2.1.1.2.10.538|2|3 +1.3.6.1.4.1.9.9.711.1.2.1.1.2.10.750|2|3 +1.3.6.1.4.1.9.9.711.1.2.1.1.2.11.871|2|3 +1.3.6.1.4.1.9.9.711.1.2.1.1.2.11.872|2|3 +1.3.6.1.4.1.9.9.711.1.2.1.1.2.11.883|2|3 +1.3.6.1.4.1.9.9.711.1.2.1.1.2.11.885|2|3 +1.3.6.1.4.1.9.9.711.1.2.1.1.2.12.542|2|3 +1.3.6.1.4.1.9.9.711.1.2.1.1.2.12.543|2|3 +1.3.6.1.4.1.9.9.711.1.2.1.1.2.12.544|2|3 +1.3.6.1.4.1.9.9.711.1.2.1.1.2.13.814|2|3 +1.3.6.1.4.1.9.9.711.1.2.1.1.2.13.815|2|3 +1.3.6.1.4.1.9.9.711.1.2.1.1.2.14.804|2|3 +1.3.6.1.4.1.9.9.711.1.2.1.1.2.14.805|2|3 +1.3.6.1.4.1.9.9.711.1.2.1.1.2.14.806|2|3 +1.3.6.1.4.1.9.9.711.1.2.1.1.2.14.807|2|3 +1.3.6.1.4.1.9.9.711.1.2.1.1.2.15.810|2|3 +1.3.6.1.4.1.9.9.711.1.2.1.1.2.15.811|2|3 +1.3.6.1.4.1.9.9.711.1.2.1.1.2.16.792|2|3 +1.3.6.1.4.1.9.9.711.1.2.1.1.2.16.793|2|3 +1.3.6.1.4.1.9.9.711.1.2.1.1.2.16.794|2|3 +1.3.6.1.4.1.9.9.711.1.2.1.1.2.16.818|2|3 +1.3.6.1.4.1.9.9.711.1.2.1.1.2.17.801|2|3 +1.3.6.1.4.1.9.9.711.1.2.1.1.2.17.802|2|3 +1.3.6.1.4.1.9.9.711.1.2.1.1.2.17.803|2|3 +1.3.6.1.4.1.9.9.711.1.2.1.1.2.17.838|2|3 +1.3.6.1.4.1.9.9.711.1.2.1.1.2.17.854|2|3 +1.3.6.1.4.1.9.9.711.1.2.1.1.2.18.769|2|3 +1.3.6.1.4.1.9.9.711.1.2.1.1.2.18.770|2|3 +1.3.6.1.4.1.9.9.711.1.2.1.1.2.18.785|2|3 +1.3.6.1.4.1.9.9.711.1.2.1.1.2.19.907|2|3 +1.3.6.1.4.1.9.9.711.1.2.1.1.2.19.908|2|3 +1.3.6.1.4.1.9.9.711.1.2.1.1.2.19.909|2|3 +1.3.6.1.4.1.9.9.711.1.2.1.1.2.20.919|2|3 +1.3.6.1.4.1.9.9.711.1.2.1.1.2.20.920|2|3 +1.3.6.1.4.1.9.9.711.1.2.1.1.2.20.921|2|3 +1.3.6.1.4.1.9.9.711.1.2.1.1.2.21.925|2|3 +1.3.6.1.4.1.9.9.711.1.2.1.1.2.21.926|2|3 +1.3.6.1.4.1.9.9.711.1.2.1.1.2.21.927|2|3 +1.3.6.1.4.1.9.9.711.1.2.1.1.2.22.938|2|3 +1.3.6.1.4.1.9.9.711.1.2.1.1.2.22.940|2|3 +1.3.6.1.4.1.9.9.711.1.2.1.1.2.23.939|2|3 +1.3.6.1.4.1.9.9.711.1.2.1.1.2.23.941|2|3 +1.3.6.1.4.1.9.9.711.1.2.1.1.2.23.947|2|3 +1.3.6.1.4.1.9.9.711.1.2.1.1.2.23.948|2|3 +1.3.6.1.6.3.10.2.1.3.0|2|21064766