diff --git a/LibreNMS/Util/StringHelpers.php b/LibreNMS/Util/StringHelpers.php
index 27e94c85e2..ba273b3b55 100644
--- a/LibreNMS/Util/StringHelpers.php
+++ b/LibreNMS/Util/StringHelpers.php
@@ -69,6 +69,7 @@ class StringHelpers
'powerdns' => 'PowerDNS',
'powerdns-dnsdist' => 'PowerDNS dnsdist',
'powerdns-recursor' => 'PowerDNS Recursor',
+ 'powermon' => 'PowerMon',
'pureftpd' => 'PureFTPd',
'rrdcached' => 'RRDCached',
'sdfsinfo' => 'SDFS info',
diff --git a/doc/Extensions/Applications.md b/doc/Extensions/Applications.md
index 75c91c4cf5..93cd4f69f6 100644
--- a/doc/Extensions/Applications.md
+++ b/doc/Extensions/Applications.md
@@ -124,6 +124,7 @@ by following the steps under the `SNMP Extend` heading.
1. [PowerDNS](#powerdns) - Agent
1. [PowerDNS Recursor](#powerdns-recursor) - Direct, SNMP extend, Agent
1. [PowerDNS dnsdist](#powerdns-dnsdist) - SNMP extend
+1. [PowerMon](#powermon) - SNMP extend
1. [Proxmox](#proxmox) - SNMP extend
1. [Puppet Agent](#puppet_agent) - SNMP extend
1. [PureFTPd](#pureftpd) - SNMP extend
@@ -819,7 +820,7 @@ Verify it is working by running `/usr/lib/check_mk_agent/local/gpsd`
Shell script that reports load average/memory/open-files stats of Icecast
## SNMP Extend
-1. Copy the shell script, icecast-stats.sh, to the desired host (the host must be added to LibreNMS devices)
+1. Copy the shell script, icecast-stats.sh, to the desired host (the host must be added to LibreNMS devices)
```
wget https://github.com/librenms/librenms-agent/raw/master/snmp/icecast-stats.sh -O /etc/snmp/icecast-stats.sh
```
@@ -845,7 +846,7 @@ wget https://raw.githubusercontent.com/librenms/librenms-agent/master/snmp/mailc
2: Run `chmod +x /etc/snmp/mailcow-dockerized-postfix`
-> Maybe you will be neeed to install `pflogsumm` on debian based OS. Please check if you have package installed.
+> Maybe you will be neeed to install `pflogsumm` on debian based OS. Please check if you have package installed.
3: Edit your snmpd.conf file (usually /etc/snmp/snmpd.conf) and add:
@@ -1531,6 +1532,151 @@ The application should be auto-discovered as described at the top of
the page. If it is not, please follow the steps set out under `SNMP
Extend` heading top of page.
+# PowerMon
+
+PowerMon tracks the power usage on your host and can report on both consumption
+and cost, using a python script installed on the host.
+
+[PowerMon consumption graph](../img/example-app-powermon-consumption-02.png)
+
+Currently the script uses one of two methods to determine current power usage:
+
+* ACPI via libsensors
+
+* HP-Health (HP Proliant servers only)
+
+The ACPI method is quite unreliable as it is usually only implemented by
+battery-powered devices, e.g. laptops. YMMV. However, it's possible to support
+any method as long as it can return a power value, usually in Watts.
+
+> TIP: You can achieve this by adding a method and a function for that method to
+> the script. It should be called by getData() and return a dictionary.
+
+Because the methods are unreliable for all hardware, you need to declare to the
+script which method to use. The are several options to assist with testing, see
+`--help`.
+
+## SNMP Extend
+
+### Initial setup
+
+1. Download the python script onto the host:
+```
+wget https://raw.githubusercontent.com/librenms/librenms-agent/master/snmp/powermon-snmp.py -O /usr/local/bin/powermon-snmp.py
+```
+
+2. Make the script executable:
+```
+chmod +x /usr/local/bin/powermon-snmp.py
+```
+
+3. Edit the script and set the cost per kWh for your supply. You must uncomment
+this line for the script to work:
+```
+vi /usr/local/bin/powermon-snmp.py
+#costPerkWh = 0.15
+```
+
+4. Choose you method below:
+
+ === "Method 1: sensors"
+
+ * Install dependencies:
+ ```
+ dnf install lm_sensors
+ pip install PySensors
+ ```
+
+ * Test the script from the command-line. For example:
+ ```
+ $ /usr/local/bin/powermon-snmp.py -m sensors -n -p
+ {
+ "meter": {
+ "0": {
+ "reading": 0.0
+ }
+ },
+ "psu": {},
+ "supply": {
+ "rate": 0.15
+ },
+ "reading": "0.0"
+ }
+ ```
+
+ If you see a reading of `0.0` it is likely this method is not supported for
+ your system. If not, continue.
+
+ === "Method 2: hpasmcli"
+
+ * Obtain the hp-health package for your system. Generally there are
+ three options:
+ * Standalone package from [HPE Support](https://support.hpe.com/hpsc/swd/public/detail?swItemId=MTX-c0104db95f574ae6be873e2064#tab2)
+ * From the HP Management Component Pack (MCP).
+ * Included in the [HP Service Pack for Proliant (SPP)](https://support.hpe.com/hpesc/public/docDisplay?docId=emr_na-a00026884en_us)
+
+ * If you've downloaded the standalone package, install it. For example:
+ ```
+ rpm -ivh hp-health-10.91-1878.11.rhel8.x86_64.rpm
+ ```
+
+ * Check the service is running:
+ ```
+ systemctl status hp-health
+ ```
+
+ * Test the script from the command-line. For example:
+ ```
+ $ /usr/local/bin/powermon-snmp.py -m hpasmcli -n -p
+ {
+ "meter": {
+ "1": {
+ "reading": 338.0
+ }
+ },
+ "psu": {
+ "1": {
+ "present": "Yes",
+ "redundant": "No",
+ "condition": "Ok",
+ "hotplug": "Supported",
+ "reading": 315.0
+ },
+ "2": {
+ "present": "Yes",
+ "redundant": "No",
+ "condition": "FAILED",
+ "hotplug": "Supported"
+ }
+ },
+ "supply": {
+ "rate": 0.224931
+ },
+ "reading": 338.0
+ }
+ ```
+
+ If you see a reading of `0.0` it is likely this method is not supported for
+ your system. If not, continue.
+
+ ### Finishing Up
+
+5. Edit your snmpd.conf file (usually `/etc/snmp/snmpd.conf`) and add the following:
+```
+extend powermon /usr/local/bin/powermon-snmp.py -m hpasmcli
+```
+
+ > NOTE: Avoid using other script options in the snmpd config as the results may not be
+ > interpreted correctly by LibreNMS.
+
+6. Reload your snmpd service:
+```
+systemctl reload snmpd
+```
+
+7. You're now ready to enable the application in LibreNMS.
+
+
# Proxmox
1: For Proxmox 4.4+ install the libpve-apiclient-perl package `apt
diff --git a/doc/img/example-app-powermon-consumption-02.png b/doc/img/example-app-powermon-consumption-02.png
new file mode 100755
index 0000000000..a6c1c0877c
Binary files /dev/null and b/doc/img/example-app-powermon-consumption-02.png differ
diff --git a/includes/html/graphs/application/powermon_consumption.inc.php b/includes/html/graphs/application/powermon_consumption.inc.php
new file mode 100644
index 0000000000..84cadeefb6
--- /dev/null
+++ b/includes/html/graphs/application/powermon_consumption.inc.php
@@ -0,0 +1,176 @@
+
+
+LICENSE - GPLv3
+
+This program is free software; you can redistribute it and/or
+modify it under the terms of the GNU General Public License
+version 3. See https://www.gnu.org/licenses/gpl-3.0.txt
+
+DESCRIPTION
+
+Displays the crrent watts being consumed by a host and uses that data series
+to estimate total power consumption in kWh over the graph. Finally, displays
+the cost of the kWh consumed based on the cost defined below.
+
+Watts (power) is an instantaneous value. Hence this graph will be more accurate
+when these is a fairly consistent load on the server between polling cycles.
+
+Watts is easily converted to kilowatt hours which most electricity providers
+will charge in terms of. The graph will display the total kWh hours consumed at
+the bottom. You can update the default cost_per_kWh below and currency symbol
+below under LOCAL OPTIONS
+
+*/
+
+$name = 'powermon';
+$app_id = $app['app_id'];
+
+$rrd_filename = rrd_name($device['hostname'], ['app', $name, $app_id]);
+
+$ds_list[0]['vname'] = 'watts';
+$ds_list[0]['ds'] = 'watts-gauge';
+$ds_list[0]['filename'] = $rrd_filename;
+$ds_list[0]['descr'] = 'Average Power';
+$ds_list[0]['units_text'] = ' W';
+$ds_list[0]['colour'] = 'FF6600'; // orange
+$ds_list[0]['colour'] = 'F9F900'; // yellow
+$ds_list[0]['areacolour'] = 'FAFAB2'; // yellow
+
+$ds_list[1]['vname'] = 'rate';
+$ds_list[1]['ds'] = 'rate';
+$ds_list[1]['filename'] = $rrd_filename;
+$ds_list[1]['descr'] = ' Total Cost';
+$ds_list[1]['units_text'] = '$';
+$ds_list[1]['colour'] = '006600'; // money green
+
+if ($_GET['debug']) {
+ print_r($ds_list);
+}
+
+// COMMON OPTIONS
+
+//$from = ;
+//$to = ;
+//$width = 200;
+//$height = 100;
+//$inverse = false;
+//$nototal = true;
+//$nodetails = false;
+//$noagg = true;
+//$title = '';
+$scale_min = 0;
+//$scale_max = 0;
+//$scale_rigid = anything;
+//$norigid = false;
+$float_precision = 0;
+
+// LOCAL OPTIONS
+
+$line_width = 2.5;
+$pad_to = 18; // padding for left-hand column in legend
+$currency_symbol = '$'; // update this if required
+
+require 'includes/html/graphs/common.inc.php';
+
+//if ($nototal) {
+// $pad_to += '2';
+//}
+
+$rrd_options .= ' COMMENT:\s'; // spacer in legend
+
+$i = 0;
+foreach ($ds_list as $ds_item) {
+ $vname = $ds_item['vname'];
+ $ds = $ds_item['ds'];
+ $filename = $ds_item['filename'];
+ $descr = rrdtool_escape($ds_item['descr'], $pad_to);
+
+ // CF to use
+ $use_cf_last = ['nothing', 'nothing'];
+
+ if (in_array($vname, $use_cf_last)) {
+ $cf = 'LAST';
+ } else {
+ $cf = 'AVERAGE';
+ }
+
+ $rrd_options .= ' DEF:' . "$vname=$filename:$ds:" . $cf;
+
+ // Units
+ if (isset($ds_item['units_text'])) {
+ $units_text = $ds_item['units_text'];
+ } else {
+ $units_text = '';
+ }
+
+ // Line Width
+ if (isset($ds_item['line_width'])) {
+ $ds_line_width = $ds_item['line_width'];
+ } else {
+ $ds_line_wdith = $line_width;
+ }
+
+ // Line Colour
+ if (isset($ds_item['colour'])) {
+ $colour = $ds_item['colour'];
+ } else {
+ if (! \LibreNMS\Config::get("graph_colours.$colours.$i")) {
+ $i = 0;
+ }
+ $colour = \LibreNMS\Config::get("graph_colours.$colours.$i");
+ $i++;
+ }
+
+ // Area Colour
+ if (isset($ds_item['areacolour'])) {
+ $areacolour = $ds_item['areacolour'];
+ } else {
+ $areacolour = $colour . '20';
+ }
+
+ // Graph command
+
+ if ($vname == 'watts') {
+ $rrd_options .= ' AREA:' . $vname . '#' . $areacolour;
+ $rrd_options .= " LINE{$ds_line_width}:{$vname}#{$colour}:'{$descr}'";
+ $rrd_options .= " GPRINT:{$vname}:AVERAGE:%12.{$float_precision}lf'{$units_text}'\l";
+
+ $rrd_options .= ' COMMENT:\s'; // spacer in legend
+ /*
+ // Watt Seconds
+ $descr = ' Total Consumed';
+ $units_text = ' Ws';
+ $descr = rrdtool_escape($descr, $pad_to + 2);
+ $rrd_options .= " COMMENT:'{$descr}'";
+ $rrd_options .= ' VDEF:wattsecs=watts,TOTAL';
+ $rrd_options .= " GPRINT:wattsecs:%12.{$float_precision}lf'{$units_text}'\l";
+ */
+ // Kilowatt Hours
+ $units_text = ' kWh';
+ $float_precision = 2;
+ $descr = ' Total Consumed';
+ $descr = rrdtool_escape($descr, $pad_to + 2);
+ $rrd_options .= " COMMENT:'{$descr}'";
+ $rrd_options .= ' CDEF:series_a=watts,3600000,/';
+ $rrd_options .= ' VDEF:kilowatthours=series_a,TOTAL';
+ $rrd_options .= " GPRINT:kilowatthours:%12.{$float_precision}lf'{$units_text}'\l";
+ } elseif ($vname == 'rate') {
+ // Consumption Charge
+ $float_precision = 2;
+ $descr = rrdtool_escape($descr, $pad_to + 7);
+ $rrd_options .= " COMMENT:'{$descr}{$currency_symbol}'";
+ $rrd_options .= " CDEF:series_b=watts,{$vname},*,3600000,/";
+ $rrd_options .= ' VDEF:total_cost=series_b,TOTAL';
+ $rrd_options .= " GPRINT:total_cost:%6.{$float_precision}lf' @ average rate of'";
+ $rrd_options .= ' VDEF:average_rate=rate,AVERAGE';
+ $rrd_options .= " GPRINT:average_rate:%0.6lf' per kWh\l'";
+ }
+}
diff --git a/includes/html/pages/apps.inc.php b/includes/html/pages/apps.inc.php
index fe471ecf8a..fce9013a99 100644
--- a/includes/html/pages/apps.inc.php
+++ b/includes/html/pages/apps.inc.php
@@ -58,6 +58,9 @@ $graphs['powerdns-recursor'] = [
'cache_performance',
'outqueries',
];
+$graphs['powermon'] = [
+ 'consumption',
+];
$graphs['pureftpd'] = [
'bitrate',
'connections',
diff --git a/includes/html/pages/device/apps/powermon.inc.php b/includes/html/pages/device/apps/powermon.inc.php
new file mode 100644
index 0000000000..6edae2b56b
--- /dev/null
+++ b/includes/html/pages/device/apps/powermon.inc.php
@@ -0,0 +1,41 @@
+
+
+LICENSE - GPLv3
+
+This program is free software; you can redistribute it and/or
+modify it under the terms of the GNU General Public License
+version 3. See https://www.gnu.org/licenses/gpl-3.0.txt
+
+*/
+
+$graphs = [
+ 'powermon_consumption' => 'PowerMon - Consumption',
+];
+
+foreach ($graphs as $key => $text) {
+ $graph_type = $key;
+ $graph_array['height'] = '100';
+ $graph_array['width'] = '215';
+ $graph_array['to'] = \LibreNMS\Config::get('time.now');
+ $graph_array['id'] = $app['app_id'];
+ $graph_array['type'] = 'application_' . $key;
+
+ echo '
+
+
' . $text . '
+
+
+
';
+ include 'includes/html/print-graphrow.inc.php';
+ echo '
';
+ echo '
';
+ echo '
';
+}
diff --git a/includes/polling/applications/powermon.inc.php b/includes/polling/applications/powermon.inc.php
new file mode 100644
index 0000000000..7f41de7a91
--- /dev/null
+++ b/includes/polling/applications/powermon.inc.php
@@ -0,0 +1,61 @@
+
+
+LICENSE - GPLv3
+
+This program is free software; you can redistribute it and/or
+modify it under the terms of the GNU General Public License
+version 3. See https://www.gnu.org/licenses/gpl-3.0.txt
+
+*/
+
+use LibreNMS\Exceptions\JsonAppException;
+use LibreNMS\RRD\RrdDefinition;
+
+$name = 'powermon';
+$app_id = $app['app_id'];
+
+echo $name;
+
+try {
+ $result = json_app_get($device, $name);
+} catch (JsonAppException $e) {
+ echo PHP_EOL . $name . ':' . $e->getCode() . ':' . $e->getMessage() . PHP_EOL;
+ update_application($app, $e->getCode() . ':' . $e->getMessage(), []);
+ // Set empty metrics and error message
+ log_event('application ' . $name . ' caught JsonAppException');
+
+ return;
+}
+// should be doing something with error codes/messages returned in the snmp
+// result or will they be caught above?
+
+$rrd_name = ['app', $name, $app_id];
+$rrd_def = RrdDefinition::make()
+ ->addDataset('watts-gauge', 'GAUGE', 0)
+ ->addDataset('watts-abs', 'ABSOLUTE', 0)
+ ->addDataset('rate', 'GAUGE', 0);
+
+$fields = [
+ 'watts-gauge' => $result['data']['reading'],
+ 'watts-abs' => $result['data']['reading'],
+ 'rate' => $result['data']['supply']['rate'],
+];
+
+/*
+log_event(
+ "watts-gauage: " . $result['data']['reading']
+ . ", watts-abs: " . $result['data']['reading']
+);
+ */
+
+$tags = compact('name', 'app_id', 'rrd_name', 'rrd_def');
+data_update($device, 'app', $tags, $fields);
+update_application($app, 'OK', $fields);
diff --git a/tests/data/linux_powermon.json b/tests/data/linux_powermon.json
new file mode 100644
index 0000000000..17acd117f1
--- /dev/null
+++ b/tests/data/linux_powermon.json
@@ -0,0 +1,49 @@
+{
+ "applications": {
+ "discovery": {
+ "applications": [
+ {
+ "app_type": "powermon",
+ "app_state": "UNKNOWN",
+ "discovered": 1,
+ "app_state_prev": null,
+ "app_status": "",
+ "app_instance": ""
+ }
+ ],
+ "application_metrics": []
+ },
+ "poller": {
+ "applications": [
+ {
+ "app_type": "powermon",
+ "app_state": "OK",
+ "discovered": 1,
+ "app_state_prev": "UNKNOWN",
+ "app_status": "",
+ "app_instance": ""
+ }
+ ],
+ "application_metrics": [
+ {
+ "metric": "rate",
+ "value": 0.224931,
+ "value_prev": null,
+ "app_type": "powermon"
+ },
+ {
+ "metric": "watts-abs",
+ "value": 340,
+ "value_prev": null,
+ "app_type": "powermon"
+ },
+ {
+ "metric": "watts-gauge",
+ "value": 340,
+ "value_prev": null,
+ "app_type": "powermon"
+ }
+ ]
+ }
+ }
+}
diff --git a/tests/snmpsim/linux_powermon.snmprec b/tests/snmpsim/linux_powermon.snmprec
new file mode 100644
index 0000000000..8314775d11
--- /dev/null
+++ b/tests/snmpsim/linux_powermon.snmprec
@@ -0,0 +1,1527 @@
+1.3.6.1.2.1.1.1.0|4|Linux some.host.com 4.18.0-259.el8.x86_64 #1 SMP Mon Dec 21 21:05:36 UTC 2020 x86_64
+1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.8072.3.2.10
+1.3.6.1.2.1.1.3.0|67|43303292
+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.1|4|lo
+1.3.6.1.2.1.2.2.1.2.2|4|enp2s0f0
+1.3.6.1.2.1.2.2.1.2.3|4|enp2s0f1
+1.3.6.1.2.1.2.2.1.2.4|4|enp3s0f0
+1.3.6.1.2.1.2.2.1.2.5|4|enp3s0f1
+1.3.6.1.2.1.2.2.1.3.1|2|24
+1.3.6.1.2.1.2.2.1.3.2|2|6
+1.3.6.1.2.1.2.2.1.3.3|2|6
+1.3.6.1.2.1.2.2.1.3.4|2|6
+1.3.6.1.2.1.2.2.1.3.5|2|6
+1.3.6.1.2.1.2.2.1.4.1|2|65536
+1.3.6.1.2.1.2.2.1.4.2|2|1500
+1.3.6.1.2.1.2.2.1.4.3|2|1500
+1.3.6.1.2.1.2.2.1.4.4|2|1500
+1.3.6.1.2.1.2.2.1.4.5|2|1500
+1.3.6.1.2.1.2.2.1.6.1|4|
+1.3.6.1.2.1.2.2.1.6.2|4x|984BE1051DA4
+1.3.6.1.2.1.2.2.1.6.3|4x|984BE1051DA6
+1.3.6.1.2.1.2.2.1.6.4|4x|984BE1051DA8
+1.3.6.1.2.1.2.2.1.6.5|4x|984BE1051DAA
+1.3.6.1.2.1.2.2.1.7.1|2|1
+1.3.6.1.2.1.2.2.1.7.2|2|1
+1.3.6.1.2.1.2.2.1.7.3|2|1
+1.3.6.1.2.1.2.2.1.7.4|2|1
+1.3.6.1.2.1.2.2.1.7.5|2|1
+1.3.6.1.2.1.2.2.1.8.1|2|1
+1.3.6.1.2.1.2.2.1.8.2|2|1
+1.3.6.1.2.1.2.2.1.8.3|2|2
+1.3.6.1.2.1.2.2.1.8.4|2|2
+1.3.6.1.2.1.2.2.1.8.5|2|2
+1.3.6.1.2.1.2.2.1.9.1|67|0
+1.3.6.1.2.1.2.2.1.9.2|67|0
+1.3.6.1.2.1.2.2.1.9.3|67|0
+1.3.6.1.2.1.2.2.1.9.4|67|0
+1.3.6.1.2.1.2.2.1.9.5|67|0
+1.3.6.1.2.1.2.2.1.13.1|65|0
+1.3.6.1.2.1.2.2.1.13.2|65|44
+1.3.6.1.2.1.2.2.1.13.3|65|0
+1.3.6.1.2.1.2.2.1.13.4|65|0
+1.3.6.1.2.1.2.2.1.13.5|65|0
+1.3.6.1.2.1.2.2.1.14.1|65|0
+1.3.6.1.2.1.2.2.1.14.2|65|0
+1.3.6.1.2.1.2.2.1.14.3|65|0
+1.3.6.1.2.1.2.2.1.14.4|65|0
+1.3.6.1.2.1.2.2.1.14.5|65|0
+1.3.6.1.2.1.2.2.1.19.1|65|0
+1.3.6.1.2.1.2.2.1.19.2|65|0
+1.3.6.1.2.1.2.2.1.19.3|65|0
+1.3.6.1.2.1.2.2.1.19.4|65|0
+1.3.6.1.2.1.2.2.1.19.5|65|0
+1.3.6.1.2.1.2.2.1.20.1|65|0
+1.3.6.1.2.1.2.2.1.20.2|65|0
+1.3.6.1.2.1.2.2.1.20.3|65|0
+1.3.6.1.2.1.2.2.1.20.4|65|0
+1.3.6.1.2.1.2.2.1.20.5|65|0
+1.3.6.1.2.1.4.3.0|65|4250908
+1.3.6.1.2.1.4.4.0|65|0
+1.3.6.1.2.1.4.5.0|65|0
+1.3.6.1.2.1.4.6.0|65|0
+1.3.6.1.2.1.4.7.0|65|0
+1.3.6.1.2.1.4.8.0|65|0
+1.3.6.1.2.1.4.9.0|65|4229353
+1.3.6.1.2.1.4.10.0|65|3317064
+1.3.6.1.2.1.4.11.0|65|2
+1.3.6.1.2.1.4.12.0|65|60
+1.3.6.1.2.1.4.14.0|65|156
+1.3.6.1.2.1.4.15.0|65|78
+1.3.6.1.2.1.4.16.0|65|0
+1.3.6.1.2.1.4.17.0|65|3758
+1.3.6.1.2.1.4.18.0|65|0
+1.3.6.1.2.1.4.19.0|65|7690
+1.3.6.1.2.1.4.20.1.2.10.0.44.5|2|2
+1.3.6.1.2.1.4.20.1.2.127.0.0.1|2|1
+1.3.6.1.2.1.4.20.1.3.10.0.44.5|64|255.255.255.0
+1.3.6.1.2.1.4.20.1.3.127.0.0.1|64|255.0.0.0
+1.3.6.1.2.1.4.22.1.2.2.10.0.44.1|4x|00005E000142
+1.3.6.1.2.1.4.22.1.2.2.10.0.44.2|4x|525400C39068
+1.3.6.1.2.1.4.22.1.2.2.10.0.44.3|4x|0008A20C9692
+1.3.6.1.2.1.4.22.1.2.2.10.0.44.4|4x|5254005DBE81
+1.3.6.1.2.1.4.22.1.2.2.10.0.44.7|4x|78E7D192723A
+1.3.6.1.2.1.4.22.1.2.2.10.0.44.13|4x|525400448365
+1.3.6.1.2.1.4.31.1.1.3.1|65|4251008
+1.3.6.1.2.1.4.31.1.1.3.2|65|0
+1.3.6.1.2.1.4.31.1.1.4.1|70|4251008
+1.3.6.1.2.1.4.31.1.1.4.2|70|0
+1.3.6.1.2.1.4.31.1.1.5.1|65|4077929107
+1.3.6.1.2.1.4.31.1.1.5.2|65|0
+1.3.6.1.2.1.4.31.1.1.6.1|70|8372896403
+1.3.6.1.2.1.4.31.1.1.6.2|70|0
+1.3.6.1.2.1.4.31.1.1.7.1|65|0
+1.3.6.1.2.1.4.31.1.1.7.2|65|0
+1.3.6.1.2.1.4.31.1.1.8.1|65|0
+1.3.6.1.2.1.4.31.1.1.8.2|65|0
+1.3.6.1.2.1.4.31.1.1.9.1|65|0
+1.3.6.1.2.1.4.31.1.1.9.2|65|0
+1.3.6.1.2.1.4.31.1.1.10.1|65|0
+1.3.6.1.2.1.4.31.1.1.10.2|65|0
+1.3.6.1.2.1.4.31.1.1.11.1|65|0
+1.3.6.1.2.1.4.31.1.1.11.2|65|0
+1.3.6.1.2.1.4.31.1.1.12.1|65|0
+1.3.6.1.2.1.4.31.1.1.12.2|65|0
+1.3.6.1.2.1.4.31.1.1.13.1|70|0
+1.3.6.1.2.1.4.31.1.1.13.2|70|0
+1.3.6.1.2.1.4.31.1.1.14.1|65|156
+1.3.6.1.2.1.4.31.1.1.14.2|65|0
+1.3.6.1.2.1.4.31.1.1.15.1|65|78
+1.3.6.1.2.1.4.31.1.1.15.2|65|0
+1.3.6.1.2.1.4.31.1.1.16.1|65|0
+1.3.6.1.2.1.4.31.1.1.16.2|65|0
+1.3.6.1.2.1.4.31.1.1.17.1|65|0
+1.3.6.1.2.1.4.31.1.1.17.2|65|0
+1.3.6.1.2.1.4.31.1.1.18.1|65|4229453
+1.3.6.1.2.1.4.31.1.1.18.2|65|0
+1.3.6.1.2.1.4.31.1.1.19.1|70|4229453
+1.3.6.1.2.1.4.31.1.1.19.2|70|0
+1.3.6.1.2.1.4.31.1.1.20.1|65|3317165
+1.3.6.1.2.1.4.31.1.1.20.2|65|0
+1.3.6.1.2.1.4.31.1.1.21.1|70|3317165
+1.3.6.1.2.1.4.31.1.1.21.2|70|0
+1.3.6.1.2.1.4.31.1.1.22.1|65|60
+1.3.6.1.2.1.4.31.1.1.22.2|65|0
+1.3.6.1.2.1.4.31.1.1.23.1|65|0
+1.3.6.1.2.1.4.31.1.1.23.2|65|0
+1.3.6.1.2.1.4.31.1.1.24.1|70|0
+1.3.6.1.2.1.4.31.1.1.24.2|70|0
+1.3.6.1.2.1.4.31.1.1.25.1|65|2
+1.3.6.1.2.1.4.31.1.1.25.2|65|0
+1.3.6.1.2.1.4.31.1.1.26.1|65|3759
+1.3.6.1.2.1.4.31.1.1.26.2|65|0
+1.3.6.1.2.1.4.31.1.1.27.1|65|3759
+1.3.6.1.2.1.4.31.1.1.27.2|65|0
+1.3.6.1.2.1.4.31.1.1.28.1|65|0
+1.3.6.1.2.1.4.31.1.1.28.2|65|0
+1.3.6.1.2.1.4.31.1.1.29.1|65|7694
+1.3.6.1.2.1.4.31.1.1.29.2|65|0
+1.3.6.1.2.1.4.31.1.1.30.1|65|3321038
+1.3.6.1.2.1.4.31.1.1.30.2|65|0
+1.3.6.1.2.1.4.31.1.1.31.1|70|3321038
+1.3.6.1.2.1.4.31.1.1.31.2|70|0
+1.3.6.1.2.1.4.31.1.1.32.1|65|1752314092
+1.3.6.1.2.1.4.31.1.1.32.2|65|0
+1.3.6.1.2.1.4.31.1.1.33.1|70|1752314092
+1.3.6.1.2.1.4.31.1.1.33.2|70|0
+1.3.6.1.2.1.4.31.1.1.34.1|65|13630
+1.3.6.1.2.1.4.31.1.1.34.2|65|0
+1.3.6.1.2.1.4.31.1.1.35.1|70|13630
+1.3.6.1.2.1.4.31.1.1.35.2|70|0
+1.3.6.1.2.1.4.31.1.1.36.1|65|436160
+1.3.6.1.2.1.4.31.1.1.36.2|65|0
+1.3.6.1.2.1.4.31.1.1.37.1|70|436160
+1.3.6.1.2.1.4.31.1.1.37.2|70|0
+1.3.6.1.2.1.4.31.1.1.38.1|65|0
+1.3.6.1.2.1.4.31.1.1.38.2|65|0
+1.3.6.1.2.1.4.31.1.1.39.1|70|0
+1.3.6.1.2.1.4.31.1.1.39.2|70|0
+1.3.6.1.2.1.4.31.1.1.40.1|65|0
+1.3.6.1.2.1.4.31.1.1.40.2|65|0
+1.3.6.1.2.1.4.31.1.1.41.1|70|0
+1.3.6.1.2.1.4.31.1.1.41.2|70|0
+1.3.6.1.2.1.4.31.1.1.42.1|65|0
+1.3.6.1.2.1.4.31.1.1.43.1|70|0
+1.3.6.1.2.1.4.31.1.1.44.1|65|0
+1.3.6.1.2.1.4.31.1.1.45.1|70|0
+1.3.6.1.2.1.4.31.1.1.46.1|67|0
+1.3.6.1.2.1.4.31.1.1.46.2|67|0
+1.3.6.1.2.1.4.31.1.1.47.1|66|60000
+1.3.6.1.2.1.4.31.1.1.47.2|66|60000
+1.3.6.1.2.1.4.35.1.4.2.1.4.10.0.44.1|4x|00005E000142
+1.3.6.1.2.1.4.35.1.4.2.1.4.10.0.44.2|4x|525400C39068
+1.3.6.1.2.1.4.35.1.4.2.1.4.10.0.44.3|4x|0008A20C9692
+1.3.6.1.2.1.4.35.1.4.2.1.4.10.0.44.4|4x|5254005DBE81
+1.3.6.1.2.1.4.35.1.4.2.1.4.10.0.44.7|4x|78E7D192723A
+1.3.6.1.2.1.4.35.1.4.2.1.4.10.0.44.13|4x|525400448365
+1.3.6.1.2.1.5.1.0|65|19235
+1.3.6.1.2.1.5.2.0|65|109
+1.3.6.1.2.1.5.3.0|65|202
+1.3.6.1.2.1.5.4.0|65|0
+1.3.6.1.2.1.5.5.0|65|0
+1.3.6.1.2.1.5.6.0|65|0
+1.3.6.1.2.1.5.7.0|65|0
+1.3.6.1.2.1.5.8.0|65|19030
+1.3.6.1.2.1.5.9.0|65|0
+1.3.6.1.2.1.5.10.0|65|0
+1.3.6.1.2.1.5.11.0|65|0
+1.3.6.1.2.1.5.12.0|65|0
+1.3.6.1.2.1.5.13.0|65|0
+1.3.6.1.2.1.5.14.0|65|26817
+1.3.6.1.2.1.5.15.0|65|0
+1.3.6.1.2.1.5.16.0|65|7787
+1.3.6.1.2.1.5.17.0|65|0
+1.3.6.1.2.1.5.18.0|65|0
+1.3.6.1.2.1.5.19.0|65|0
+1.3.6.1.2.1.5.20.0|65|0
+1.3.6.1.2.1.5.21.0|65|0
+1.3.6.1.2.1.5.22.0|65|19030
+1.3.6.1.2.1.5.23.0|65|0
+1.3.6.1.2.1.5.24.0|65|0
+1.3.6.1.2.1.5.25.0|65|0
+1.3.6.1.2.1.5.26.0|65|0
+1.3.6.1.2.1.5.29.1.2.1|65|19235
+1.3.6.1.2.1.5.29.1.2.2|65|0
+1.3.6.1.2.1.5.29.1.3.1|65|109
+1.3.6.1.2.1.5.29.1.3.2|65|0
+1.3.6.1.2.1.5.29.1.4.1|65|26817
+1.3.6.1.2.1.5.29.1.4.2|65|0
+1.3.6.1.2.1.5.29.1.5.1|65|0
+1.3.6.1.2.1.5.29.1.5.2|65|0
+1.3.6.1.2.1.5.30.1.3.1.0|65|0
+1.3.6.1.2.1.5.30.1.3.1.3|65|202
+1.3.6.1.2.1.5.30.1.3.1.4|65|0
+1.3.6.1.2.1.5.30.1.3.1.5|65|0
+1.3.6.1.2.1.5.30.1.3.1.8|65|19030
+1.3.6.1.2.1.5.30.1.3.1.11|65|0
+1.3.6.1.2.1.5.30.1.3.1.12|65|0
+1.3.6.1.2.1.5.30.1.3.1.13|65|0
+1.3.6.1.2.1.5.30.1.3.1.14|65|0
+1.3.6.1.2.1.5.30.1.3.1.17|65|0
+1.3.6.1.2.1.5.30.1.3.1.18|65|0
+1.3.6.1.2.1.5.30.1.3.2.1|65|0
+1.3.6.1.2.1.5.30.1.3.2.2|65|0
+1.3.6.1.2.1.5.30.1.3.2.3|65|0
+1.3.6.1.2.1.5.30.1.3.2.4|65|0
+1.3.6.1.2.1.5.30.1.3.2.128|65|0
+1.3.6.1.2.1.5.30.1.3.2.129|65|0
+1.3.6.1.2.1.5.30.1.3.2.130|65|0
+1.3.6.1.2.1.5.30.1.3.2.131|65|0
+1.3.6.1.2.1.5.30.1.3.2.132|65|0
+1.3.6.1.2.1.5.30.1.3.2.133|65|0
+1.3.6.1.2.1.5.30.1.3.2.134|65|0
+1.3.6.1.2.1.5.30.1.3.2.135|65|0
+1.3.6.1.2.1.5.30.1.3.2.136|65|0
+1.3.6.1.2.1.5.30.1.3.2.137|65|0
+1.3.6.1.2.1.5.30.1.4.1.0|65|19030
+1.3.6.1.2.1.5.30.1.4.1.3|65|7787
+1.3.6.1.2.1.5.30.1.4.1.4|65|0
+1.3.6.1.2.1.5.30.1.4.1.5|65|0
+1.3.6.1.2.1.5.30.1.4.1.8|65|0
+1.3.6.1.2.1.5.30.1.4.1.11|65|0
+1.3.6.1.2.1.5.30.1.4.1.12|65|0
+1.3.6.1.2.1.5.30.1.4.1.13|65|0
+1.3.6.1.2.1.5.30.1.4.1.14|65|0
+1.3.6.1.2.1.5.30.1.4.1.17|65|0
+1.3.6.1.2.1.5.30.1.4.1.18|65|0
+1.3.6.1.2.1.5.30.1.4.2.1|65|0
+1.3.6.1.2.1.5.30.1.4.2.2|65|0
+1.3.6.1.2.1.5.30.1.4.2.3|65|0
+1.3.6.1.2.1.5.30.1.4.2.4|65|0
+1.3.6.1.2.1.5.30.1.4.2.128|65|0
+1.3.6.1.2.1.5.30.1.4.2.129|65|0
+1.3.6.1.2.1.5.30.1.4.2.131|65|0
+1.3.6.1.2.1.5.30.1.4.2.132|65|0
+1.3.6.1.2.1.5.30.1.4.2.133|65|0
+1.3.6.1.2.1.5.30.1.4.2.135|65|0
+1.3.6.1.2.1.5.30.1.4.2.136|65|0
+1.3.6.1.2.1.5.30.1.4.2.137|65|0
+1.3.6.1.2.1.6.5.0|65|9794
+1.3.6.1.2.1.6.6.0|65|118286
+1.3.6.1.2.1.6.7.0|65|602
+1.3.6.1.2.1.6.8.0|65|64
+1.3.6.1.2.1.6.9.0|66|2
+1.3.6.1.2.1.6.10.0|65|3632416
+1.3.6.1.2.1.6.11.0|65|3268701
+1.3.6.1.2.1.6.12.0|65|13293
+1.3.6.1.2.1.6.14.0|65|138
+1.3.6.1.2.1.6.15.0|65|2864
+1.3.6.1.2.1.6.19.1.7.1.4.10.0.44.5.22.1.4.10.1.22.4.53565|2|5
+1.3.6.1.2.1.7.1.0|65|577442
+1.3.6.1.2.1.7.2.0|65|61
+1.3.6.1.2.1.7.3.0|65|0
+1.3.6.1.2.1.7.4.0|65|577510
+1.3.6.1.2.1.10.7.2.1.19.2|2|3
+1.3.6.1.2.1.10.7.2.1.19.3|2|1
+1.3.6.1.2.1.10.7.2.1.19.4|2|1
+1.3.6.1.2.1.10.7.2.1.19.5|2|1
+1.3.6.1.2.1.11.1.0|65|173600
+1.3.6.1.2.1.11.2.0|65|173599
+1.3.6.1.2.1.11.3.0|65|0
+1.3.6.1.2.1.11.4.0|65|0
+1.3.6.1.2.1.11.5.0|65|0
+1.3.6.1.2.1.11.6.0|65|0
+1.3.6.1.2.1.11.8.0|65|0
+1.3.6.1.2.1.11.9.0|65|0
+1.3.6.1.2.1.11.10.0|65|0
+1.3.6.1.2.1.11.11.0|65|0
+1.3.6.1.2.1.11.12.0|65|0
+1.3.6.1.2.1.11.13.0|65|1526595
+1.3.6.1.2.1.11.14.0|65|0
+1.3.6.1.2.1.11.15.0|65|28848
+1.3.6.1.2.1.11.16.0|65|8142
+1.3.6.1.2.1.11.17.0|65|0
+1.3.6.1.2.1.11.18.0|65|0
+1.3.6.1.2.1.11.19.0|65|0
+1.3.6.1.2.1.11.20.0|65|0
+1.3.6.1.2.1.11.21.0|65|0
+1.3.6.1.2.1.11.22.0|65|0
+1.3.6.1.2.1.11.24.0|65|0
+1.3.6.1.2.1.11.25.0|65|0
+1.3.6.1.2.1.11.26.0|65|0
+1.3.6.1.2.1.11.27.0|65|0
+1.3.6.1.2.1.11.28.0|65|173601
+1.3.6.1.2.1.11.29.0|65|0
+1.3.6.1.2.1.11.30.0|2|2
+1.3.6.1.2.1.11.31.0|65|0
+1.3.6.1.2.1.11.32.0|65|0
+1.3.6.1.2.1.25.1.1.0|67|171739013
+1.3.6.1.2.1.25.1.4.0|4|BOOT_IMAGE=(hd0,msdos1)/vmlinuz-4.18.0-259.el8.x86_64 root=/dev/mapper/vg_some.host-root ro crashkernel=auto resume=/dev/mapper/v
+1.3.6.1.2.1.25.1.5.0|66|3
+1.3.6.1.2.1.25.1.6.0|66|316
+1.3.6.1.2.1.25.2.2.0|2|49225180
+1.3.6.1.2.1.25.2.3.1.1.1|2|1
+1.3.6.1.2.1.25.2.3.1.1.3|2|3
+1.3.6.1.2.1.25.2.3.1.1.6|2|6
+1.3.6.1.2.1.25.2.3.1.1.7|2|7
+1.3.6.1.2.1.25.2.3.1.1.8|2|8
+1.3.6.1.2.1.25.2.3.1.1.10|2|10
+1.3.6.1.2.1.25.2.3.1.1.35|2|35
+1.3.6.1.2.1.25.2.3.1.1.37|2|37
+1.3.6.1.2.1.25.2.3.1.1.38|2|38
+1.3.6.1.2.1.25.2.3.1.1.55|2|55
+1.3.6.1.2.1.25.2.3.1.1.62|2|62
+1.3.6.1.2.1.25.2.3.1.1.63|2|63
+1.3.6.1.2.1.25.2.3.1.1.64|2|64
+1.3.6.1.2.1.25.2.3.1.1.66|2|66
+1.3.6.1.2.1.25.2.3.1.2.1|6|1.3.6.1.2.1.25.2.1.2
+1.3.6.1.2.1.25.2.3.1.2.3|6|1.3.6.1.2.1.25.2.1.3
+1.3.6.1.2.1.25.2.3.1.2.6|6|1.3.6.1.2.1.25.2.1.1
+1.3.6.1.2.1.25.2.3.1.2.7|6|1.3.6.1.2.1.25.2.1.1
+1.3.6.1.2.1.25.2.3.1.2.8|6|1.3.6.1.2.1.25.2.1.1
+1.3.6.1.2.1.25.2.3.1.2.10|6|1.3.6.1.2.1.25.2.1.3
+1.3.6.1.2.1.25.2.3.1.2.35|6|1.3.6.1.2.1.25.2.1.4
+1.3.6.1.2.1.25.2.3.1.2.37|6|1.3.6.1.2.1.25.2.1.4
+1.3.6.1.2.1.25.2.3.1.2.38|6|1.3.6.1.2.1.25.2.1.4
+1.3.6.1.2.1.25.2.3.1.2.55|6|1.3.6.1.2.1.25.2.1.4
+1.3.6.1.2.1.25.2.3.1.2.62|6|1.3.6.1.2.1.25.2.1.4
+1.3.6.1.2.1.25.2.3.1.2.63|6|1.3.6.1.2.1.25.2.1.4
+1.3.6.1.2.1.25.2.3.1.2.64|6|1.3.6.1.2.1.25.2.1.4
+1.3.6.1.2.1.25.2.3.1.2.66|6|1.3.6.1.2.1.25.2.1.4
+1.3.6.1.2.1.25.2.3.1.3.1|4|Physical memory
+1.3.6.1.2.1.25.2.3.1.3.3|4|Virtual memory
+1.3.6.1.2.1.25.2.3.1.3.6|4|Memory buffers
+1.3.6.1.2.1.25.2.3.1.3.7|4|Cached memory
+1.3.6.1.2.1.25.2.3.1.3.8|4|Shared memory
+1.3.6.1.2.1.25.2.3.1.3.10|4|Swap space
+1.3.6.1.2.1.25.2.3.1.3.35|4|/dev/shm
+1.3.6.1.2.1.25.2.3.1.3.37|4|/run
+1.3.6.1.2.1.25.2.3.1.3.38|4|/sys/fs/cgroup
+1.3.6.1.2.1.25.2.3.1.3.55|4|/
+1.3.6.1.2.1.25.2.3.1.3.62|4|/opt
+1.3.6.1.2.1.25.2.3.1.3.63|4|/boot
+1.3.6.1.2.1.25.2.3.1.3.64|4|/run/user/1000
+1.3.6.1.2.1.25.2.3.1.3.66|4|/media/iso
+1.3.6.1.2.1.25.2.3.1.4.1|2|1024
+1.3.6.1.2.1.25.2.3.1.4.3|2|1024
+1.3.6.1.2.1.25.2.3.1.4.6|2|1024
+1.3.6.1.2.1.25.2.3.1.4.7|2|1024
+1.3.6.1.2.1.25.2.3.1.4.8|2|1024
+1.3.6.1.2.1.25.2.3.1.4.10|2|1024
+1.3.6.1.2.1.25.2.3.1.4.35|2|4096
+1.3.6.1.2.1.25.2.3.1.4.37|2|4096
+1.3.6.1.2.1.25.2.3.1.4.38|2|4096
+1.3.6.1.2.1.25.2.3.1.4.55|2|4096
+1.3.6.1.2.1.25.2.3.1.4.62|2|4096
+1.3.6.1.2.1.25.2.3.1.4.63|2|4096
+1.3.6.1.2.1.25.2.3.1.4.64|2|4096
+1.3.6.1.2.1.25.2.3.1.4.66|2|2048
+1.3.6.1.2.1.25.2.3.1.5.1|2|49225180
+1.3.6.1.2.1.25.2.3.1.5.3|2|53419480
+1.3.6.1.2.1.25.2.3.1.5.6|2|49225180
+1.3.6.1.2.1.25.2.3.1.5.7|2|12962116
+1.3.6.1.2.1.25.2.3.1.5.8|2|1040
+1.3.6.1.2.1.25.2.3.1.5.10|2|4194300
+1.3.6.1.2.1.25.2.3.1.5.35|2|6153147
+1.3.6.1.2.1.25.2.3.1.5.37|2|6153147
+1.3.6.1.2.1.25.2.3.1.5.38|2|6153147
+1.3.6.1.2.1.25.2.3.1.5.55|2|18341120
+1.3.6.1.2.1.25.2.3.1.5.62|2|273219231
+1.3.6.1.2.1.25.2.3.1.5.63|2|259584
+1.3.6.1.2.1.25.2.3.1.5.64|2|1230629
+1.3.6.1.2.1.25.2.3.1.5.66|2|3445008
+1.3.6.1.2.1.25.2.3.1.6.1|2|27274104
+1.3.6.1.2.1.25.2.3.1.6.3|2|27274104
+1.3.6.1.2.1.25.2.3.1.6.6|2|5324
+1.3.6.1.2.1.25.2.3.1.6.7|2|12962116
+1.3.6.1.2.1.25.2.3.1.6.8|2|1040
+1.3.6.1.2.1.25.2.3.1.6.10|2|0
+1.3.6.1.2.1.25.2.3.1.6.35|2|0
+1.3.6.1.2.1.25.2.3.1.6.37|2|260
+1.3.6.1.2.1.25.2.3.1.6.38|2|0
+1.3.6.1.2.1.25.2.3.1.6.55|2|3307213
+1.3.6.1.2.1.25.2.3.1.6.62|2|27506092
+1.3.6.1.2.1.25.2.3.1.6.63|2|64428
+1.3.6.1.2.1.25.2.3.1.6.64|2|0
+1.3.6.1.2.1.25.2.3.1.6.66|2|3445008
+1.3.6.1.2.1.25.3.2.1.1.196608|2|196608
+1.3.6.1.2.1.25.3.2.1.1.196609|2|196609
+1.3.6.1.2.1.25.3.2.1.1.196610|2|196610
+1.3.6.1.2.1.25.3.2.1.1.196611|2|196611
+1.3.6.1.2.1.25.3.2.1.1.196612|2|196612
+1.3.6.1.2.1.25.3.2.1.1.196613|2|196613
+1.3.6.1.2.1.25.3.2.1.1.196614|2|196614
+1.3.6.1.2.1.25.3.2.1.1.196615|2|196615
+1.3.6.1.2.1.25.3.2.1.1.196616|2|196616
+1.3.6.1.2.1.25.3.2.1.1.196617|2|196617
+1.3.6.1.2.1.25.3.2.1.1.196618|2|196618
+1.3.6.1.2.1.25.3.2.1.1.196619|2|196619
+1.3.6.1.2.1.25.3.2.1.1.196620|2|196620
+1.3.6.1.2.1.25.3.2.1.1.196621|2|196621
+1.3.6.1.2.1.25.3.2.1.1.196622|2|196622
+1.3.6.1.2.1.25.3.2.1.1.196623|2|196623
+1.3.6.1.2.1.25.3.2.1.1.196624|2|196624
+1.3.6.1.2.1.25.3.2.1.1.196625|2|196625
+1.3.6.1.2.1.25.3.2.1.1.196626|2|196626
+1.3.6.1.2.1.25.3.2.1.1.196627|2|196627
+1.3.6.1.2.1.25.3.2.1.1.196628|2|196628
+1.3.6.1.2.1.25.3.2.1.1.196629|2|196629
+1.3.6.1.2.1.25.3.2.1.1.196630|2|196630
+1.3.6.1.2.1.25.3.2.1.1.196631|2|196631
+1.3.6.1.2.1.25.3.2.1.1.262145|2|262145
+1.3.6.1.2.1.25.3.2.1.1.262146|2|262146
+1.3.6.1.2.1.25.3.2.1.1.262147|2|262147
+1.3.6.1.2.1.25.3.2.1.1.262148|2|262148
+1.3.6.1.2.1.25.3.2.1.1.262149|2|262149
+1.3.6.1.2.1.25.3.2.1.1.786432|2|786432
+1.3.6.1.2.1.25.3.2.1.2.196608|6|1.3.6.1.2.1.25.3.1.3
+1.3.6.1.2.1.25.3.2.1.2.196609|6|1.3.6.1.2.1.25.3.1.3
+1.3.6.1.2.1.25.3.2.1.2.196610|6|1.3.6.1.2.1.25.3.1.3
+1.3.6.1.2.1.25.3.2.1.2.196611|6|1.3.6.1.2.1.25.3.1.3
+1.3.6.1.2.1.25.3.2.1.2.196612|6|1.3.6.1.2.1.25.3.1.3
+1.3.6.1.2.1.25.3.2.1.2.196613|6|1.3.6.1.2.1.25.3.1.3
+1.3.6.1.2.1.25.3.2.1.2.196614|6|1.3.6.1.2.1.25.3.1.3
+1.3.6.1.2.1.25.3.2.1.2.196615|6|1.3.6.1.2.1.25.3.1.3
+1.3.6.1.2.1.25.3.2.1.2.196616|6|1.3.6.1.2.1.25.3.1.3
+1.3.6.1.2.1.25.3.2.1.2.196617|6|1.3.6.1.2.1.25.3.1.3
+1.3.6.1.2.1.25.3.2.1.2.196618|6|1.3.6.1.2.1.25.3.1.3
+1.3.6.1.2.1.25.3.2.1.2.196619|6|1.3.6.1.2.1.25.3.1.3
+1.3.6.1.2.1.25.3.2.1.2.196620|6|1.3.6.1.2.1.25.3.1.3
+1.3.6.1.2.1.25.3.2.1.2.196621|6|1.3.6.1.2.1.25.3.1.3
+1.3.6.1.2.1.25.3.2.1.2.196622|6|1.3.6.1.2.1.25.3.1.3
+1.3.6.1.2.1.25.3.2.1.2.196623|6|1.3.6.1.2.1.25.3.1.3
+1.3.6.1.2.1.25.3.2.1.2.196624|6|1.3.6.1.2.1.25.3.1.3
+1.3.6.1.2.1.25.3.2.1.2.196625|6|1.3.6.1.2.1.25.3.1.3
+1.3.6.1.2.1.25.3.2.1.2.196626|6|1.3.6.1.2.1.25.3.1.3
+1.3.6.1.2.1.25.3.2.1.2.196627|6|1.3.6.1.2.1.25.3.1.3
+1.3.6.1.2.1.25.3.2.1.2.196628|6|1.3.6.1.2.1.25.3.1.3
+1.3.6.1.2.1.25.3.2.1.2.196629|6|1.3.6.1.2.1.25.3.1.3
+1.3.6.1.2.1.25.3.2.1.2.196630|6|1.3.6.1.2.1.25.3.1.3
+1.3.6.1.2.1.25.3.2.1.2.196631|6|1.3.6.1.2.1.25.3.1.3
+1.3.6.1.2.1.25.3.2.1.2.262145|6|1.3.6.1.2.1.25.3.1.4
+1.3.6.1.2.1.25.3.2.1.2.262146|6|1.3.6.1.2.1.25.3.1.4
+1.3.6.1.2.1.25.3.2.1.2.262147|6|1.3.6.1.2.1.25.3.1.4
+1.3.6.1.2.1.25.3.2.1.2.262148|6|1.3.6.1.2.1.25.3.1.4
+1.3.6.1.2.1.25.3.2.1.2.262149|6|1.3.6.1.2.1.25.3.1.4
+1.3.6.1.2.1.25.3.2.1.2.786432|6|1.3.6.1.2.1.25.3.1.12
+1.3.6.1.2.1.25.3.2.1.3.196608|4|GenuineIntel: Intel(R) Xeon(R) CPU X5670 @ 2.93GHz
+1.3.6.1.2.1.25.3.2.1.3.196609|4|GenuineIntel: Intel(R) Xeon(R) CPU X5670 @ 2.93GHz
+1.3.6.1.2.1.25.3.2.1.3.196610|4|GenuineIntel: Intel(R) Xeon(R) CPU X5670 @ 2.93GHz
+1.3.6.1.2.1.25.3.2.1.3.196611|4|GenuineIntel: Intel(R) Xeon(R) CPU X5670 @ 2.93GHz
+1.3.6.1.2.1.25.3.2.1.3.196612|4|GenuineIntel: Intel(R) Xeon(R) CPU X5670 @ 2.93GHz
+1.3.6.1.2.1.25.3.2.1.3.196613|4|GenuineIntel: Intel(R) Xeon(R) CPU X5670 @ 2.93GHz
+1.3.6.1.2.1.25.3.2.1.3.196614|4|GenuineIntel: Intel(R) Xeon(R) CPU X5670 @ 2.93GHz
+1.3.6.1.2.1.25.3.2.1.3.196615|4|GenuineIntel: Intel(R) Xeon(R) CPU X5670 @ 2.93GHz
+1.3.6.1.2.1.25.3.2.1.3.196616|4|GenuineIntel: Intel(R) Xeon(R) CPU X5670 @ 2.93GHz
+1.3.6.1.2.1.25.3.2.1.3.196617|4|GenuineIntel: Intel(R) Xeon(R) CPU X5670 @ 2.93GHz
+1.3.6.1.2.1.25.3.2.1.3.196618|4|GenuineIntel: Intel(R) Xeon(R) CPU X5670 @ 2.93GHz
+1.3.6.1.2.1.25.3.2.1.3.196619|4|GenuineIntel: Intel(R) Xeon(R) CPU X5670 @ 2.93GHz
+1.3.6.1.2.1.25.3.2.1.3.196620|4|GenuineIntel: Intel(R) Xeon(R) CPU X5670 @ 2.93GHz
+1.3.6.1.2.1.25.3.2.1.3.196621|4|GenuineIntel: Intel(R) Xeon(R) CPU X5670 @ 2.93GHz
+1.3.6.1.2.1.25.3.2.1.3.196622|4|GenuineIntel: Intel(R) Xeon(R) CPU X5670 @ 2.93GHz
+1.3.6.1.2.1.25.3.2.1.3.196623|4|GenuineIntel: Intel(R) Xeon(R) CPU X5670 @ 2.93GHz
+1.3.6.1.2.1.25.3.2.1.3.196624|4|GenuineIntel: Intel(R) Xeon(R) CPU X5670 @ 2.93GHz
+1.3.6.1.2.1.25.3.2.1.3.196625|4|GenuineIntel: Intel(R) Xeon(R) CPU X5670 @ 2.93GHz
+1.3.6.1.2.1.25.3.2.1.3.196626|4|GenuineIntel: Intel(R) Xeon(R) CPU X5670 @ 2.93GHz
+1.3.6.1.2.1.25.3.2.1.3.196627|4|GenuineIntel: Intel(R) Xeon(R) CPU X5670 @ 2.93GHz
+1.3.6.1.2.1.25.3.2.1.3.196628|4|GenuineIntel: Intel(R) Xeon(R) CPU X5670 @ 2.93GHz
+1.3.6.1.2.1.25.3.2.1.3.196629|4|GenuineIntel: Intel(R) Xeon(R) CPU X5670 @ 2.93GHz
+1.3.6.1.2.1.25.3.2.1.3.196630|4|GenuineIntel: Intel(R) Xeon(R) CPU X5670 @ 2.93GHz
+1.3.6.1.2.1.25.3.2.1.3.196631|4|GenuineIntel: Intel(R) Xeon(R) CPU X5670 @ 2.93GHz
+1.3.6.1.2.1.25.3.2.1.3.262145|4|network interface lo
+1.3.6.1.2.1.25.3.2.1.3.262146|4|network interface enp2s0f0
+1.3.6.1.2.1.25.3.2.1.3.262147|4|network interface enp2s0f1
+1.3.6.1.2.1.25.3.2.1.3.262148|4|network interface enp3s0f0
+1.3.6.1.2.1.25.3.2.1.3.262149|4|network interface enp3s0f1
+1.3.6.1.2.1.25.3.2.1.3.786432|4|Guessing that there's a floating point co-processor
+1.3.6.1.2.1.25.3.2.1.4.196608|6|0.0
+1.3.6.1.2.1.25.3.2.1.4.196609|6|0.0
+1.3.6.1.2.1.25.3.2.1.4.196610|6|0.0
+1.3.6.1.2.1.25.3.2.1.4.196611|6|0.0
+1.3.6.1.2.1.25.3.2.1.4.196612|6|0.0
+1.3.6.1.2.1.25.3.2.1.4.196613|6|0.0
+1.3.6.1.2.1.25.3.2.1.4.196614|6|0.0
+1.3.6.1.2.1.25.3.2.1.4.196615|6|0.0
+1.3.6.1.2.1.25.3.2.1.4.196616|6|0.0
+1.3.6.1.2.1.25.3.2.1.4.196617|6|0.0
+1.3.6.1.2.1.25.3.2.1.4.196618|6|0.0
+1.3.6.1.2.1.25.3.2.1.4.196619|6|0.0
+1.3.6.1.2.1.25.3.2.1.4.196620|6|0.0
+1.3.6.1.2.1.25.3.2.1.4.196621|6|0.0
+1.3.6.1.2.1.25.3.2.1.4.196622|6|0.0
+1.3.6.1.2.1.25.3.2.1.4.196623|6|0.0
+1.3.6.1.2.1.25.3.2.1.4.196624|6|0.0
+1.3.6.1.2.1.25.3.2.1.4.196625|6|0.0
+1.3.6.1.2.1.25.3.2.1.4.196626|6|0.0
+1.3.6.1.2.1.25.3.2.1.4.196627|6|0.0
+1.3.6.1.2.1.25.3.2.1.4.196628|6|0.0
+1.3.6.1.2.1.25.3.2.1.4.196629|6|0.0
+1.3.6.1.2.1.25.3.2.1.4.196630|6|0.0
+1.3.6.1.2.1.25.3.2.1.4.196631|6|0.0
+1.3.6.1.2.1.25.3.2.1.4.262145|6|0.0
+1.3.6.1.2.1.25.3.2.1.4.262146|6|0.0
+1.3.6.1.2.1.25.3.2.1.4.262147|6|0.0
+1.3.6.1.2.1.25.3.2.1.4.262148|6|0.0
+1.3.6.1.2.1.25.3.2.1.4.262149|6|0.0
+1.3.6.1.2.1.25.3.2.1.4.786432|6|0.0
+1.3.6.1.2.1.25.3.2.1.5.196608|2|2
+1.3.6.1.2.1.25.3.2.1.5.196609|2|2
+1.3.6.1.2.1.25.3.2.1.5.196610|2|2
+1.3.6.1.2.1.25.3.2.1.5.196611|2|2
+1.3.6.1.2.1.25.3.2.1.5.196612|2|2
+1.3.6.1.2.1.25.3.2.1.5.196613|2|2
+1.3.6.1.2.1.25.3.2.1.5.196614|2|2
+1.3.6.1.2.1.25.3.2.1.5.196615|2|2
+1.3.6.1.2.1.25.3.2.1.5.196616|2|2
+1.3.6.1.2.1.25.3.2.1.5.196617|2|2
+1.3.6.1.2.1.25.3.2.1.5.196618|2|2
+1.3.6.1.2.1.25.3.2.1.5.196619|2|2
+1.3.6.1.2.1.25.3.2.1.5.196620|2|2
+1.3.6.1.2.1.25.3.2.1.5.196621|2|2
+1.3.6.1.2.1.25.3.2.1.5.196622|2|2
+1.3.6.1.2.1.25.3.2.1.5.196623|2|2
+1.3.6.1.2.1.25.3.2.1.5.196624|2|2
+1.3.6.1.2.1.25.3.2.1.5.196625|2|2
+1.3.6.1.2.1.25.3.2.1.5.196626|2|2
+1.3.6.1.2.1.25.3.2.1.5.196627|2|2
+1.3.6.1.2.1.25.3.2.1.5.196628|2|2
+1.3.6.1.2.1.25.3.2.1.5.196629|2|2
+1.3.6.1.2.1.25.3.2.1.5.196630|2|2
+1.3.6.1.2.1.25.3.2.1.5.196631|2|2
+1.3.6.1.2.1.25.3.2.1.5.262145|2|2
+1.3.6.1.2.1.25.3.2.1.5.262146|2|2
+1.3.6.1.2.1.25.3.2.1.5.262147|2|2
+1.3.6.1.2.1.25.3.2.1.5.262148|2|2
+1.3.6.1.2.1.25.3.2.1.5.262149|2|2
+1.3.6.1.2.1.25.3.2.1.6.262145|65|0
+1.3.6.1.2.1.25.3.2.1.6.262146|65|0
+1.3.6.1.2.1.25.3.2.1.6.262147|65|0
+1.3.6.1.2.1.25.3.2.1.6.262148|65|0
+1.3.6.1.2.1.25.3.2.1.6.262149|65|0
+1.3.6.1.2.1.25.3.3.1.1.196608|6|0.0
+1.3.6.1.2.1.25.3.3.1.1.196609|6|0.0
+1.3.6.1.2.1.25.3.3.1.1.196610|6|0.0
+1.3.6.1.2.1.25.3.3.1.1.196611|6|0.0
+1.3.6.1.2.1.25.3.3.1.1.196612|6|0.0
+1.3.6.1.2.1.25.3.3.1.1.196613|6|0.0
+1.3.6.1.2.1.25.3.3.1.1.196614|6|0.0
+1.3.6.1.2.1.25.3.3.1.1.196615|6|0.0
+1.3.6.1.2.1.25.3.3.1.1.196616|6|0.0
+1.3.6.1.2.1.25.3.3.1.1.196617|6|0.0
+1.3.6.1.2.1.25.3.3.1.1.196618|6|0.0
+1.3.6.1.2.1.25.3.3.1.1.196619|6|0.0
+1.3.6.1.2.1.25.3.3.1.1.196620|6|0.0
+1.3.6.1.2.1.25.3.3.1.1.196621|6|0.0
+1.3.6.1.2.1.25.3.3.1.1.196622|6|0.0
+1.3.6.1.2.1.25.3.3.1.1.196623|6|0.0
+1.3.6.1.2.1.25.3.3.1.1.196624|6|0.0
+1.3.6.1.2.1.25.3.3.1.1.196625|6|0.0
+1.3.6.1.2.1.25.3.3.1.1.196626|6|0.0
+1.3.6.1.2.1.25.3.3.1.1.196627|6|0.0
+1.3.6.1.2.1.25.3.3.1.1.196628|6|0.0
+1.3.6.1.2.1.25.3.3.1.1.196629|6|0.0
+1.3.6.1.2.1.25.3.3.1.1.196630|6|0.0
+1.3.6.1.2.1.25.3.3.1.1.196631|6|0.0
+1.3.6.1.2.1.25.3.3.1.2.196608|2|3
+1.3.6.1.2.1.25.3.3.1.2.196609|2|3
+1.3.6.1.2.1.25.3.3.1.2.196610|2|100
+1.3.6.1.2.1.25.3.3.1.2.196611|2|10
+1.3.6.1.2.1.25.3.3.1.2.196612|2|100
+1.3.6.1.2.1.25.3.3.1.2.196613|2|1
+1.3.6.1.2.1.25.3.3.1.2.196614|2|1
+1.3.6.1.2.1.25.3.3.1.2.196615|2|2
+1.3.6.1.2.1.25.3.3.1.2.196616|2|100
+1.3.6.1.2.1.25.3.3.1.2.196617|2|2
+1.3.6.1.2.1.25.3.3.1.2.196618|2|100
+1.3.6.1.2.1.25.3.3.1.2.196619|2|97
+1.3.6.1.2.1.25.3.3.1.2.196620|2|100
+1.3.6.1.2.1.25.3.3.1.2.196621|2|100
+1.3.6.1.2.1.25.3.3.1.2.196622|2|1
+1.3.6.1.2.1.25.3.3.1.2.196623|2|100
+1.3.6.1.2.1.25.3.3.1.2.196624|2|7
+1.3.6.1.2.1.25.3.3.1.2.196625|2|100
+1.3.6.1.2.1.25.3.3.1.2.196626|2|100
+1.3.6.1.2.1.25.3.3.1.2.196627|2|100
+1.3.6.1.2.1.25.3.3.1.2.196628|2|1
+1.3.6.1.2.1.25.3.3.1.2.196629|2|100
+1.3.6.1.2.1.25.3.3.1.2.196630|2|1
+1.3.6.1.2.1.25.3.3.1.2.196631|2|8
+1.3.6.1.2.1.25.6.3.1.2.1|4|popt-1.18-1.el8
+1.3.6.1.2.1.25.6.3.1.2.2|4|libdb-5.3.28-40.el8
+1.3.6.1.2.1.25.6.3.1.2.3|4|libreport-filesystem-2.9.5-15.el8
+1.3.6.1.2.1.25.6.3.1.2.4|4|grub2-tools-extra-2.02-93.el8
+1.3.6.1.2.1.25.6.3.1.2.5|4|libpwquality-1.4.4-1.el8
+1.3.6.1.2.1.25.6.3.1.2.6|4|ncurses-base-6.1-7.20180224.el8
+1.3.6.1.2.1.25.6.3.1.2.7|4|python3-bind-9.11.26-1.el8
+1.3.6.1.2.1.25.6.3.1.2.8|4|glib2-2.56.4-9.el8
+1.3.6.1.2.1.25.6.3.1.2.9|4|firewalld-filesystem-0.8.2-3.el8
+1.3.6.1.2.1.25.6.3.1.2.10|4|polkit-libs-0.115-11.el8
+1.3.6.1.2.1.25.6.3.1.2.11|4|perl-URI-1.73-3.el8
+1.3.6.1.2.1.25.6.3.1.2.12|4|basesystem-11-5.el8
+1.3.6.1.2.1.25.6.3.1.2.13|4|dhcp-client-4.3.6-44.0.1.el8
+1.3.6.1.2.1.25.6.3.1.2.14|4|libmodulemd-2.9.4-2.el8
+1.3.6.1.2.1.25.6.3.1.2.15|4|perl-File-Temp-0.230.600-1.el8
+1.3.6.1.2.1.25.6.3.1.2.16|4|podman-catatonit-3.0.0-0.21.module_el8.4.0+641+6116a774
+1.3.6.1.2.1.25.6.3.1.2.17|4|perl-Storable-3.11-3.el8
+1.3.6.1.2.1.25.6.3.1.2.18|4|libxml2-2.9.7-9.el8
+1.3.6.1.2.1.25.6.3.1.2.19|4|kernel-4.18.0-269.el8
+1.3.6.1.2.1.25.6.3.1.2.20|4|python3-iniparse-0.4-31.el8
+1.3.6.1.2.1.25.6.3.1.2.21|4|perl-Scalar-List-Utils-1.49-2.el8
+1.3.6.1.2.1.25.6.3.1.2.22|4|expat-2.2.5-4.el8
+1.3.6.1.2.1.25.6.3.1.2.23|4|dracut-config-rescue-049-133.git20210112.el8
+1.3.6.1.2.1.25.6.3.1.2.24|4|perl-constant-1.33-396.el8
+1.3.6.1.2.1.25.6.3.1.2.25|4|libmnl-1.0.4-6.el8
+1.3.6.1.2.1.25.6.3.1.2.26|4|libblockdev-loop-2.24-5.el8
+1.3.6.1.2.1.25.6.3.1.2.27|4|libevent-2.1.8-5.el8
+1.3.6.1.2.1.25.6.3.1.2.28|4|lsof-4.93.2-1.el8
+1.3.6.1.2.1.25.6.3.1.2.29|4|findutils-4.6.0-20.el8
+1.3.6.1.2.1.25.6.3.1.2.30|4|xfsprogs-5.0.0-8.el8
+1.3.6.1.2.1.25.6.3.1.2.31|4|jose-10-2.el8
+1.3.6.1.2.1.25.6.3.1.2.32|4|libseccomp-2.4.3-1.el8
+1.3.6.1.2.1.25.6.3.1.2.33|4|iwl6000-firmware-9.221.4.1-101.el8.1
+1.3.6.1.2.1.25.6.3.1.2.34|4|mtr-0.92-3.el8
+1.3.6.1.2.1.25.6.3.1.2.35|4|sed-4.5-2.el8
+1.3.6.1.2.1.25.6.3.1.2.36|4|iwl1000-firmware-39.31.5.1-101.el8.1
+1.3.6.1.2.1.25.6.3.1.2.37|4|libbasicobjects-0.1.1-39.el8
+1.3.6.1.2.1.25.6.3.1.2.38|4|libicu-60.3-2.el8_1
+1.3.6.1.2.1.25.6.3.1.2.39|4|ethtool-5.8-5.el8
+1.3.6.1.2.1.25.6.3.1.2.40|4|libsss_idmap-2.4.0-6.el8
+1.3.6.1.2.1.25.6.3.1.2.41|4|python3-configobj-5.0.6-11.el8
+1.3.6.1.2.1.25.6.3.1.2.42|4|perl-Time-HiRes-1.9758-2.el8
+1.3.6.1.2.1.25.6.3.1.2.43|4|gdisk-1.0.3-6.el8
+1.3.6.1.2.1.25.6.3.1.2.44|4|libsss_sudo-2.4.0-6.el8
+1.3.6.1.2.1.25.6.3.1.2.45|4|dconf-0.28.0-4.el8
+1.3.6.1.2.1.25.6.3.1.2.46|4|gpg-pubkey-26c2b797-5669d0b9
+1.3.6.1.2.1.25.6.3.1.2.47|4|libini_config-1.3.1-39.el8
+1.3.6.1.2.1.25.6.3.1.2.48|4|device-mapper-1.02.175-1.el8
+1.3.6.1.2.1.25.6.3.1.2.49|4|libappstream-glib-0.7.14-3.el8
+1.3.6.1.2.1.25.6.3.1.2.50|4|hp-firmware-hdd-06ac84a5d4-HPD6-3.1
+1.3.6.1.2.1.25.6.3.1.2.51|4|lzo-2.08-14.el8
+1.3.6.1.2.1.25.6.3.1.2.52|4|lvm2-2.03.11-1.el8
+1.3.6.1.2.1.25.6.3.1.2.53|4|glibc-2.28-145.el8
+1.3.6.1.2.1.25.6.3.1.2.54|4|iptables-ebtables-1.8.4-16.el8
+1.3.6.1.2.1.25.6.3.1.2.55|4|sudo-1.8.29-6.el8_3.1
+1.3.6.1.2.1.25.6.3.1.2.56|4|rpm-plugin-systemd-inhibit-4.14.3-4.el8
+1.3.6.1.2.1.25.6.3.1.2.57|4|tar-1.30-5.el8
+1.3.6.1.2.1.25.6.3.1.2.58|4|hp-health-10.91-1878.11.rhel8
+1.3.6.1.2.1.25.6.3.1.2.59|4|sscg-2.3.3-14.el8
+1.3.6.1.2.1.25.6.3.1.2.60|4|libcomps-0.1.11-4.el8
+1.3.6.1.2.1.25.6.3.1.2.61|4|powertop-2.12-2.el8
+1.3.6.1.2.1.25.6.3.1.2.62|4|e2fsprogs-libs-1.45.6-1.el8
+1.3.6.1.2.1.25.6.3.1.2.63|4|cups-libs-2.2.6-38.el8
+1.3.6.1.2.1.25.6.3.1.2.64|4|subscription-manager-rhsm-certificates-1.28.9-1.el8
+1.3.6.1.2.1.25.6.3.1.2.65|4|checkpolicy-2.9-1.el8
+1.3.6.1.2.1.25.6.3.1.2.66|4|python3-inotify-0.9.6-13.el8
+1.3.6.1.2.1.25.6.3.1.2.67|4|jbigkit-libs-2.1-14.el8
+1.3.6.1.2.1.25.6.3.1.2.68|4|gnupg2-2.2.20-2.el8
+1.3.6.1.2.1.25.6.3.1.2.69|4|initscripts-10.00.12-1.el8
+1.3.6.1.2.1.25.6.3.1.2.70|4|libXfixes-5.0.3-7.el8
+1.3.6.1.2.1.25.6.3.1.2.71|4|git-core-doc-2.27.0-1.el8
+1.3.6.1.2.1.25.6.3.1.2.72|4|libdaemon-0.14-15.el8
+1.3.6.1.2.1.25.6.3.1.2.73|4|cmake-rpm-macros-3.18.2-8.el8
+1.3.6.1.2.1.25.6.3.1.2.74|4|gawk-4.2.1-2.el8
+1.3.6.1.2.1.25.6.3.1.2.75|4|rdma-core-32.0-3.el8
+1.3.6.1.2.1.25.6.3.1.2.76|4|libwayland-egl-1.17.0-1.el8
+1.3.6.1.2.1.25.6.3.1.2.77|4|libmaxminddb-1.2.0-10.el8
+1.3.6.1.2.1.25.6.3.1.2.78|4|jq-1.5-12.el8
+1.3.6.1.2.1.25.6.3.1.2.79|4|libarchive-3.3.3-1.el8
+1.3.6.1.2.1.25.6.3.1.2.80|4|adwaita-cursor-theme-3.28.0-2.el8
+1.3.6.1.2.1.25.6.3.1.2.81|4|cmake-data-3.18.2-8.el8
+1.3.6.1.2.1.25.6.3.1.2.82|4|sg3_utils-1.44-5.el8
+1.3.6.1.2.1.25.6.3.1.2.83|4|libstdc++-static-8.4.1-1.el8
+1.3.6.1.2.1.25.6.3.1.2.84|4|libblockdev-utils-2.24-5.el8
+1.3.6.1.2.1.25.6.3.1.2.85|4|irqbalance-1.4.0-5.el8
+1.3.6.1.2.1.25.6.3.1.2.86|4|gzip-1.9-12.el8
+1.3.6.1.2.1.25.6.3.1.2.87|4|ca-certificates-2020.2.41-80.0.el8_2
+1.3.6.1.2.1.25.6.3.1.2.88|4|iprutils-2.4.19-1.el8
+1.3.6.1.2.1.25.6.3.1.2.89|4|geolite2-country-20180605-1.el8
+1.3.6.1.2.1.25.6.3.1.2.90|4|selinux-policy-targeted-3.14.3-60.el8
+1.3.6.1.2.1.25.6.3.1.2.91|4|dbus-daemon-1.12.8-12.el8
+1.3.6.1.2.1.25.6.3.1.2.92|4|dejavu-sans-mono-fonts-2.35-7.el8
+1.3.6.1.2.1.25.6.3.1.2.93|4|mdadm-4.1-15.el8
+1.3.6.1.2.1.25.6.3.1.2.94|4|os-prober-1.74-6.el8
+1.3.6.1.2.1.25.6.3.1.2.95|4|libX11-common-1.6.8-4.el8
+1.3.6.1.2.1.25.6.3.1.2.96|4|systemd-udev-239-43.el8
+1.3.6.1.2.1.25.6.3.1.2.97|4|perl-Digest-1.17-395.el8
+1.3.6.1.2.1.25.6.3.1.2.98|4|centos-gpg-keys-8-2.el8
+1.3.6.1.2.1.25.6.3.1.2.99|4|dhcp-libs-4.3.6-44.0.1.el8
+1.3.6.1.2.1.25.6.3.1.2.100|4|cairo-1.15.12-3.el8
+1.3.6.1.2.1.25.6.3.1.2.101|4|perl-IO-Socket-IP-0.39-5.el8
+1.3.6.1.2.1.25.6.3.1.2.102|4|ncurses-libs-6.1-7.20180224.el8
+1.3.6.1.2.1.25.6.3.1.2.103|4|runc-1.0.0-69.rc92.module_el8.4.0+641+6116a774
+1.3.6.1.2.1.25.6.3.1.2.104|4|python3-gobject-base-3.28.3-2.el8
+1.3.6.1.2.1.25.6.3.1.2.105|4|perl-podlators-4.11-1.el8
+1.3.6.1.2.1.25.6.3.1.2.106|4|cockpit-podman-27.1-2.module_el8.4.0+641+6116a774
+1.3.6.1.2.1.25.6.3.1.2.107|4|perl-Socket-2.027-3.el8
+1.3.6.1.2.1.25.6.3.1.2.108|4|info-6.5-6.el8
+1.3.6.1.2.1.25.6.3.1.2.109|4|kernel-tools-4.18.0-269.el8
+1.3.6.1.2.1.25.6.3.1.2.110|4|perl-Text-Tabs+Wrap-2013.0523-395.el8
+1.3.6.1.2.1.25.6.3.1.2.111|4|libzstd-1.4.4-1.el8
+1.3.6.1.2.1.25.6.3.1.2.112|4|libblockdev-2.24-5.el8
+1.3.6.1.2.1.25.6.3.1.2.113|4|binutils-2.30-90.el8
+1.3.6.1.2.1.25.6.3.1.2.114|4|libldb-2.2.0-1.el8
+1.3.6.1.2.1.25.6.3.1.2.115|4|pkgconf-pkg-config-1.4.2-1.el8
+1.3.6.1.2.1.25.6.3.1.2.116|4|libassuan-2.5.1-3.el8
+1.3.6.1.2.1.25.6.3.1.2.117|4|iwl7260-firmware-25.30.13.0-101.el8.1
+1.3.6.1.2.1.25.6.3.1.2.118|4|audit-3.0-0.17.20191104git1c2f876.el8
+1.3.6.1.2.1.25.6.3.1.2.119|4|bash-completion-2.7-5.el8
+1.3.6.1.2.1.25.6.3.1.2.120|4|libsemanage-2.9-4.el8
+1.3.6.1.2.1.25.6.3.1.2.121|4|iwl2000-firmware-18.168.6.1-101.el8.1
+1.3.6.1.2.1.25.6.3.1.2.122|4|lm_sensors-libs-3.4.0-22.20180522git70f7e08.el8
+1.3.6.1.2.1.25.6.3.1.2.123|4|which-2.21-12.el8
+1.3.6.1.2.1.25.6.3.1.2.124|4|python3-setools-4.3.0-2.el8
+1.3.6.1.2.1.25.6.3.1.2.125|4|tcpdump-4.9.3-1.el8
+1.3.6.1.2.1.25.6.3.1.2.126|4|libref_array-0.1.5-39.el8
+1.3.6.1.2.1.25.6.3.1.2.127|4|net-snmp-libs-5.8-20.el8
+1.3.6.1.2.1.25.6.3.1.2.128|4|gdk-pixbuf2-modules-2.36.12-5.el8
+1.3.6.1.2.1.25.6.3.1.2.129|4|logwatch-7.4.3-9.el8
+1.3.6.1.2.1.25.6.3.1.2.130|4|mpfr-3.1.6-1.el8
+1.3.6.1.2.1.25.6.3.1.2.131|4|perl-IO-1.38-419.el8
+1.3.6.1.2.1.25.6.3.1.2.132|4|perl-GSSAPI-0.28-23.el8
+1.3.6.1.2.1.25.6.3.1.2.133|4|dmidecode-3.2-8.el8
+1.3.6.1.2.1.25.6.3.1.2.134|4|libsmartcols-2.32.1-27.el8
+1.3.6.1.2.1.25.6.3.1.2.135|4|glib-networking-2.56.1-1.1.el8
+1.3.6.1.2.1.25.6.3.1.2.136|4|hp-firmware-smartarray-14ef73e580-6.64-2
+1.3.6.1.2.1.25.6.3.1.2.137|4|nftables-0.9.3-16.el8
+1.3.6.1.2.1.25.6.3.1.2.138|4|sssd-nfs-idmap-2.4.0-6.el8
+1.3.6.1.2.1.25.6.3.1.2.139|4|pinentry-1.1.0-2.el8
+1.3.6.1.2.1.25.6.3.1.2.140|4|libhugetlbfs-utils-2.21-17.el8
+1.3.6.1.2.1.25.6.3.1.2.141|4|pixman-0.38.4-1.el8
+1.3.6.1.2.1.25.6.3.1.2.142|4|NetworkManager-tui-1.30.0-0.7.el8
+1.3.6.1.2.1.25.6.3.1.2.143|4|cryptsetup-2.3.3-2.el8
+1.3.6.1.2.1.25.6.3.1.2.144|4|libteam-1.31-2.el8
+1.3.6.1.2.1.25.6.3.1.2.145|4|kexec-tools-2.0.20-43.el8
+1.3.6.1.2.1.25.6.3.1.2.146|4|libpsl-0.20.2-6.el8
+1.3.6.1.2.1.25.6.3.1.2.147|4|python38-3.8.6-2.module_el8.4.0+647+0ba99ce8
+1.3.6.1.2.1.25.6.3.1.2.148|4|dnf-plugin-subscription-manager-1.28.9-1.el8
+1.3.6.1.2.1.25.6.3.1.2.149|4|graphite2-1.3.10-10.el8
+1.3.6.1.2.1.25.6.3.1.2.150|4|nss-sysinit-3.53.1-17.el8_3
+1.3.6.1.2.1.25.6.3.1.2.151|4|pigz-2.4-4.el8
+1.3.6.1.2.1.25.6.3.1.2.152|4|hwdata-0.314-8.7.el8
+1.3.6.1.2.1.25.6.3.1.2.153|4|fuse-libs-2.9.7-12.el8
+1.3.6.1.2.1.25.6.3.1.2.154|4|python3-schedutils-0.6-6.el8
+1.3.6.1.2.1.25.6.3.1.2.155|4|libXau-1.0.9-3.el8
+1.3.6.1.2.1.25.6.3.1.2.156|4|python3-hawkey-0.55.0-1.el8
+1.3.6.1.2.1.25.6.3.1.2.157|4|libXcursor-1.1.15-3.el8
+1.3.6.1.2.1.25.6.3.1.2.158|4|udisks2-lvm2-2.9.0-5.el8
+1.3.6.1.2.1.25.6.3.1.2.159|4|perl-Error-0.17025-2.el8
+1.3.6.1.2.1.25.6.3.1.2.160|4|libepoxy-1.5.3-1.el8
+1.3.6.1.2.1.25.6.3.1.2.161|4|zlib-devel-1.2.11-17.el8
+1.3.6.1.2.1.25.6.3.1.2.162|4|ibacm-32.0-3.el8
+1.3.6.1.2.1.25.6.3.1.2.163|4|memstrack-0.1.11-1.el8
+1.3.6.1.2.1.25.6.3.1.2.164|4|libselinux-devel-2.9-5.el8
+1.3.6.1.2.1.25.6.3.1.2.165|4|openldap-2.4.46-16.el8
+1.3.6.1.2.1.25.6.3.1.2.166|4|glibc-devel-2.28-145.el8
+1.3.6.1.2.1.25.6.3.1.2.167|4|libcurl-7.61.1-17.el8
+1.3.6.1.2.1.25.6.3.1.2.168|4|gcc-8.4.1-1.el8
+1.3.6.1.2.1.25.6.3.1.2.169|4|procps-ng-3.3.15-5.el8
+1.3.6.1.2.1.25.6.3.1.2.170|4|firewalld-0.8.2-3.el8
+1.3.6.1.2.1.25.6.3.1.2.171|4|python36-3.6.8-2.module_el8.3.0+389+6a62c88d
+1.3.6.1.2.1.25.6.3.1.2.172|4|openssl-pkcs11-0.4.10-2.el8
+1.3.6.1.2.1.25.6.3.1.2.173|4|openssh-server-8.0p1-5.el8
+1.3.6.1.2.1.25.6.3.1.2.174|4|bind-license-9.11.26-1.el8
+1.3.6.1.2.1.25.6.3.1.2.175|4|coreutils-8.30-8.el8
+1.3.6.1.2.1.25.6.3.1.2.176|4|biosdevname-0.7.3-2.el8
+1.3.6.1.2.1.25.6.3.1.2.177|4|openssl-libs-1.1.1g-12.el8_3
+1.3.6.1.2.1.25.6.3.1.2.178|4|fontpackages-filesystem-1.44-22.el8
+1.3.6.1.2.1.25.6.3.1.2.179|4|langpacks-en-1.0-12.el8
+1.3.6.1.2.1.25.6.3.1.2.180|4|cryptsetup-libs-2.3.3-2.el8
+1.3.6.1.2.1.25.6.3.1.2.181|4|python3-setuptools-wheel-39.2.0-6.el8
+1.3.6.1.2.1.25.6.3.1.2.182|4|container-selinux-2.155.0-1.module_el8.4.0+641+6116a774
+1.3.6.1.2.1.25.6.3.1.2.183|4|libutempter-1.1.6-14.el8
+1.3.6.1.2.1.25.6.3.1.2.184|4|dejavu-fonts-common-2.35-7.el8
+1.3.6.1.2.1.25.6.3.1.2.185|4|grub2-pc-modules-2.02-93.el8
+1.3.6.1.2.1.25.6.3.1.2.186|4|gettext-0.19.8.1-17.el8
+1.3.6.1.2.1.25.6.3.1.2.187|4|libssh-config-0.9.4-2.el8
+1.3.6.1.2.1.25.6.3.1.2.188|4|linux-firmware-20201118-101.git7455a360.el8
+1.3.6.1.2.1.25.6.3.1.2.189|4|trousers-0.3.15-1.el8
+1.3.6.1.2.1.25.6.3.1.2.190|4|dbus-common-1.12.8-12.el8
+1.3.6.1.2.1.25.6.3.1.2.191|4|perl-libnet-3.11-3.el8
+1.3.6.1.2.1.25.6.3.1.2.192|4|polkit-pkla-compat-0.1-12.el8
+1.3.6.1.2.1.25.6.3.1.2.193|4|setup-2.12.2-6.el8
+1.3.6.1.2.1.25.6.3.1.2.194|4|dhcp-common-4.3.6-44.0.1.el8
+1.3.6.1.2.1.25.6.3.1.2.195|4|perl-Mozilla-CA-20160104-7.module_el8.3.0+416+dee7bcef
+1.3.6.1.2.1.25.6.3.1.2.196|4|python3-libselinux-2.9-5.el8
+1.3.6.1.2.1.25.6.3.1.2.197|4|libselinux-2.9-5.el8
+1.3.6.1.2.1.25.6.3.1.2.198|4|plymouth-scripts-0.9.4-8.20200615git1e36e30.el8
+1.3.6.1.2.1.25.6.3.1.2.199|4|perl-Term-ANSIColor-4.06-396.el8
+1.3.6.1.2.1.25.6.3.1.2.200|4|python3-decorator-4.2.1-2.el8
+1.3.6.1.2.1.25.6.3.1.2.201|4|containernetworking-plugins-0.9.0-1.module_el8.4.0+641+6116a774
+1.3.6.1.2.1.25.6.3.1.2.202|4|perl-HTTP-Tiny-0.074-1.el8
+1.3.6.1.2.1.25.6.3.1.2.203|4|libgudev-232-4.el8
+1.3.6.1.2.1.25.6.3.1.2.204|4|xz-libs-5.2.4-3.el8
+1.3.6.1.2.1.25.6.3.1.2.205|4|sqlite-3.26.0-13.el8
+1.3.6.1.2.1.25.6.3.1.2.206|4|perl-Pod-Usage-1.69-395.el8
+1.3.6.1.2.1.25.6.3.1.2.207|4|libcom_err-1.45.6-1.el8
+1.3.6.1.2.1.25.6.3.1.2.208|4|dracut-network-049-133.git20210112.el8
+1.3.6.1.2.1.25.6.3.1.2.209|4|libgpg-error-1.31-1.el8
+1.3.6.1.2.1.25.6.3.1.2.210|4|bind-utils-9.11.26-1.el8
+1.3.6.1.2.1.25.6.3.1.2.211|4|perl-Exporter-5.72-396.el8
+1.3.6.1.2.1.25.6.3.1.2.212|4|grub2-pc-2.02-93.el8
+1.3.6.1.2.1.25.6.3.1.2.213|4|iputils-20180629-6.el8
+1.3.6.1.2.1.25.6.3.1.2.214|4|audit-libs-3.0-0.17.20191104git1c2f876.el8
+1.3.6.1.2.1.25.6.3.1.2.215|4|cockpit-storaged-235-1.el8
+1.3.6.1.2.1.25.6.3.1.2.216|4|libuser-0.62-23.el8
+1.3.6.1.2.1.25.6.3.1.2.217|4|jansson-2.11-3.el8
+1.3.6.1.2.1.25.6.3.1.2.218|4|libblockdev-crypto-2.24-5.el8
+1.3.6.1.2.1.25.6.3.1.2.219|4|perl-threads-shared-1.58-2.el8
+1.3.6.1.2.1.25.6.3.1.2.220|4|iproute-5.9.0-1.el8
+1.3.6.1.2.1.25.6.3.1.2.221|4|nss-util-3.53.1-17.el8_3
+1.3.6.1.2.1.25.6.3.1.2.222|4|libblockdev-part-2.24-5.el8
+1.3.6.1.2.1.25.6.3.1.2.223|4|pkgconf-m4-1.4.2-1.el8
+1.3.6.1.2.1.25.6.3.1.2.224|4|libusbx-1.0.23-4.el8
+1.3.6.1.2.1.25.6.3.1.2.225|4|libtalloc-2.3.1-2.el8
+1.3.6.1.2.1.25.6.3.1.2.226|4|cockpit-ws-235-1.el8
+1.3.6.1.2.1.25.6.3.1.2.227|4|pkgconf-1.4.2-1.el8
+1.3.6.1.2.1.25.6.3.1.2.228|4|libgusb-0.3.0-1.el8
+1.3.6.1.2.1.25.6.3.1.2.229|4|libidn2-2.2.0-1.el8
+1.3.6.1.2.1.25.6.3.1.2.230|4|python3-perf-4.18.0-269.el8
+1.3.6.1.2.1.25.6.3.1.2.231|4|vim-filesystem-8.0.1763-15.el8
+1.3.6.1.2.1.25.6.3.1.2.232|4|python3-unbound-1.7.3-15.el8
+1.3.6.1.2.1.25.6.3.1.2.233|4|rkhunter-1.4.6-6.el8
+1.3.6.1.2.1.25.6.3.1.2.234|4|kernel-modules-4.18.0-259.el8
+1.3.6.1.2.1.25.6.3.1.2.235|4|grep-3.1-6.el8
+1.3.6.1.2.1.25.6.3.1.2.236|4|yum-utils-4.0.18-2.el8
+1.3.6.1.2.1.25.6.3.1.2.237|4|libattr-2.4.48-3.el8
+1.3.6.1.2.1.25.6.3.1.2.238|4|lz4-libs-1.8.3-2.el8
+1.3.6.1.2.1.25.6.3.1.2.239|4|python3-pydbus-0.6.0-5.el8
+1.3.6.1.2.1.25.6.3.1.2.240|4|gdbm-libs-1.18-1.el8
+1.3.6.1.2.1.25.6.3.1.2.241|4|lldpd-1.0.1-2.el8
+1.3.6.1.2.1.25.6.3.1.2.242|4|python3-policycoreutils-2.9-9.el8
+1.3.6.1.2.1.25.6.3.1.2.243|4|libjpeg-turbo-1.5.3-10.el8
+1.3.6.1.2.1.25.6.3.1.2.244|4|libuuid-2.32.1-27.el8
+1.3.6.1.2.1.25.6.3.1.2.245|4|perl-Date-Manip-6.60-2.el8
+1.3.6.1.2.1.25.6.3.1.2.246|4|python3-cairo-1.16.3-6.el8
+1.3.6.1.2.1.25.6.3.1.2.247|4|xz-5.2.4-3.el8
+1.3.6.1.2.1.25.6.3.1.2.248|4|NetworkManager-libnm-1.30.0-0.7.el8
+1.3.6.1.2.1.25.6.3.1.2.249|4|systemd-journal-remote-239-43.el8
+1.3.6.1.2.1.25.6.3.1.2.250|4|gtk-update-icon-cache-3.22.30-6.el8
+1.3.6.1.2.1.25.6.3.1.2.251|4|libwayland-client-1.17.0-1.el8
+1.3.6.1.2.1.25.6.3.1.2.252|4|perl-macros-5.26.3-419.el8
+1.3.6.1.2.1.25.6.3.1.2.253|4|perl-NTLM-1.09-17.module_el8.3.0+416+dee7bcef
+1.3.6.1.2.1.25.6.3.1.2.254|4|python3-pyudev-0.21.0-7.el8
+1.3.6.1.2.1.25.6.3.1.2.255|4|libgomp-8.4.1-1.el8
+1.3.6.1.2.1.25.6.3.1.2.256|4|libfdisk-2.32.1-27.el8
+1.3.6.1.2.1.25.6.3.1.2.257|4|perl-IO-Socket-INET6-2.72-12.el8
+1.3.6.1.2.1.25.6.3.1.2.258|4|at-spi2-core-2.28.0-1.el8
+1.3.6.1.2.1.25.6.3.1.2.259|4|sssd-client-2.4.0-6.el8
+1.3.6.1.2.1.25.6.3.1.2.260|4|gpg-pubkey-5ce2d476-50be41ba
+1.3.6.1.2.1.25.6.3.1.2.261|4|python3-dbus-1.2.4-15.el8
+1.3.6.1.2.1.25.6.3.1.2.262|4|libnfnetlink-1.0.1-13.el8
+1.3.6.1.2.1.25.6.3.1.2.263|4|util-linux-2.32.1-27.el8
+1.3.6.1.2.1.25.6.3.1.2.264|4|ssacli-4.17-6.0
+1.3.6.1.2.1.25.6.3.1.2.265|4|iptables-libs-1.8.4-16.el8
+1.3.6.1.2.1.25.6.3.1.2.266|4|device-mapper-event-1.02.175-1.el8
+1.3.6.1.2.1.25.6.3.1.2.267|4|hp-firmware-hdd-f1eafd9715-HPDA-3.1
+1.3.6.1.2.1.25.6.3.1.2.268|4|harfbuzz-1.7.5-3.el8
+1.3.6.1.2.1.25.6.3.1.2.269|4|sssd-common-2.4.0-6.el8
+1.3.6.1.2.1.25.6.3.1.2.270|4|libhugetlbfs-2.21-17.el8
+1.3.6.1.2.1.25.6.3.1.2.271|4|pciutils-libs-3.7.0-1.el8
+1.3.6.1.2.1.25.6.3.1.2.272|4|autoconf-2.69-28.el8
+1.3.6.1.2.1.25.6.3.1.2.273|4|glibc-common-2.28-145.el8
+1.3.6.1.2.1.25.6.3.1.2.274|4|libnetfilter_conntrack-1.0.6-5.el8
+1.3.6.1.2.1.25.6.3.1.2.275|4|net-snmp-utils-5.8-20.el8
+1.3.6.1.2.1.25.6.3.1.2.276|4|python3-libs-3.6.8-34.el8
+1.3.6.1.2.1.25.6.3.1.2.277|4|libluksmeta-9-4.el8
+1.3.6.1.2.1.25.6.3.1.2.278|4|libwayland-cursor-1.17.0-1.el8
+1.3.6.1.2.1.25.6.3.1.2.279|4|postfix-3.5.8-1.el8
+1.3.6.1.2.1.25.6.3.1.2.280|4|elfutils-libelf-0.182-3.el8
+1.3.6.1.2.1.25.6.3.1.2.281|4|isns-utils-libs-0.99-1.el8
+1.3.6.1.2.1.25.6.3.1.2.282|4|groff-base-1.22.3-18.el8
+1.3.6.1.2.1.25.6.3.1.2.283|4|cpio-2.12-10.el8
+1.3.6.1.2.1.25.6.3.1.2.284|4|python3-syspurpose-1.28.9-1.el8
+1.3.6.1.2.1.25.6.3.1.2.285|4|tpm2-tss-2.3.2-3.el8
+1.3.6.1.2.1.25.6.3.1.2.286|4|python38-setuptools-wheel-41.6.0-4.module_el8.4.0+647+0ba99ce8
+1.3.6.1.2.1.25.6.3.1.2.287|4|ipset-libs-7.1-1.el8
+1.3.6.1.2.1.25.6.3.1.2.288|4|python38-setuptools-41.6.0-4.module_el8.4.0+647+0ba99ce8
+1.3.6.1.2.1.25.6.3.1.2.289|4|python3-pexpect-4.3.1-3.el8
+1.3.6.1.2.1.25.6.3.1.2.290|4|libatasmart-0.19-14.el8
+1.3.6.1.2.1.25.6.3.1.2.291|4|coreutils-common-8.30-8.el8
+1.3.6.1.2.1.25.6.3.1.2.292|4|kernel-doc-4.18.0-269.el8
+1.3.6.1.2.1.25.6.3.1.2.293|4|krb5-libs-1.18.2-8.el8
+1.3.6.1.2.1.25.6.3.1.2.294|4|python3-systemd-234-8.el8
+1.3.6.1.2.1.25.6.3.1.2.295|4|mozjs60-60.9.0-4.el8
+1.3.6.1.2.1.25.6.3.1.2.296|4|nss-3.53.1-17.el8_3
+1.3.6.1.2.1.25.6.3.1.2.297|4|bzip2-1.0.6-26.el8
+1.3.6.1.2.1.25.6.3.1.2.298|4|device-mapper-multipath-libs-0.8.4-7.el8
+1.3.6.1.2.1.25.6.3.1.2.299|4|fribidi-1.0.4-8.el8
+1.3.6.1.2.1.25.6.3.1.2.300|4|elfutils-debuginfod-client-0.182-3.el8
+1.3.6.1.2.1.25.6.3.1.2.301|4|python3-nftables-0.9.3-16.el8
+1.3.6.1.2.1.25.6.3.1.2.302|4|hardlink-1.3-6.el8
+1.3.6.1.2.1.25.6.3.1.2.303|4|lshw-B.02.19.2-4.el8
+1.3.6.1.2.1.25.6.3.1.2.304|4|npth-1.5-4.el8
+1.3.6.1.2.1.25.6.3.1.2.305|4|lcms2-2.9-2.el8
+1.3.6.1.2.1.25.6.3.1.2.306|4|librepo-1.12.0-3.el8
+1.3.6.1.2.1.25.6.3.1.2.307|4|libXext-1.3.4-1.el8
+1.3.6.1.2.1.25.6.3.1.2.308|4|python3-gpg-1.13.1-7.el8
+1.3.6.1.2.1.25.6.3.1.2.309|4|PackageKit-1.1.12-6.el8
+1.3.6.1.2.1.25.6.3.1.2.310|4|libXtst-1.2.3-7.el8
+1.3.6.1.2.1.25.6.3.1.2.311|4|abattis-cantarell-fonts-0.0.25-6.el8
+1.3.6.1.2.1.25.6.3.1.2.312|4|libXinerama-1.1.4-1.el8
+1.3.6.1.2.1.25.6.3.1.2.313|4|perl-TermReadKey-2.37-7.el8
+1.3.6.1.2.1.25.6.3.1.2.314|4|rpm-build-libs-4.14.3-4.el8
+1.3.6.1.2.1.25.6.3.1.2.315|4|libthai-0.1.27-2.el8
+1.3.6.1.2.1.25.6.3.1.2.316|4|libmpc-1.1.0-9.1.el8
+1.3.6.1.2.1.25.6.3.1.2.317|4|python3-dnf-plugins-core-4.0.18-2.el8
+1.3.6.1.2.1.25.6.3.1.2.318|4|libpipeline-1.5.0-2.el8
+1.3.6.1.2.1.25.6.3.1.2.319|4|cpp-8.4.1-1.el8
+1.3.6.1.2.1.25.6.3.1.2.320|4|pcre2-devel-10.32-2.el8
+1.3.6.1.2.1.25.6.3.1.2.321|4|sg3_utils-libs-1.44-5.el8
+1.3.6.1.2.1.25.6.3.1.2.322|4|libvarlink-18-3.el8
+1.3.6.1.2.1.25.6.3.1.2.323|4|libibverbs-32.0-3.el8
+1.3.6.1.2.1.25.6.3.1.2.324|4|libestr-0.1.10-1.el8
+1.3.6.1.2.1.25.6.3.1.2.325|4|lmdb-libs-0.9.24-1.el8
+1.3.6.1.2.1.25.6.3.1.2.326|4|rdma-core-devel-32.0-3.el8
+1.3.6.1.2.1.25.6.3.1.2.327|4|libnet-1.1.6-15.el8
+1.3.6.1.2.1.25.6.3.1.2.328|4|libssh-0.9.4-2.el8
+1.3.6.1.2.1.25.6.3.1.2.329|4|keyutils-libs-devel-1.5.10-6.el8
+1.3.6.1.2.1.25.6.3.1.2.330|4|clevis-luks-15-1.el8
+1.3.6.1.2.1.25.6.3.1.2.331|4|libkcapi-1.2.0-2.el8
+1.3.6.1.2.1.25.6.3.1.2.332|4|libxcrypt-devel-4.1.1-4.el8
+1.3.6.1.2.1.25.6.3.1.2.333|4|curl-7.61.1-17.el8
+1.3.6.1.2.1.25.6.3.1.2.334|4|gtk3-3.22.30-6.el8
+1.3.6.1.2.1.25.6.3.1.2.335|4|crypto-policies-20200713-1.git51d1222.el8
+1.3.6.1.2.1.25.6.3.1.2.336|4|isl-0.16.1-6.el8
+1.3.6.1.2.1.25.6.3.1.2.337|4|rsyslog-8.1911.0-7.el8
+1.3.6.1.2.1.25.6.3.1.2.338|4|cracklib-dicts-2.9.6-15.el8
+1.3.6.1.2.1.25.6.3.1.2.339|4|hwloc-devel-2.2.0-1.el8
+1.3.6.1.2.1.25.6.3.1.2.340|4|dnf-plugins-core-4.0.18-2.el8
+1.3.6.1.2.1.25.6.3.1.2.341|4|libnsl2-1.2.0-2.20180605git4a062cf.el8
+1.3.6.1.2.1.25.6.3.1.2.342|4|python3-setuptools-39.2.0-6.el8
+1.3.6.1.2.1.25.6.3.1.2.343|4|lynx-2.8.9-2.el8
+1.3.6.1.2.1.25.6.3.1.2.344|4|chrony-3.5-1.el8
+1.3.6.1.2.1.25.6.3.1.2.345|4|libcroco-0.6.12-4.el8_2.1
+1.3.6.1.2.1.25.6.3.1.2.346|4|cockpit-bridge-235-1.el8
+1.3.6.1.2.1.25.6.3.1.2.347|4|microcode_ctl-20201112-1.el8
+1.3.6.1.2.1.25.6.3.1.2.348|4|dbus-tools-1.12.8-12.el8
+1.3.6.1.2.1.25.6.3.1.2.349|4|grub2-tools-minimal-2.02-93.el8
+1.3.6.1.2.1.25.6.3.1.2.350|4|iwl6050-firmware-41.28.5.1-101.el8.1
+1.3.6.1.2.1.25.6.3.1.2.351|4|iwl5000-firmware-8.83.5.1_1-101.el8.1
+1.3.6.1.2.1.25.6.3.1.2.352|4|iwl135-firmware-18.168.6.1-101.el8.1
+1.3.6.1.2.1.25.6.3.1.2.353|4|brotli-1.0.6-3.el8
+1.3.6.1.2.1.25.6.3.1.2.354|4|selinux-policy-3.14.3-60.el8
+1.3.6.1.2.1.25.6.3.1.2.355|4|libgcc-8.4.1-1.el8
+1.3.6.1.2.1.25.6.3.1.2.356|4|lsscsi-0.32-2.el8
+1.3.6.1.2.1.25.6.3.1.2.357|4|slirp4netns-1.1.8-1.module_el8.4.0+641+6116a774
+1.3.6.1.2.1.25.6.3.1.2.358|4|grub2-tools-2.02-93.el8
+1.3.6.1.2.1.25.6.3.1.2.359|4|kbd-2.0.4-10.el8
+1.3.6.1.2.1.25.6.3.1.2.360|4|kernel-tools-libs-4.18.0-269.el8
+1.3.6.1.2.1.25.6.3.1.2.361|4|xkeyboard-config-2.28-1.el8
+1.3.6.1.2.1.25.6.3.1.2.362|4|systemd-pam-239-43.el8
+1.3.6.1.2.1.25.6.3.1.2.363|4|python3-ply-3.9-9.el8
+1.3.6.1.2.1.25.6.3.1.2.364|4|gpg-pubkey-8483c65d-5ccc5b19
+1.3.6.1.2.1.25.6.3.1.2.365|4|kernel-core-4.18.0-269.el8
+1.3.6.1.2.1.25.6.3.1.2.366|4|kbd-legacy-2.0.4-10.el8
+1.3.6.1.2.1.25.6.3.1.2.367|4|dbus-1.12.8-12.el8
+1.3.6.1.2.1.25.6.3.1.2.368|4|python3-six-1.11.0-8.el8
+1.3.6.1.2.1.25.6.3.1.2.369|4|perl-Data-Dumper-2.167-399.el8
+1.3.6.1.2.1.25.6.3.1.2.370|4|dnf-data-4.4.2-3.el8
+1.3.6.1.2.1.25.6.3.1.2.371|4|centos-stream-repos-8-2.el8
+1.3.6.1.2.1.25.6.3.1.2.372|4|gdk-pixbuf2-2.36.12-5.el8
+1.3.6.1.2.1.25.6.3.1.2.373|4|perl-Pod-Escapes-1.07-395.el8
+1.3.6.1.2.1.25.6.3.1.2.374|4|bind-export-libs-9.11.26-1.el8
+1.3.6.1.2.1.25.6.3.1.2.375|4|pcre2-10.32-2.el8
+1.3.6.1.2.1.25.6.3.1.2.376|4|json-glib-1.4.4-1.el8
+1.3.6.1.2.1.25.6.3.1.2.377|4|perl-IO-Socket-SSL-2.066-4.module_el8.4.0+517+be1595ff
+1.3.6.1.2.1.25.6.3.1.2.378|4|plymouth-0.9.4-8.20200615git1e36e30.el8
+1.3.6.1.2.1.25.6.3.1.2.379|4|python3-dateutil-2.6.1-6.el8
+1.3.6.1.2.1.25.6.3.1.2.380|4|perl-Pod-Simple-3.35-395.el8
+1.3.6.1.2.1.25.6.3.1.2.381|4|conmon-2.0.22-3.module_el8.4.0+641+6116a774
+1.3.6.1.2.1.25.6.3.1.2.382|4|zlib-1.2.11-17.el8
+1.3.6.1.2.1.25.6.3.1.2.383|4|libsolv-0.7.16-1.el8
+1.3.6.1.2.1.25.6.3.1.2.384|4|perl-Text-ParseWords-3.30-395.el8
+1.3.6.1.2.1.25.6.3.1.2.385|4|dnf-4.4.2-3.el8
+1.3.6.1.2.1.25.6.3.1.2.386|4|bzip2-libs-1.0.6-26.el8
+1.3.6.1.2.1.25.6.3.1.2.387|4|python3-libxml2-2.9.7-9.el8
+1.3.6.1.2.1.25.6.3.1.2.388|4|perl-Getopt-Long-2.50-4.el8
+1.3.6.1.2.1.25.6.3.1.2.389|4|libcap-2.26-4.el8
+1.3.6.1.2.1.25.6.3.1.2.390|4|cairo-gobject-1.15.12-3.el8
+1.3.6.1.2.1.25.6.3.1.2.391|4|perl-Carp-1.42-396.el8
+1.3.6.1.2.1.25.6.3.1.2.392|4|libblockdev-mdraid-2.24-5.el8
+1.3.6.1.2.1.25.6.3.1.2.393|4|readline-7.0-10.el8
+1.3.6.1.2.1.25.6.3.1.2.394|4|cronie-1.5.2-4.el8
+1.3.6.1.2.1.25.6.3.1.2.395|4|perl-parent-0.237-1.el8
+1.3.6.1.2.1.25.6.3.1.2.396|4|libcap-ng-0.7.9-5.el8
+1.3.6.1.2.1.25.6.3.1.2.397|4|perl-File-Path-2.15-2.el8
+1.3.6.1.2.1.25.6.3.1.2.398|4|gmp-6.1.2-10.el8
+1.3.6.1.2.1.25.6.3.1.2.399|4|openssh-8.0p1-5.el8
+1.3.6.1.2.1.25.6.3.1.2.400|4|perl-threads-2.21-2.el8
+1.3.6.1.2.1.25.6.3.1.2.401|4|nspr-4.25.0-2.el8_2
+1.3.6.1.2.1.25.6.3.1.2.402|4|ima-evm-utils-1.1-5.el8
+1.3.6.1.2.1.25.6.3.1.2.403|4|libnl3-3.5.0-1.el8
+1.3.6.1.2.1.25.6.3.1.2.404|4|logrotate-3.14.0-4.el8
+1.3.6.1.2.1.25.6.3.1.2.405|4|libpkgconf-1.4.2-1.el8
+1.3.6.1.2.1.25.6.3.1.2.406|4|libunistring-0.9.9-3.el8
+1.3.6.1.2.1.25.6.3.1.2.407|4|colord-libs-1.4.2-1.el8
+1.3.6.1.2.1.25.6.3.1.2.408|4|wget-1.19.5-10.el8
+1.3.6.1.2.1.25.6.3.1.2.409|4|freetype-2.9.1-5.el8
+1.3.6.1.2.1.25.6.3.1.2.410|4|passwd-0.80-3.el8
+1.3.6.1.2.1.25.6.3.1.2.411|4|vim-enhanced-8.0.1763-15.el8
+1.3.6.1.2.1.25.6.3.1.2.412|4|pcre-8.42-4.el8
+1.3.6.1.2.1.25.6.3.1.2.413|4|python3-dmidecode-3.12.2-15.el8
+1.3.6.1.2.1.25.6.3.1.2.414|4|screen-4.6.2-10.el8
+1.3.6.1.2.1.25.6.3.1.2.415|4|libaio-0.3.112-1.el8
+1.3.6.1.2.1.25.6.3.1.2.416|4|mlocate-0.26-20.el8
+1.3.6.1.2.1.25.6.3.1.2.417|4|mariadb-connector-c-3.1.11-2.el8_3
+1.3.6.1.2.1.25.6.3.1.2.418|4|libtevent-0.10.2-2.el8
+1.3.6.1.2.1.25.6.3.1.2.419|4|PackageKit-glib-1.1.12-6.el8
+1.3.6.1.2.1.25.6.3.1.2.420|4|libcollection-0.7.0-39.el8
+1.3.6.1.2.1.25.6.3.1.2.421|4|policycoreutils-python-utils-2.9-9.el8
+1.3.6.1.2.1.25.6.3.1.2.422|4|perl-Sys-CPU-0.61-14.el8
+1.3.6.1.2.1.25.6.3.1.2.423|4|libblkid-2.32.1-27.el8
+1.3.6.1.2.1.25.6.3.1.2.424|4|device-mapper-persistent-data-0.8.5-4.el8
+1.3.6.1.2.1.25.6.3.1.2.425|4|python3-gobject-3.28.3-2.el8
+1.3.6.1.2.1.25.6.3.1.2.426|4|NetworkManager-1.30.0-0.7.el8
+1.3.6.1.2.1.25.6.3.1.2.427|4|libnftnl-1.1.5-4.el8
+1.3.6.1.2.1.25.6.3.1.2.428|4|timedatex-0.5-3.el8
+1.3.6.1.2.1.25.6.3.1.2.429|4|perl-Digest-HMAC-1.03-17.module_el8.3.0+416+dee7bcef
+1.3.6.1.2.1.25.6.3.1.2.430|4|perl-interpreter-5.26.3-419.el8
+1.3.6.1.2.1.25.6.3.1.2.431|4|diffutils-3.6-6.el8
+1.3.6.1.2.1.25.6.3.1.2.432|4|authselect-libs-1.2.2-1.el8
+1.3.6.1.2.1.25.6.3.1.2.433|4|perl-Socket6-0.28-6.el8
+1.3.6.1.2.1.25.6.3.1.2.434|4|libmount-2.32.1-27.el8
+1.3.6.1.2.1.25.6.3.1.2.435|4|libselinux-utils-2.9-5.el8
+1.3.6.1.2.1.25.6.3.1.2.436|4|at-spi2-atk-2.26.2-1.el8
+1.3.6.1.2.1.25.6.3.1.2.437|4|swaks-20181104.0-5.el8
+1.3.6.1.2.1.25.6.3.1.2.438|4|libsss_certmap-2.4.0-6.el8
+1.3.6.1.2.1.25.6.3.1.2.439|4|libedit-3.1-23.20170329cvs.el8
+1.3.6.1.2.1.25.6.3.1.2.440|4|python3-slip-dbus-0.6.4-11.el8
+1.3.6.1.2.1.25.6.3.1.2.441|4|ssa-4.17-6.0
+1.3.6.1.2.1.25.6.3.1.2.442|4|device-mapper-libs-1.02.175-1.el8
+1.3.6.1.2.1.25.6.3.1.2.443|4|libsoup-2.62.3-2.el8
+1.3.6.1.2.1.25.6.3.1.2.444|4|hp-firmware-hdd-815e5e101b-HPD8-2.1
+1.3.6.1.2.1.25.6.3.1.2.445|4|lvm2-libs-2.03.11-1.el8
+1.3.6.1.2.1.25.6.3.1.2.446|4|libtasn1-4.13-3.el8
+1.3.6.1.2.1.25.6.3.1.2.447|4|pango-1.42.4-6.el8
+1.3.6.1.2.1.25.6.3.1.2.448|4|epel-release-8-10.el8
+1.3.6.1.2.1.25.6.3.1.2.449|4|kmod-25-17.el8
+1.3.6.1.2.1.25.6.3.1.2.450|4|numactl-libs-2.0.12-11.el8
+1.3.6.1.2.1.25.6.3.1.2.451|4|libslirp-4.3.1-1.module_el8.4.0+575+63b40ad7
+1.3.6.1.2.1.25.6.3.1.2.452|4|net-snmp-5.8-20.el8
+1.3.6.1.2.1.25.6.3.1.2.453|4|squashfs-tools-4.3-19.el8
+1.3.6.1.2.1.25.6.3.1.2.454|4|platform-python-3.6.8-34.el8
+1.3.6.1.2.1.25.6.3.1.2.455|4|tzdata-2021a-1.el8
+1.3.6.1.2.1.25.6.3.1.2.456|4|libbytesize-1.4-3.el8
+1.3.6.1.2.1.25.6.3.1.2.457|4|luksmeta-9-4.el8
+1.3.6.1.2.1.25.6.3.1.2.458|4|libpcap-1.9.1-5.el8
+1.3.6.1.2.1.25.6.3.1.2.459|4|gdbm-1.18-1.el8
+1.3.6.1.2.1.25.6.3.1.2.460|4|iscsi-initiator-utils-iscsiuio-6.2.1.2-0.gita8fcb37.el8
+1.3.6.1.2.1.25.6.3.1.2.461|4|centos-logos-82.0-2.el8
+1.3.6.1.2.1.25.6.3.1.2.462|4|vim-minimal-8.0.1763-15.el8
+1.3.6.1.2.1.25.6.3.1.2.463|4|tpm2-tools-4.1.1-2.el8
+1.3.6.1.2.1.25.6.3.1.2.464|4|python38-pip-wheel-19.3.1-1.module_el8.4.0+647+0ba99ce8
+1.3.6.1.2.1.25.6.3.1.2.465|4|nss-softokn-3.53.1-17.el8_3
+1.3.6.1.2.1.25.6.3.1.2.466|4|python3-ptyprocess-0.5.2-4.el8
+1.3.6.1.2.1.25.6.3.1.2.467|4|python38-pip-19.3.1-1.module_el8.4.0+647+0ba99ce8
+1.3.6.1.2.1.25.6.3.1.2.468|4|libmetalink-0.1.3-7.el8
+1.3.6.1.2.1.25.6.3.1.2.469|4|gpgme-1.13.1-7.el8
+1.3.6.1.2.1.25.6.3.1.2.470|4|libproxy-0.4.15-5.2.el8
+1.3.6.1.2.1.25.6.3.1.2.471|4|hicolor-icon-theme-0.17-2.el8
+1.3.6.1.2.1.25.6.3.1.2.472|4|libss-1.45.6-1.el8
+1.3.6.1.2.1.25.6.3.1.2.473|4|avahi-libs-0.7-20.el8
+1.3.6.1.2.1.25.6.3.1.2.474|4|less-530-1.el8
+1.3.6.1.2.1.25.6.3.1.2.475|4|python3-subscription-manager-rhsm-1.28.9-1.el8
+1.3.6.1.2.1.25.6.3.1.2.476|4|dosfstools-4.1-6.el8
+1.3.6.1.2.1.25.6.3.1.2.477|4|python3-ethtool-0.14-3.el8
+1.3.6.1.2.1.25.6.3.1.2.478|4|elfutils-libs-0.182-3.el8
+1.3.6.1.2.1.25.6.3.1.2.479|4|fuse3-libs-3.2.1-12.el8
+1.3.6.1.2.1.25.6.3.1.2.480|4|python3-firewall-0.8.2-3.el8
+1.3.6.1.2.1.25.6.3.1.2.481|4|libtiff-4.0.9-18.el8
+1.3.6.1.2.1.25.6.3.1.2.482|4|gnupg2-smime-2.2.20-2.el8
+1.3.6.1.2.1.25.6.3.1.2.483|4|device-mapper-multipath-0.8.4-7.el8
+1.3.6.1.2.1.25.6.3.1.2.484|4|libX11-1.6.8-4.el8
+1.3.6.1.2.1.25.6.3.1.2.485|4|libdnf-0.55.0-1.el8
+1.3.6.1.2.1.25.6.3.1.2.486|4|tuned-2.15.0-1.el8
+1.3.6.1.2.1.25.6.3.1.2.487|4|libXi-1.7.10-1.el8
+1.3.6.1.2.1.25.6.3.1.2.488|4|python3-librepo-1.12.0-3.el8
+1.3.6.1.2.1.25.6.3.1.2.489|4|libXrandr-1.5.2-1.el8
+1.3.6.1.2.1.25.6.3.1.2.490|4|udisks2-2.9.0-5.el8
+1.3.6.1.2.1.25.6.3.1.2.491|4|emacs-filesystem-26.1-5.el8
+1.3.6.1.2.1.25.6.3.1.2.492|4|libdatrie-0.2.9-7.el8
+1.3.6.1.2.1.25.6.3.1.2.493|4|python3-rpm-4.14.3-4.el8
+1.3.6.1.2.1.25.6.3.1.2.494|4|git-2.27.0-1.el8
+1.3.6.1.2.1.25.6.3.1.2.495|4|libnghttp2-1.33.0-3.el8_2.1
+1.3.6.1.2.1.25.6.3.1.2.496|4|setroubleshoot-plugins-3.3.13-1.el8
+1.3.6.1.2.1.25.6.3.1.2.497|4|cmake-filesystem-3.18.2-8.el8
+1.3.6.1.2.1.25.6.3.1.2.498|4|pcre2-utf16-10.32-2.el8
+1.3.6.1.2.1.25.6.3.1.2.499|4|libsysfs-2.1.0-24.el8
+1.3.6.1.2.1.25.6.3.1.2.500|4|slang-2.3.2-3.el8
+1.3.6.1.2.1.25.6.3.1.2.501|4|libibumad-32.0-3.el8
+1.3.6.1.2.1.25.6.3.1.2.502|4|libyaml-0.1.7-5.el8
+1.3.6.1.2.1.25.6.3.1.2.503|4|libfastjson-0.99.8-2.el8
+1.3.6.1.2.1.25.6.3.1.2.504|4|infiniband-diags-32.0-3.el8
+1.3.6.1.2.1.25.6.3.1.2.505|4|cyrus-sasl-lib-2.1.27-5.el8
+1.3.6.1.2.1.25.6.3.1.2.506|4|libverto-devel-0.3.0-5.el8
+1.3.6.1.2.1.25.6.3.1.2.507|4|oniguruma-6.8.2-2.el8
+1.3.6.1.2.1.25.6.3.1.2.508|4|libcom_err-devel-1.45.6-1.el8
+1.3.6.1.2.1.25.6.3.1.2.509|4|grubby-8.40-41.el8
+1.3.6.1.2.1.25.6.3.1.2.510|4|protobuf-c-1.3.0-4.el8
+1.3.6.1.2.1.25.6.3.1.2.511|4|glibc-headers-2.28-145.el8
+1.3.6.1.2.1.25.6.3.1.2.512|4|libdb-utils-5.3.28-40.el8
+1.3.6.1.2.1.25.6.3.1.2.513|4|perl-Thread-Queue-3.13-1.el8
+1.3.6.1.2.1.25.6.3.1.2.514|4|crypto-policies-scripts-20200713-1.git51d1222.el8
+1.3.6.1.2.1.25.6.3.1.2.515|4|cmake-3.18.2-8.el8
+1.3.6.1.2.1.25.6.3.1.2.516|4|cracklib-2.9.6-15.el8
+1.3.6.1.2.1.25.6.3.1.2.517|4|libtool-2.4.6-25.el8
+1.3.6.1.2.1.25.6.3.1.2.518|4|libtirpc-1.1.4-4.el8
+1.3.6.1.2.1.25.6.3.1.2.519|4|make-4.2.1-10.el8
+1.3.6.1.2.1.25.6.3.1.2.520|4|centos-indexhtml-8.0-0.el8
+1.3.6.1.2.1.25.6.3.1.2.521|4|gettext-libs-0.19.8.1-17.el8
+1.3.6.1.2.1.25.6.3.1.2.522|4|kernel-4.18.0-259.el8
+1.3.6.1.2.1.25.6.3.1.2.523|4|grub2-common-2.02-93.el8
+1.3.6.1.2.1.25.6.3.1.2.524|4|dbus-libs-1.12.8-12.el8
+1.3.6.1.2.1.25.6.3.1.2.525|4|rng-tools-6.8-3.el8
+1.3.6.1.2.1.25.6.3.1.2.526|4|cockpit-system-235-1.el8
+1.3.6.1.2.1.25.6.3.1.2.527|4|prefixdevname-0.1.0-6.el8
+1.3.6.1.2.1.25.6.3.1.2.528|4|p11-kit-trust-0.23.22-1.el8
+1.3.6.1.2.1.25.6.3.1.2.529|4|cockpit-packagekit-235-1.el8
+1.3.6.1.2.1.25.6.3.1.2.530|4|libblockdev-fs-2.24-5.el8
+1.3.6.1.2.1.25.6.3.1.2.531|4|libblockdev-swap-2.24-5.el8
+1.3.6.1.2.1.25.6.3.1.2.532|4|crontabs-1.11-17.20190603git.el8
+1.3.6.1.2.1.25.6.3.1.2.533|4|python3-linux-procfs-0.6.3-1.el8
+1.3.6.1.2.1.25.6.3.1.2.534|4|iwl6000g2a-firmware-18.168.6.1-101.el8.1
+1.3.6.1.2.1.25.6.3.1.2.535|4|iwl3160-firmware-25.30.13.0-101.el8.1
+1.3.6.1.2.1.25.6.3.1.2.536|4|iwl105-firmware-18.168.6.1-101.el8.1
+1.3.6.1.2.1.25.6.3.1.2.537|4|gpm-libs-1.20.7-17.el8
+1.3.6.1.2.1.25.6.3.1.2.538|4|dracut-049-133.git20210112.el8
+1.3.6.1.2.1.25.6.3.1.2.539|4|hostname-3.20-6.el8
+1.3.6.1.2.1.25.6.3.1.2.540|4|geolite2-city-20180605-1.el8
+1.3.6.1.2.1.25.6.3.1.2.541|4|containers-common-1.2.1-3.module_el8.4.0+641+6116a774
+1.3.6.1.2.1.25.6.3.1.2.542|4|trousers-lib-0.3.15-1.el8
+1.3.6.1.2.1.25.6.3.1.2.543|4|libsepol-2.9-2.el8
+1.3.6.1.2.1.25.6.3.1.2.544|4|kbd-misc-2.0.4-10.el8
+1.3.6.1.2.1.25.6.3.1.2.545|4|kernel-modules-4.18.0-269.el8
+1.3.6.1.2.1.25.6.3.1.2.546|4|systemd-239-43.el8
+1.3.6.1.2.1.25.6.3.1.2.547|4|perl-Digest-MD5-2.55-396.el8
+1.3.6.1.2.1.25.6.3.1.2.548|4|centos-stream-release-8.4-1.el8
+1.3.6.1.2.1.25.6.3.1.2.549|4|python3-dnf-4.4.2-3.el8
+1.3.6.1.2.1.25.6.3.1.2.550|4|fontconfig-2.13.1-3.el8
+1.3.6.1.2.1.25.6.3.1.2.551|4|perl-Time-Local-1.280-1.el8
+1.3.6.1.2.1.25.6.3.1.2.552|4|criu-3.15-1.module_el8.4.0+641+6116a774
+1.3.6.1.2.1.25.6.3.1.2.553|4|gobject-introspection-1.56.1-1.el8
+1.3.6.1.2.1.25.6.3.1.2.554|4|perl-Pod-Perldoc-3.28-396.el8
+1.3.6.1.2.1.25.6.3.1.2.555|4|yum-4.4.2-3.el8
+1.3.6.1.2.1.25.6.3.1.2.556|4|rpm-plugin-selinux-4.14.3-4.el8
+1.3.6.1.2.1.25.6.3.1.2.557|4|perl-Encode-2.97-3.el8
+1.3.6.1.2.1.25.6.3.1.2.558|4|libxcrypt-4.1.1-4.el8
+1.3.6.1.2.1.25.6.3.1.2.559|4|libsepol-devel-2.9-2.el8
+1.3.6.1.2.1.25.6.3.1.2.560|4|cronie-anacron-1.5.2-4.el8
+1.3.6.1.2.1.25.6.3.1.2.561|4|perl-Unicode-Normalize-1.25-396.el8
+1.3.6.1.2.1.25.6.3.1.2.562|4|chkconfig-1.13-2.el8
+1.3.6.1.2.1.25.6.3.1.2.563|4|grub2-tools-efi-2.02-93.el8
+1.3.6.1.2.1.25.6.3.1.2.564|4|virt-what-1.18-6.el8
+1.3.6.1.2.1.25.6.3.1.2.565|4|libgcrypt-1.8.5-4.el8
+1.3.6.1.2.1.25.6.3.1.2.566|4|automake-1.16.1-7.el8
+1.3.6.1.2.1.25.6.3.1.2.567|4|python3-audit-3.0-0.17.20191104git1c2f876.el8
+1.3.6.1.2.1.25.6.3.1.2.568|4|libpng-1.6.34-5.el8
+1.3.6.1.2.1.25.6.3.1.2.569|4|kernel-headers-4.18.0-269.el8
+1.3.6.1.2.1.25.6.3.1.2.570|4|usermode-1.113-1.el8
+1.3.6.1.2.1.25.6.3.1.2.571|4|file-libs-5.33-16.el8
+1.3.6.1.2.1.25.6.3.1.2.572|4|iwl2030-firmware-18.168.6.1-101.el8.1
+1.3.6.1.2.1.25.6.3.1.2.573|4|mariadb-connector-c-config-3.1.11-2.el8_3
+1.3.6.1.2.1.25.6.3.1.2.574|4|file-5.33-16.el8
+1.3.6.1.2.1.25.6.3.1.2.575|4|python3-libsemanage-2.9-4.el8
+1.3.6.1.2.1.25.6.3.1.2.576|4|perl-Sys-MemInfo-0.99-6.el8
+1.3.6.1.2.1.25.6.3.1.2.577|4|libtdb-1.4.3-1.el8
+1.3.6.1.2.1.25.6.3.1.2.578|4|perl-libs-5.26.3-419.el8
+1.3.6.1.2.1.25.6.3.1.2.579|4|libXft-2.3.3-1.el8
+1.3.6.1.2.1.25.6.3.1.2.580|4|perl-Digest-SHA-6.02-1.el8
+1.3.6.1.2.1.25.6.3.1.2.581|4|nettle-3.4.1-2.el8
+1.3.6.1.2.1.25.6.3.1.2.582|4|perl-Errno-1.28-419.el8
+1.3.6.1.2.1.25.6.3.1.2.583|4|perl-Authen-SASL-2.16-13.el8
+1.3.6.1.2.1.25.6.3.1.2.584|4|libdhash-0.5.0-39.el8
+1.3.6.1.2.1.25.6.3.1.2.585|4|libsss_autofs-2.4.0-6.el8
+1.3.6.1.2.1.25.6.3.1.2.586|4|gsettings-desktop-schemas-3.32.0-5.el8
+1.3.6.1.2.1.25.6.3.1.2.587|4|hp-firmware-hdd-fdfb5070cf-HPDG-3.1
+1.3.6.1.2.1.25.6.3.1.2.588|4|libnfsidmap-2.3.3-41.el8
+1.3.6.1.2.1.25.6.3.1.2.589|4|libsecret-0.18.6-1.el8
+1.3.6.1.2.1.25.6.3.1.2.590|4|numactl-2.0.12-11.el8
+1.3.6.1.2.1.25.6.3.1.2.591|4|userspace-rcu-0.10.1-2.el8
+1.3.6.1.2.1.25.6.3.1.2.592|4|NetworkManager-team-1.30.0-0.7.el8
+1.3.6.1.2.1.25.6.3.1.2.593|4|jasper-libs-2.0.14-4.el8
+1.3.6.1.2.1.25.6.3.1.2.594|4|kmod-libs-25-17.el8
+1.3.6.1.2.1.25.6.3.1.2.595|4|iscsi-initiator-utils-6.2.1.2-0.gita8fcb37.el8
+1.3.6.1.2.1.25.6.3.1.2.596|4|nss-softokn-freebl-3.53.1-17.el8_3
+1.3.6.1.2.1.25.6.3.1.2.597|4|python38-libs-3.8.6-2.module_el8.4.0+647+0ba99ce8
+1.3.6.1.2.1.25.6.3.1.2.598|4|e2fsprogs-1.45.6-1.el8
+1.3.6.1.2.1.25.6.3.1.2.599|4|libmodman-2.0.1-17.el8
+1.3.6.1.2.1.25.6.3.1.2.600|4|elfutils-default-yama-scope-0.182-3.el8
+1.3.6.1.2.1.25.6.3.1.2.601|4|fuse3-3.2.1-12.el8
+1.3.6.1.2.1.25.6.3.1.2.602|4|subscription-manager-1.28.9-1.el8
+1.3.6.1.2.1.25.6.3.1.2.603|4|libxcb-1.13.1-1.el8
+1.3.6.1.2.1.25.6.3.1.2.604|4|python3-libdnf-0.55.0-1.el8
+1.3.6.1.2.1.25.6.3.1.2.605|4|libXdamage-1.1.4-14.el8
+1.3.6.1.2.1.25.6.3.1.2.606|4|udisks2-iscsi-2.9.0-5.el8
+1.3.6.1.2.1.25.6.3.1.2.607|4|perl-Git-2.27.0-1.el8
+1.3.6.1.2.1.25.6.3.1.2.608|4|libndp-1.7-3.el8
+1.3.6.1.2.1.25.6.3.1.2.609|4|setroubleshoot-server-3.3.24-1.el8
+1.3.6.1.2.1.25.6.3.1.2.610|4|pcre2-utf32-10.32-2.el8
+1.3.6.1.2.1.25.6.3.1.2.611|4|libstemmer-0-10.585svn.el8
+1.3.6.1.2.1.25.6.3.1.2.612|4|newt-0.52.20-11.el8
+1.3.6.1.2.1.25.6.3.1.2.613|4|librdmacm-32.0-3.el8
+1.3.6.1.2.1.25.6.3.1.2.614|4|ncurses-6.1-7.20180224.el8
+1.3.6.1.2.1.25.6.3.1.2.615|4|libkadm5-1.18.2-8.el8
+1.3.6.1.2.1.25.6.3.1.2.616|4|hwloc-libs-2.2.0-1.el8
+1.3.6.1.2.1.25.6.3.1.2.617|4|openssl-1.1.1g-12.el8_3
+1.3.6.1.2.1.25.6.3.1.2.618|4|gcc-c++-8.4.1-1.el8
+1.3.6.1.2.1.25.6.3.1.2.619|4|rpm-4.14.3-4.el8
+1.3.6.1.2.1.25.6.3.1.2.620|4|openssh-clients-8.0p1-5.el8
+1.3.6.1.2.1.25.6.3.1.2.621|4|bind-libs-lite-9.11.26-1.el8
+1.3.6.1.2.1.25.6.3.1.2.622|4|systemd-libs-239-43.el8
+1.3.6.1.2.1.25.6.3.1.2.623|4|man-db-2.7.6.1-17.el8
+1.3.6.1.2.1.25.6.3.1.2.624|4|p11-kit-0.23.22-1.el8
+1.3.6.1.2.1.25.6.3.1.2.625|4|rpm-libs-4.14.3-4.el8
+1.3.6.1.2.1.25.6.3.1.2.626|4|rootfiles-8.1-22.el8
+1.3.6.1.2.1.25.6.3.1.2.627|4|bind-libs-9.11.26-1.el8
+1.3.6.1.2.1.25.6.3.1.2.628|4|pam-1.3.1-14.el8
+1.3.6.1.2.1.25.6.3.1.2.629|4|publicsuffix-list-dafsa-20180723-1.el8
+1.3.6.1.2.1.25.6.3.1.2.630|4|platform-python-pip-9.0.3-19.el8
+1.3.6.1.2.1.25.6.3.1.2.631|4|shared-mime-info-1.9-3.el8
+1.3.6.1.2.1.25.6.3.1.2.632|4|gpg-pubkey-2f86d6a1-5cf7cefb
+1.3.6.1.2.1.25.6.3.1.2.633|4|fuse-common-3.2.1-12.el8
+1.3.6.1.2.1.25.6.3.1.2.634|4|polkit-0.115-11.el8
+1.3.6.1.2.1.25.6.3.1.2.635|4|perl-Net-SSLeay-1.88-1.module_el8.4.0+517+be1595ff
+1.3.6.1.2.1.25.6.3.1.2.636|4|filesystem-3.8-4.el8
+1.3.6.1.2.1.25.6.3.1.2.637|4|plymouth-core-libs-0.9.4-8.20200615git1e36e30.el8
+1.3.6.1.2.1.25.6.3.1.2.638|4|policycoreutils-2.9-9.el8
+1.3.6.1.2.1.25.6.3.1.2.639|4|perl-Term-Cap-1.17-395.el8
+1.3.6.1.2.1.25.6.3.1.2.640|4|podman-3.0.0-0.21.module_el8.4.0+641+6116a774
+1.3.6.1.2.1.25.6.3.1.2.641|4|parted-3.2-38.el8
+1.3.6.1.2.1.25.6.3.1.2.642|4|perl-MIME-Base64-3.15-396.el8
+1.3.6.1.2.1.25.6.3.1.2.643|4|libstdc++-8.4.1-1.el8
+1.3.6.1.2.1.25.6.3.1.2.644|4|python3-pip-9.0.3-19.el8
+1.3.6.1.2.1.25.6.3.1.2.645|4|kernel-core-4.18.0-259.el8
+1.3.6.1.2.1.25.6.3.1.2.646|4|sqlite-libs-3.26.0-13.el8
+1.3.6.1.2.1.25.6.3.1.2.647|4|dracut-squash-049-133.git20210112.el8
+1.3.6.1.2.1.25.6.3.1.2.648|4|atk-2.28.1-1.el8
+1.3.6.1.2.1.25.6.3.1.2.649|4|perl-PathTools-3.74-1.el8
+1.3.6.1.2.1.25.6.3.1.2.650|4|libffi-3.1-22.el8
+1.3.6.1.2.1.25.6.3.1.2.651|4|libblockdev-lvm-2.24-5.el8
+1.3.6.1.2.1.25.6.3.1.2.652|4|libjose-10-2.el8
+1.3.6.1.2.1.25.6.3.1.2.653|4|mailx-12.5-29.el8
+1.3.6.1.2.1.25.6.3.1.2.654|4|lua-libs-5.3.4-11.el8
+1.3.6.1.2.1.25.6.3.1.2.655|4|python3-pip-wheel-9.0.3-19.el8
+1.3.6.1.2.1.25.6.3.1.2.656|4|unbound-libs-1.7.3-15.el8
+1.3.6.1.2.1.25.6.3.1.2.657|4|vim-common-8.0.1763-15.el8
+1.3.6.1.2.1.25.6.3.1.2.658|4|json-c-0.13.1-0.3.el8
+1.3.6.1.2.1.25.6.3.1.2.659|4|iwl5150-firmware-8.24.2.2-101.el8.1
+1.3.6.1.2.1.25.6.3.1.2.660|4|net-tools-2.0-0.52.20160912git.el8
+1.3.6.1.2.1.25.6.3.1.2.661|4|libacl-2.2.53-1.el8
+1.3.6.1.2.1.25.6.3.1.2.662|4|iwl100-firmware-39.31.5.1-101.el8.1
+1.3.6.1.2.1.25.6.3.1.2.663|4|keyutils-libs-1.5.10-6.el8
+1.3.6.1.2.1.25.6.3.1.2.664|4|python3-slip-0.6.4-11.el8
+1.3.6.1.2.1.25.6.3.1.2.665|4|libmicrohttpd-0.9.59-2.el8
+1.3.6.1.2.1.25.6.3.1.2.666|4|libnl3-cli-3.5.0-1.el8
+1.3.6.1.2.1.25.6.3.1.2.667|4|net-snmp-agent-libs-5.8-20.el8
+1.3.6.1.2.1.25.6.3.1.2.668|4|perl-Net-DNS-1.15-1.el8
+1.3.6.1.2.1.25.6.3.1.2.669|4|libksba-1.3.5-7.el8
+1.3.6.1.2.1.25.6.3.1.2.670|4|libsss_nss_idmap-2.4.0-6.el8
+1.3.6.1.2.1.25.6.3.1.2.671|4|dbus-glib-0.110-2.el8
+1.3.6.1.2.1.25.6.3.1.2.672|4|gpg-pubkey-b1275ea3-546d1808
+1.3.6.1.2.1.25.6.3.1.2.673|4|libpath_utils-0.2.1-39.el8
+1.3.6.1.2.1.25.6.3.1.2.674|4|device-mapper-event-libs-1.02.175-1.el8
+1.3.6.1.2.1.25.6.3.1.2.675|4|rest-0.8.1-2.el8
+1.3.6.1.2.1.25.6.3.1.2.676|4|hp-firmware-hdd-b94f345c05-HPDE-2.1
+1.3.6.1.2.1.25.6.3.1.2.677|4|libxkbcommon-0.9.1-1.el8
+1.3.6.1.2.1.25.6.3.1.2.678|4|sssd-kcm-2.4.0-6.el8
+1.3.6.1.2.1.25.6.3.1.2.679|4|libudisks2-2.9.0-5.el8
+1.3.6.1.2.1.25.6.3.1.2.680|4|glibc-langpack-en-2.28-145.el8
+1.3.6.1.2.1.25.6.3.1.2.681|4|iptables-1.8.4-16.el8
+1.3.6.1.2.1.25.6.3.1.2.682|4|sos-4.0-6.el8
+1.3.6.1.2.1.25.6.3.1.2.683|4|gnutls-3.6.14-7.el8_3
+1.3.6.1.2.1.25.6.3.1.2.684|4|acl-2.2.53-1.el8
+1.3.6.1.2.1.25.6.3.1.2.685|4|lm_sensors-3.4.0-22.20180522git70f7e08.el8
+1.3.6.1.2.1.25.6.3.1.2.686|4|ipset-7.1-1.el8
+1.3.6.1.2.1.25.6.3.1.2.687|4|strace-5.7-2.el8
+1.3.6.1.2.1.25.6.3.1.2.688|4|snappy-1.1.8-3.el8
+1.3.6.1.2.1.25.6.3.1.2.689|4|teamd-1.31-2.el8
+1.3.6.1.2.1.25.6.3.1.2.690|4|kpartx-0.8.4-7.el8
+1.3.6.1.2.1.25.6.3.1.2.691|4|c-ares-1.13.0-5.el8
+1.3.6.1.2.1.25.6.3.1.2.692|4|python3-libcomps-0.1.11-4.el8
+1.3.6.1.2.1.25.6.3.1.2.693|4|hdparm-9.54-3.el8
+1.3.6.1.2.1.25.6.3.1.2.694|4|libXrender-0.9.10-7.el8
+1.3.6.1.2.1.25.6.3.1.2.695|4|volume_key-libs-0.3.11-5.el8
+1.3.6.1.2.1.25.6.3.1.2.696|4|git-core-2.27.0-1.el8
+1.3.6.1.2.1.25.6.3.1.2.697|4|libXcomposite-0.4.4-14.el8
+1.3.6.1.2.1.25.6.3.1.2.698|4|libstdc++-devel-8.4.1-1.el8
+1.3.6.1.2.1.25.6.3.1.2.699|4|libsigsegv-2.11-5.el8
+1.3.6.1.2.1.25.6.3.1.2.700|4|pciutils-3.7.0-1.el8
+1.3.6.1.2.1.25.6.3.1.2.701|4|libverto-0.3.0-5.el8
+1.3.6.1.2.1.25.6.3.1.2.702|4|ipcalc-0.2.4-4.el8
+1.3.6.1.2.1.25.6.3.1.2.703|4|m4-1.4.18-7.el8
+1.3.6.1.2.1.25.6.3.1.2.704|4|platform-python-setuptools-39.2.0-6.el8
+1.3.6.1.2.1.25.6.3.1.2.705|4|clevis-15-1.el8
+1.3.6.1.2.1.25.6.3.1.2.706|4|krb5-devel-1.18.2-8.el8
+1.3.6.1.2.1.25.6.3.1.2.707|4|libkcapi-hmaccalc-1.2.0-2.el8
+1.3.6.1.2.1.25.6.3.1.2.708|4|adwaita-icon-theme-3.28.0-2.el8
+1.3.6.1.2.1.25.6.3.1.2.709|4|libuv-1.38.0-2.el8
+1.3.6.1.2.1.25.6.3.1.2.710|4|openssl-devel-1.1.1g-12.el8_3
+1.3.6.1.2.1.25.6.3.1.2.711|4|authselect-1.2.2-1.el8
+1.3.6.1.2.1.25.6.3.1.2.712|4|bash-4.4.19-14.el8
+1.3.6.1.2.1.25.6.3.1.2.713|4|fuse-overlayfs-1.3.0-1.module_el8.4.0+641+6116a774
+1.3.6.1.2.1.25.6.3.1.2.714|4|shadow-utils-4.6-12.el8
+1.3.6.1.2.1.31.1.1.1.1.1|4|lo
+1.3.6.1.2.1.31.1.1.1.1.2|4|enp2s0f0
+1.3.6.1.2.1.31.1.1.1.1.3|4|enp2s0f1
+1.3.6.1.2.1.31.1.1.1.1.4|4|enp3s0f0
+1.3.6.1.2.1.31.1.1.1.1.5|4|enp3s0f1
+1.3.6.1.2.1.31.1.1.1.2.1|65|0
+1.3.6.1.2.1.31.1.1.1.2.2|65|98401
+1.3.6.1.2.1.31.1.1.1.2.3|65|0
+1.3.6.1.2.1.31.1.1.1.2.4|65|0
+1.3.6.1.2.1.31.1.1.1.2.5|65|0
+1.3.6.1.2.1.31.1.1.1.3.1|65|0
+1.3.6.1.2.1.31.1.1.1.3.2|65|0
+1.3.6.1.2.1.31.1.1.1.3.3|65|0
+1.3.6.1.2.1.31.1.1.1.3.4|65|0
+1.3.6.1.2.1.31.1.1.1.3.5|65|0
+1.3.6.1.2.1.31.1.1.1.4.1|65|0
+1.3.6.1.2.1.31.1.1.1.4.2|65|0
+1.3.6.1.2.1.31.1.1.1.4.3|65|0
+1.3.6.1.2.1.31.1.1.1.4.4|65|0
+1.3.6.1.2.1.31.1.1.1.4.5|65|0
+1.3.6.1.2.1.31.1.1.1.5.1|65|0
+1.3.6.1.2.1.31.1.1.1.5.2|65|0
+1.3.6.1.2.1.31.1.1.1.5.3|65|0
+1.3.6.1.2.1.31.1.1.1.5.4|65|0
+1.3.6.1.2.1.31.1.1.1.5.5|65|0
+1.3.6.1.2.1.31.1.1.1.6.1|70|22777971
+1.3.6.1.2.1.31.1.1.1.6.2|70|8801181784
+1.3.6.1.2.1.31.1.1.1.6.3|70|0
+1.3.6.1.2.1.31.1.1.1.6.4|70|0
+1.3.6.1.2.1.31.1.1.1.6.5|70|0
+1.3.6.1.2.1.31.1.1.1.7.1|70|55866
+1.3.6.1.2.1.31.1.1.1.7.2|70|9680404
+1.3.6.1.2.1.31.1.1.1.7.3|70|0
+1.3.6.1.2.1.31.1.1.1.7.4|70|0
+1.3.6.1.2.1.31.1.1.1.7.5|70|0
+1.3.6.1.2.1.31.1.1.1.8.1|70|0
+1.3.6.1.2.1.31.1.1.1.8.2|70|98401
+1.3.6.1.2.1.31.1.1.1.8.3|70|0
+1.3.6.1.2.1.31.1.1.1.8.4|70|0
+1.3.6.1.2.1.31.1.1.1.8.5|70|0
+1.3.6.1.2.1.31.1.1.1.9.1|70|0
+1.3.6.1.2.1.31.1.1.1.9.2|70|0
+1.3.6.1.2.1.31.1.1.1.9.3|70|0
+1.3.6.1.2.1.31.1.1.1.9.4|70|0
+1.3.6.1.2.1.31.1.1.1.9.5|70|0
+1.3.6.1.2.1.31.1.1.1.10.1|70|22777971
+1.3.6.1.2.1.31.1.1.1.10.2|70|1845597471
+1.3.6.1.2.1.31.1.1.1.10.3|70|0
+1.3.6.1.2.1.31.1.1.1.10.4|70|0
+1.3.6.1.2.1.31.1.1.1.10.5|70|0
+1.3.6.1.2.1.31.1.1.1.11.1|70|55866
+1.3.6.1.2.1.31.1.1.1.11.2|70|3938991
+1.3.6.1.2.1.31.1.1.1.11.3|70|0
+1.3.6.1.2.1.31.1.1.1.11.4|70|0
+1.3.6.1.2.1.31.1.1.1.11.5|70|0
+1.3.6.1.2.1.31.1.1.1.12.1|70|0
+1.3.6.1.2.1.31.1.1.1.12.2|70|0
+1.3.6.1.2.1.31.1.1.1.12.3|70|0
+1.3.6.1.2.1.31.1.1.1.12.4|70|0
+1.3.6.1.2.1.31.1.1.1.12.5|70|0
+1.3.6.1.2.1.31.1.1.1.13.1|70|0
+1.3.6.1.2.1.31.1.1.1.13.2|70|0
+1.3.6.1.2.1.31.1.1.1.13.3|70|0
+1.3.6.1.2.1.31.1.1.1.13.4|70|0
+1.3.6.1.2.1.31.1.1.1.13.5|70|0
+1.3.6.1.2.1.31.1.1.1.15.1|66|10
+1.3.6.1.2.1.31.1.1.1.15.2|66|1000
+1.3.6.1.2.1.31.1.1.1.15.3|66|0
+1.3.6.1.2.1.31.1.1.1.15.4|66|0
+1.3.6.1.2.1.31.1.1.1.15.5|66|0
+1.3.6.1.2.1.31.1.1.1.16.1|2|2
+1.3.6.1.2.1.31.1.1.1.16.2|2|2
+1.3.6.1.2.1.31.1.1.1.16.3|2|2
+1.3.6.1.2.1.31.1.1.1.16.4|2|2
+1.3.6.1.2.1.31.1.1.1.16.5|2|2
+1.3.6.1.2.1.31.1.1.1.17.1|2|2
+1.3.6.1.2.1.31.1.1.1.17.2|2|1
+1.3.6.1.2.1.31.1.1.1.17.3|2|1
+1.3.6.1.2.1.31.1.1.1.17.4|2|1
+1.3.6.1.2.1.31.1.1.1.17.5|2|1
+1.3.6.1.2.1.31.1.1.1.18.1|4|
+1.3.6.1.2.1.31.1.1.1.18.2|4|
+1.3.6.1.2.1.31.1.1.1.18.3|4|
+1.3.6.1.2.1.31.1.1.1.18.4|4|
+1.3.6.1.2.1.31.1.1.1.18.5|4|
+1.3.6.1.2.1.31.1.1.1.19.1|67|0
+1.3.6.1.2.1.31.1.1.1.19.2|67|0
+1.3.6.1.2.1.31.1.1.1.19.3|67|0
+1.3.6.1.2.1.31.1.1.1.19.4|67|0
+1.3.6.1.2.1.31.1.1.1.19.5|67|0
+1.3.6.1.4.1.2021.10.1.5.1|2|1250
+1.3.6.1.4.1.2021.10.1.5.2|2|1277
+1.3.6.1.4.1.2021.10.1.5.3|2|1280
+1.3.6.1.4.1.2021.11.1.0|2|1
+1.3.6.1.4.1.2021.11.2.0|4|systemStats
+1.3.6.1.4.1.2021.11.3.0|2|0
+1.3.6.1.4.1.2021.11.4.0|2|0
+1.3.6.1.4.1.2021.11.5.0|2|114
+1.3.6.1.4.1.2021.11.6.0|2|0
+1.3.6.1.4.1.2021.11.7.0|2|12384
+1.3.6.1.4.1.2021.11.8.0|2|542
+1.3.6.1.4.1.2021.11.9.0|2|50
+1.3.6.1.4.1.2021.11.10.0|2|0
+1.3.6.1.4.1.2021.11.11.0|2|48
+1.3.6.1.4.1.2021.11.50.0|65|1809226167
+1.3.6.1.4.1.2021.11.51.0|65|246120
+1.3.6.1.4.1.2021.11.52.0|65|3246553
+1.3.6.1.4.1.2021.11.53.0|65|2292995295
+1.3.6.1.4.1.2021.11.54.0|65|644324
+1.3.6.1.4.1.2021.11.55.0|65|0
+1.3.6.1.4.1.2021.11.56.0|65|12144010
+1.3.6.1.4.1.2021.11.57.0|65|48589644
+1.3.6.1.4.1.2021.11.58.0|65|8470206
+1.3.6.1.4.1.2021.11.59.0|65|2606967300
+1.3.6.1.4.1.2021.11.60.0|65|308899509
+1.3.6.1.4.1.2021.11.61.0|65|2819288
+1.3.6.1.4.1.2021.11.62.0|65|0
+1.3.6.1.4.1.2021.11.63.0|65|0
+1.3.6.1.4.1.2021.11.64.0|65|0
+1.3.6.1.4.1.2021.11.65.0|65|0
+1.3.6.1.4.1.2021.11.66.0|65|0
+1.3.6.1.4.1.2021.11.67.0|2|24
+1.3.6.1.4.1.2021.13.15.1.1.1.1|2|1
+1.3.6.1.4.1.2021.13.15.1.1.1.2|2|2
+1.3.6.1.4.1.2021.13.15.1.1.1.3|2|3
+1.3.6.1.4.1.2021.13.15.1.1.1.4|2|4
+1.3.6.1.4.1.2021.13.15.1.1.1.5|2|5
+1.3.6.1.4.1.2021.13.15.1.1.1.6|2|6
+1.3.6.1.4.1.2021.13.15.1.1.1.7|2|7
+1.3.6.1.4.1.2021.13.15.1.1.2.1|4|sda
+1.3.6.1.4.1.2021.13.15.1.1.2.2|4|sda1
+1.3.6.1.4.1.2021.13.15.1.1.2.3|4|sda2
+1.3.6.1.4.1.2021.13.15.1.1.2.4|4|dm-0
+1.3.6.1.4.1.2021.13.15.1.1.2.5|4|dm-1
+1.3.6.1.4.1.2021.13.15.1.1.2.6|4|dm-2
+1.3.6.1.4.1.2021.13.15.1.1.2.7|4|loop0
+1.3.6.1.4.1.2021.13.15.1.1.3.1|65|39588352
+1.3.6.1.4.1.2021.13.15.1.1.3.2|65|42484224
+1.3.6.1.4.1.2021.13.15.1.1.3.3|65|4289245184
+1.3.6.1.4.1.2021.13.15.1.1.3.4|65|2246327808
+1.3.6.1.4.1.2021.13.15.1.1.3.5|65|2273280
+1.3.6.1.4.1.2021.13.15.1.1.3.6|65|2031526400
+1.3.6.1.4.1.2021.13.15.1.1.3.7|65|2190336
+1.3.6.1.4.1.2021.13.15.1.1.4.1|65|3403107840
+1.3.6.1.4.1.2021.13.15.1.1.4.2|65|76929536
+1.3.6.1.4.1.2021.13.15.1.1.4.3|65|3326178304
+1.3.6.1.4.1.2021.13.15.1.1.4.4|65|2260895232
+1.3.6.1.4.1.2021.13.15.1.1.4.5|65|0
+1.3.6.1.4.1.2021.13.15.1.1.4.6|65|1065283072
+1.3.6.1.4.1.2021.13.15.1.1.4.7|65|0
+1.3.6.1.4.1.2021.13.15.1.1.5.1|65|403656
+1.3.6.1.4.1.2021.13.15.1.1.5.2|65|2179
+1.3.6.1.4.1.2021.13.15.1.1.5.3|65|401384
+1.3.6.1.4.1.2021.13.15.1.1.5.4|65|21752
+1.3.6.1.4.1.2021.13.15.1.1.5.5|65|98
+1.3.6.1.4.1.2021.13.15.1.1.5.6|65|379763
+1.3.6.1.4.1.2021.13.15.1.1.5.7|65|114
+1.3.6.1.4.1.2021.13.15.1.1.6.1|65|2499903
+1.3.6.1.4.1.2021.13.15.1.1.6.2|65|184
+1.3.6.1.4.1.2021.13.15.1.1.6.3|65|2499719
+1.3.6.1.4.1.2021.13.15.1.1.6.4|65|2372159
+1.3.6.1.4.1.2021.13.15.1.1.6.5|65|0
+1.3.6.1.4.1.2021.13.15.1.1.6.6|65|252004
+1.3.6.1.4.1.2021.13.15.1.1.6.7|65|0
+1.3.6.1.4.1.2021.13.15.1.1.9.1|2|1
+1.3.6.1.4.1.2021.13.15.1.1.9.2|2|0
+1.3.6.1.4.1.2021.13.15.1.1.9.3|2|1
+1.3.6.1.4.1.2021.13.15.1.1.9.4|2|1
+1.3.6.1.4.1.2021.13.15.1.1.9.5|2|0
+1.3.6.1.4.1.2021.13.15.1.1.9.6|2|0
+1.3.6.1.4.1.2021.13.15.1.1.9.7|2|0
+1.3.6.1.4.1.2021.13.15.1.1.10.1|2|2
+1.3.6.1.4.1.2021.13.15.1.1.10.2|2|0
+1.3.6.1.4.1.2021.13.15.1.1.10.3|2|2
+1.3.6.1.4.1.2021.13.15.1.1.10.4|2|2
+1.3.6.1.4.1.2021.13.15.1.1.10.5|2|0
+1.3.6.1.4.1.2021.13.15.1.1.10.6|2|0
+1.3.6.1.4.1.2021.13.15.1.1.10.7|2|0
+1.3.6.1.4.1.2021.13.15.1.1.11.1|2|2
+1.3.6.1.4.1.2021.13.15.1.1.11.2|2|0
+1.3.6.1.4.1.2021.13.15.1.1.11.3|2|2
+1.3.6.1.4.1.2021.13.15.1.1.11.4|2|2
+1.3.6.1.4.1.2021.13.15.1.1.11.5|2|0
+1.3.6.1.4.1.2021.13.15.1.1.11.6|2|0
+1.3.6.1.4.1.2021.13.15.1.1.11.7|2|0
+1.3.6.1.4.1.2021.13.15.1.1.12.1|70|4334555648
+1.3.6.1.4.1.2021.13.15.1.1.12.2|70|42484224
+1.3.6.1.4.1.2021.13.15.1.1.12.3|70|4289245184
+1.3.6.1.4.1.2021.13.15.1.1.12.4|70|2246327808
+1.3.6.1.4.1.2021.13.15.1.1.12.5|70|2273280
+1.3.6.1.4.1.2021.13.15.1.1.12.6|70|2031526400
+1.3.6.1.4.1.2021.13.15.1.1.12.7|70|2190336
+1.3.6.1.4.1.2021.13.15.1.1.13.1|70|24877944320
+1.3.6.1.4.1.2021.13.15.1.1.13.2|70|76929536
+1.3.6.1.4.1.2021.13.15.1.1.13.3|70|24801014784
+1.3.6.1.4.1.2021.13.15.1.1.13.4|70|23735731712
+1.3.6.1.4.1.2021.13.15.1.1.13.5|70|0
+1.3.6.1.4.1.2021.13.15.1.1.13.6|70|1065283072
+1.3.6.1.4.1.2021.13.15.1.1.13.7|70|0
+1.3.6.1.4.1.2021.13.15.1.1.14.1|70|11852834000
+1.3.6.1.4.1.2021.13.15.1.1.14.2|70|2651000
+1.3.6.1.4.1.2021.13.15.1.1.14.3|70|11850636000
+1.3.6.1.4.1.2021.13.15.1.1.14.4|70|9871356000
+1.3.6.1.4.1.2021.13.15.1.1.14.5|70|149000
+1.3.6.1.4.1.2021.13.15.1.1.14.6|70|2018371000
+1.3.6.1.4.1.2021.13.15.1.1.14.7|70|19000
+1.3.6.1.4.1.2021.13.16.2.1.2.1|4|temp1
+1.3.6.1.4.1.2021.13.16.2.1.3.1|66|8300
+1.3.6.1.4.1.8072.1.3.2.2.1.21.5.120.109.114.105.103|2|1
+1.3.6.1.4.1.8072.1.3.2.2.1.21.8.112.111.119.101.114.109.111.110|2|1
+1.3.6.1.4.1.8072.1.3.2.3.1.2.8.112.111.119.101.114.109.111.110|4|{"version": 1.3, "error": 0, "errorString": "", "data": {"meter": {"1": {"reading": 340.0}}, "psu": {"1": {"present": "Yes", "redundant": "No", "condition": "Ok", "hotplug": "Supported", "reading": 320.0}, "2": {"present": "Yes", "redundant": "No", "condition": "FAILED", "hotplug": "Supported"}}, "supply": {"rate": 0.224931}, "reading": 340.0}}
+1.3.6.1.6.3.10.2.1.3.0|2|433033