Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorContinuous Integration <ci@zabbix.com>2021-11-22 11:54:17 +0300
committerContinuous Integration <ci@zabbix.com>2021-11-22 11:54:17 +0300
commit1fdf0ec1f9f901793b8f2f85ddd07af571c9a93a (patch)
treed4fdfae4b38986daf119df4cb76667b99fc158d8
parent6e265de8c73d9b767316f56a710babdd5579963e (diff)
.......... [ZBXNEXT-826] automatic deployment of official Zabbix templates and media types5.4.8rc1
-rw-r--r--create/src/data.tmpl4
-rw-r--r--create/src/templates.tmpl9157
2 files changed, 4585 insertions, 4576 deletions
diff --git a/create/src/data.tmpl b/create/src/data.tmpl
index f3eb400717c..314a3596585 100644
--- a/create/src/data.tmpl
+++ b/create/src/data.tmpl
@@ -66,14 +66,14 @@ ROW |5 |4 |Mattermost | | |
ROW |6 |4 |Opsgenie | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var Media = {&eol; params: {},&eol; name: '',&eol; labels: [],&eol; HTTPProxy: '',&eol;&eol; setParams: function (params) {&eol; if (typeof params !== 'object') {&eol; return;&eol; }&eol;&eol; Media.params = params;&eol; Media.params.api += Media.params.api.endsWith('/') ? '' : '/';&eol; Media.params.web += Media.params.web.endsWith('/') ? '' : '/';&eol; },&eol;&eol; setProxy: function (HTTPProxy) {&eol; if (typeof HTTPProxy !== 'undefined' && HTTPProxy.trim() !== '') {&eol; Media.HTTPProxy = HTTPProxy;&eol; }&eol; },&eol;&eol; setTags: function(event_tags_json) {&eol; if (typeof event_tags_json !== 'undefined' && event_tags_json !== ''&eol; && event_tags_json !== '{EVENT.TAGSJSON}') {&eol;&eol; try {&eol; var tags = JSON.parse(event_tags_json),&eol; label;&eol;&eol; tags.forEach(function (tag) {&eol; if (typeof tag.tag === 'string') {&eol; label = (tag.tag + (typeof tag.value !== 'undefined'&eol; && tag.value !== '' ? (':' + tag.value) : '')).replace(/\s/g, '_');&eol; Media.labels.push(label);&eol; }&eol; });&eol; }&eol; catch (error) {&eol; Zabbix.log(4, '[ ' + Media.name + ' Webhook ] Failed to parse "event_tags_json" param');&eol; }&eol; }&eol; },&eol;&eol; request: function (method, query, data, allow_404) {&eol; if (typeof(allow_404) === 'undefined') {&eol; allow_404 = false;&eol; }&eol;&eol; ['api', 'token'].forEach(function (field) {&eol; if (typeof Media.params !== 'object' &pipe;&pipe; typeof Media.params[field] === 'undefined'&eol; &pipe;&pipe; Media.params[field] === '') {&eol; throw 'Required ' + Media.name + ' param is not set: "' + field + '".';&eol; }&eol; });&eol;&eol; var response,&eol; url = Media.params.api + query,&eol; request = new HttpRequest();&eol;&eol; request.addHeader('Content-Type: application/json');&eol; request.addHeader('Authorization: ' + Media.params.token);&eol; request.setProxy(Media.HTTPProxy);&eol;&eol; if (typeof data !== 'undefined') {&eol; data = JSON.stringify(data);&eol; }&eol;&eol; Zabbix.log(4, '[ ' + Media.name + ' Webhook ] Sending request: ' +&eol; url + ((typeof data === 'string') ? ('\n' + data) : ''));&eol;&eol; switch (method) {&eol; case 'get':&eol; response = request.get(url, data);&eol; break;&eol;&eol; case 'post':&eol; response = request.post(url, data);&eol; break;&eol;&eol; case 'put':&eol; response = request.put(url, data);&eol; break;&eol;&eol; default:&eol; throw 'Unsupported HTTP request method: ' + method;&eol; }&eol;&eol; Zabbix.log(4, '[ ' + Media.name + ' Webhook ] Received response with status code ' +&eol; request.getStatus() + '\n' + response);&eol;&eol; if (response !== null) {&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; Zabbix.log(4, '[ ' + Media.name + ' Webhook ] Failed to parse response.');&eol; response = null;&eol; }&eol; }&eol;&eol; if ((request.getStatus() < 200 &pipe;&pipe; request.getStatus() >= 300)&eol; && (!allow_404 &pipe;&pipe; request.getStatus() !== 404)) {&eol; var message = 'Request failed with status code ' + request.getStatus();&eol;&eol; if (response !== null) {&eol; if (typeof response.errors === 'object' && Object.keys(response.errors).length > 0) {&eol; message += ': ' + JSON.stringify(response.errors);&eol; }&eol; else if (typeof response.errorMessages === 'object' && Object.keys(response.errorMessages).length > 0) {&eol; message += ': ' + JSON.stringify(response.errorMessages);&eol; }&eol; else if (typeof response.message === 'string') {&eol; message += ': ' + response.message;&eol; }&eol; }&eol;&eol; throw message + ' Check debug log for more information.';&eol; }&eol;&eol; return {&eol; status: request.getStatus(),&eol; response: response&eol; };&eol; },&eol;&eol; getAlertId: function (requestId) {&eol; do {&eol; resp = Media.request('get', 'requests/' + requestId, undefined, true);&eol; }&eol; while (typeof resp.response !== 'object' &pipe;&pipe; typeof resp.response.data === 'undefined'&eol; &pipe;&pipe; resp.response.data.success === false);&eol;&eol; if (typeof resp.response !== 'object' &pipe;&pipe; typeof resp.response.data === 'undefined') {&eol; throw 'Cannot get ' + Media.name + ' issue ID. Check debug log for more information.';&eol; }&eol;&eol; return resp;&eol; }&eol;};&eol;&eol;try {&eol; var result = {tags: {}},&eol; params = JSON.parse(value),&eol; media = {},&eol; fields = {},&eol; resp = {},&eol; responders = [],&eol; tags = [],&eol; required_params = [&eol; 'alert_subject',&eol; 'alert_message',&eol; 'event_id',&eol; 'event_source',&eol; 'event_value',&eol; 'event_update_status',&eol; 'opsgenie_api',&eol; 'opsgenie_web',&eol; 'opsgenie_token'&eol; ],&eol; severities = [&eol; 'not_classified',&eol; 'information',&eol; 'warning',&eol; 'average',&eol; 'high',&eol; 'disaster',&eol; 'resolved',&eol; 'default'&eol; ],&eol; priority;&eol;&eol; Object.keys(params)&eol; .forEach(function (key) {&eol; if (required_params.indexOf(key) !== -1 && params[key].trim() === '') {&eol; throw 'Parameter "' + key + '" cannot be empty.';&eol; }&eol; if (key.startsWith('opsgenie_')) {&eol; media[key.substring(9)] = params[key];&eol; }&eol; });&eol;&eol; // Possible values of event_source:&eol; // 0 - Trigger, 1 - Discovery, 2 - Autoregistration, 3 - Internal.&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: "' + params.event_source + '".\nMust be 0-3.';&eol; }&eol;&eol; // Check event_value for trigger-based and internal events.&eol; // Possible values: 1 for problem, 0 for recovering&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; // Check event_update_status only for trigger-based events.&eol; // Possible values: 0 - Webhook was called because of problem/recovery event, 1 - Update operation.&eol; if (params.event_source === '0' && params.event_update_status !== '0' && params.event_update_status !== '1') {&eol; throw 'Incorrect "event_update_status" parameter given: ' + params.event_update_status + '\nMust be 0 or 1.';&eol; }&eol;&eol; // Check event_id for a numeric value.&eol; if (isNaN(parseInt(params.event_id)) &pipe;&pipe; params.event_id < 1) {&eol; throw 'Incorrect "event_id" parameter given: ' + params.event_id + '\nMust be a positive number.';&eol; }&eol;&eol; if ((params.event_source === '1' &pipe;&pipe; params.event_source === '2') && params.event_value === '0') {&eol; throw 'Recovery operations are supported only for Trigger and Internal actions.';&eol; }&eol;&eol; if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) {&eol; params.event_nseverity = '7';&eol; }&eol;&eol; if (params.event_value === '0') {&eol; params.event_nseverity = '6';&eol; }&eol;&eol; priority = params['severity_' + severities[params.event_nseverity]];&eol; params.zbxurl = params.zbxurl + (params.zbxurl.endsWith('/') ? '' : '/');&eol;&eol; Media.name = 'Opsgenie';&eol; Media.setParams(media);&eol; Media.params.token = 'GenieKey ' + Media.params.token;&eol; Media.setProxy(params.HTTPProxy);&eol; Media.setTags(params.event_tags_json); // Set Media.labels&eol;&eol; // Create an issue.&eol; // Numeric value of the event that triggered an action (1 for problem, 0 for recovering).&eol; // Numeric value of of the problem update status. Possible values:&eol; // 0 - Webhook was called because of problem/recovery event, 1 - Update operation.&eol; if ((params.event_source == 0 && params.event_value == 1 && params.event_update_status == 0)&eol; &pipe;&pipe; (params.event_source == 3 && params.event_value == 1)&eol; &pipe;&pipe; params.event_source == 1 &pipe;&pipe; params.event_source == 2) {&eol; fields.message = params.alert_subject;&eol; fields.alias = params.event_id;&eol; fields.description = params.alert_message;&eol; fields.priority = priority;&eol; fields.source = 'Zabbix';&eol;&eol; if (params.event_source === '0') {&eol; fields.details = {&eol; 'Zabbix server': params.zbxurl,&eol; Problem: params.zbxurl + 'tr_events.php?triggerid=' + params.trigger_id + '&eventid=' + params.event_id&eol; };&eol; }&eol; else {&eol; fields.details = {'Zabbix server': params.zbxurl};&eol; }&eol;&eol; if (typeof params.opsgenie_teams === 'string') {&eol; responders = params.opsgenie_teams.split(',');&eol; fields.responders = responders.map(function(team) {&eol; return {type: 'team', name: team.trim()};&eol; });&eol; }&eol;&eol; fields.tags = Media.labels;&eol; if (typeof params.opsgenie_tags === 'string') {&eol; tags = params.opsgenie_tags.split(',');&eol; tags.forEach(function(item) {&eol; fields.tags.push(item.trim());&eol; });&eol; }&eol;&eol; resp = Media.request('post', '', fields);&eol; if (typeof resp.response !== 'object' &pipe;&pipe; typeof resp.response.result === 'undefined') {&eol; throw 'Cannot create ' + Media.name + ' issue. Check debug log for more information.';&eol; }&eol;&eol; if (resp.status === 202) {&eol; resp = Media.getAlertId(resp.response.requestId);&eol; if (params.event_source == 0 && params.event_value == 1 && params.event_update_status == 0) {&eol; result.tags.__zbx_ops_issuekey = resp.response.data.alertId;&eol; result.tags.__zbx_ops_issuelink = Media.params.web + 'alert/detail/' + resp.response.data.alertId;&eol; }&eol; }&eol; else {&eol; throw Media.name + ' response code is unexpected. Check debug log for more information.';&eol; }&eol; }&eol; // Update a created issue.&eol; else {&eol; fields.user = (params.event_value != 0) ? params.zbxuser : '';&eol; fields.note = params.alert_message;&eol;&eol; resp = Media.request('post', params.event_id + '/notes?identifierType=alias', fields);&eol; if (typeof resp.response !== 'object' &pipe;&pipe; typeof resp.response.result === 'undefined') {&eol; throw 'Cannot update ' + Media.name + ' issue. Check debug log for more information.';&eol; }&eol;&eol; if (resp.status === 202) {&eol; resp = Media.getAlertId(resp.response.requestId);&eol; }&eol; else {&eol; throw Media.name + ' response code is unexpected. Check debug log for more information.';&eol; }&eol; }&eol;&eol; return JSON.stringify(result);&eol;}&eol;catch (error) {&eol; Zabbix.log(3, '[ ' + Media.name + ' Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__zbx_ops_issuelink} |Opsgenie: {EVENT.TAGS.__zbx_ops_issuekey} |Please refer to https://docs.opsgenie.com/docs/alert-api and https://www.zabbix.com/documentation/5.4/manual/config/notifications/media/webhook#example_scripts.&eol; &eol;Set global macro {$ZABBIX.URL} with your Zabbix server URL.&eol;Add dedicated user with media type "Opsgenie".&eol;Change the values of the variables opsgenie_api (https://api.opsgenie.com/v2/alerts or https://api.eu.opsgenie.com/v2/alerts),&eol;opsgenie_web (for example, https://myzabbix.app.opsgenie.com), opsgenie_token. |
ROW |7 |4 |PagerDuty | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |try {&eol;&eol; var params = JSON.parse(value),&eol; req = new HttpRequest(),&eol; fields = {},&eol; resp = '';&eol;&eol; // Correspondence between the PagerDuty and Zabbix severity level&eol; var severityMapping = [&eol; 'info', // Not classified&eol; 'info', // Information&eol; 'warning', // Warning&eol; 'warning', // Average&eol; 'error', // High&eol; 'critical' // Disaster&eol; ];&eol;&eol; if (!severityMapping[params.severity]) {&eol; params.severity = '0';&eol; }&eol;&eol; if (typeof params.HTTPProxy === 'string' && params.HTTPProxy.trim() !== '') {&eol; req.setProxy(params.HTTPProxy);&eol; }&eol;&eol; if (isNaN(parseInt(params.eventid)) &pipe;&pipe; params.eventid < 1) {&eol; throw 'incorrect value for variable "eventid". The value must be a positive number.';&eol; }&eol; if (params.eventname.length < 1) {&eol; throw 'incorrect value for variable "eventname". The value must be a non-empty string.';&eol; }&eol; if (isNaN(parseInt(params.severity)) &pipe;&pipe; (params.severity < 0 && params.severity > 5)) {&eol; throw 'incorrect value for variable "severity". The value must be a number 0..5.';&eol; }&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: "' + params.event_source + '".\nMust be 0-3.';&eol; }&eol; // Check {EVENT.VALUE} for trigger-based and internal events.&eol; if (params.eventvalue !== '0' && params.eventvalue !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "eventvalue" parameter given: "' + params.eventvalue + '".\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_source === '0') {&eol; if (params.hostname.length < 1) {&eol; throw 'incorrect value for variable "hostname". The value must be a non-empty string.';&eol; }&eol; if (isNaN(parseInt(params.triggerid)) &pipe;&pipe; params.triggerid < 1) {&eol; throw 'incorrect value for variable "triggerid". The value must be a positive number.';&eol; }&eol; if (params.eventack != 'Yes' && params.eventack != 'No') {&eol; throw 'incorrect value for variable "eventack". The value must be Yes or No.';&eol; }&eol; if (isNaN(parseInt(params.eventupdate)) &pipe;&pipe; (params.eventupdate < 0 &pipe;&pipe; params.eventupdate > 1)) {&eol; throw 'incorrect value for variable "eventupdate". The value must be 0 or 1.';&eol; }&eol; }&eol;&eol;&eol;&eol; req.addHeader('Content-Type: application/json');&eol;&eol; fields.routing_key = params.token;&eol; fields.dedup_key = params.eventid;&eol;&eol; if (((params.eventvalue == 1) && (params.eventupdate == 0)) &pipe;&pipe; params.event_source !== '0') {&eol; fields.event_action = 'trigger';&eol; fields.payload = {&eol; summary: params.eventname,&eol; source: (params.event_source === '1') ? 'Discovery' : params.hostname + ' : ' + params.hostip,&eol; severity: severityMapping[params.severity],&eol; };&eol; &eol; if (params.event_source === '0') {&eol; fields.payload.custom_details = {&eol; 'Event date': params.eventdate,&eol; 'Event time': params.eventtime,&eol; 'Trigger description': params.triggerdesc,&eol; 'Trigger opdata': params.triggeropdata,&eol; 'Event tags': params.eventtags,&eol; 'Event host': params.hostname,&eol; 'Event host ip': params.hostip&eol; };&eol; fields.links = [{&eol; href: params.url + '/tr_events.php?triggerid=' + params.triggerid + '&eventid=' + params.eventid,&eol; text: 'Event link'&eol; }];&eol; }&eol; else {&eol; fields.payload.custom_details = {&eol; 'Alert message': params.alert_message&eol; };&eol; }&eol;&eol; fields.client = 'Zabbix';&eol; fields.client_url = params.url;&eol; }&eol; else if ((params.eventvalue == 1) && (params.eventupdate == 1) && (params.eventack == 'Yes'))&eol; fields.event_action = 'acknowledge';&eol; else if (params.eventvalue == 0)&eol; fields.event_action = 'resolve';&eol; else&eol; throw 'incorrect values. Update message without ack will not be sent.';&eol;&eol; Zabbix.log(4, '[PagerDuty Webhook] Sending request:' + JSON.stringify(fields));&eol; resp = req.post('https://events.pagerduty.com/v2/enqueue',&eol; JSON.stringify(fields)&eol; );&eol; Zabbix.log(4, '[PagerDuty Webhook] Receiving response:' + resp);&eol;&eol; try {&eol; resp = JSON.parse(resp);&eol; }&eol; catch (error) {&eol; throw 'incorrect response. PagerDuty returned a non-JSON object.';&eol; }&eol;&eol; if (req.getStatus() != 202) {&eol; if (typeof resp === 'object' && typeof resp.errors === 'object' && typeof resp.errors[0] === 'string') {&eol; throw resp.errors[0];&eol; }&eol; else {&eol; throw 'Unknown error.';&eol; }&eol; }&eol;&eol; if (resp.status != 'success') {&eol; throw 'Unknown error.';&eol; }&eol;&eol; return 'OK';&eol;}&eol;catch (error) {&eol; Zabbix.log(3, '[PagerDuty Webhook] Notification failed : ' + error);&eol; throw 'PagerDuty notification failed : ' + error;&eol;}|30s |0 |0 | | |Please refer to https://v2.developer.pagerduty.com/docs/send-an-event-events-api-v2 and https://www.zabbix.com/documentation/5.4/manual/config/notifications/media/webhook#example_scripts.&eol; &eol;Set global macro {$ZABBIX.URL} with your Zabbix server URL.&eol;Add a dedicated user with the media type "PagerDuty" and place the integration key in the "token" parameter to integrate into the service. |
ROW |8 |4 |Pushover | | | | | | | |0 |25 |0 |0 |0 |0 | |0 |3 |10s |1 |try {&eol; var params = JSON.parse(value),&eol; request = new HttpRequest(),&eol; data,&eol; response,&eol; severities = [&eol; {name: 'not_classified', color: '#97AAB3'},&eol; {name: 'information', color: '#7499FF'},&eol; {name: 'warning', color: '#FFC859'},&eol; {name: 'average', color: '#FFA059'},&eol; {name: 'high', color: '#E97659'},&eol; {name: 'disaster', color: '#E45959'},&eol; {name: 'resolved', color: '#009900'},&eol; {name: 'default', color: '#000000'}&eol; ],&eol; priority;&eol;&eol; if (typeof params.HTTPProxy === 'string' && params.HTTPProxy.trim() !== '') {&eol; request.setProxy(params.HTTPProxy);&eol; }&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: "' + params.event_source + '".\nMust be 0-3.';&eol; }&eol;&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) {&eol; params.event_nseverity = '7';&eol; }&eol;&eol; if (params.event_value === '0') {&eol; params.event_nseverity = '6';&eol; }&eol;&eol; priority = params['priority_' + severities[params.event_nseverity].name] &pipe;&pipe; params.priority_default;&eol;&eol; if (isNaN(priority) &pipe;&pipe; priority < -2 &pipe;&pipe; priority > 2) {&eol; throw '"priority" should be -2..2';&eol; }&eol;&eol; if (params.event_source === '0' && isNaN(params.triggerid)) {&eol; throw 'field "triggerid" is not a number';&eol; }&eol;&eol; if (isNaN(params.eventid)) {&eol; throw 'field "eventid" is not a number';&eol; }&eol;&eol; if (typeof params.message !== 'string' &pipe;&pipe; params.message.trim() === '') {&eol; throw 'field "message" cannot be empty';&eol; }&eol;&eol; data = {&eol; token: params.token,&eol; user: params.user,&eol; title: params.title,&eol; message: params.message,&eol; url: (params.event_source === '0') &eol; ? params.url + '/tr_events.php?triggerid=' + params.triggerid + '&eventid=' + params.eventid&eol; : params.url,&eol; url_title: params.url_title,&eol; priority: priority&eol; };&eol;&eol; if (priority == 2) {&eol; if (isNaN(params.retry) &pipe;&pipe; params.retry < 30) {&eol; throw 'field "retry" should be a number with value of at least 30 if "priority" is set to 2';&eol; }&eol;&eol; if (isNaN(params.expire) &pipe;&pipe; params.expire > 10800) {&eol; throw 'field "expire" should be a number with value of at most 10800 if "priority" is set to 2';&eol; }&eol;&eol; data.retry = params.retry;&eol; data.expire = params.expire;&eol; }&eol;&eol; data = JSON.stringify(data);&eol; Zabbix.log(4, '[ Pushover Webhook ] Sending request: ' + params.endpoint + '\n' + data);&eol;&eol; request.addHeader('Content-Type: application/json');&eol; response = request.post(params.endpoint, data);&eol;&eol; Zabbix.log(4, '[ Pushover Webhook ] Received response with status code ' + request.getStatus() + '\n' + response);&eol;&eol; if (response !== null) {&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; Zabbix.log(4, '[ Pushover Webhook ] Failed to parse response received from Pushover');&eol; response = null;&eol; }&eol; }&eol;&eol; if (request.getStatus() != 200 &pipe;&pipe; response === null &pipe;&pipe; typeof response !== 'object' &pipe;&pipe; response.status !== 1) {&eol; if (response !== null && typeof response === 'object' && typeof response.errors === 'object'&eol; && typeof response.errors[0] === 'string') {&eol; throw response.errors[0];&eol; }&eol; else {&eol; throw 'Unknown error. Check debug log for more information.';&eol; }&eol; }&eol;&eol; return 'OK';&eol;}&eol;catch (error) {&eol; Zabbix.log(4, '[ Pushover Webhook ] Pushover notification failed: ' + error);&eol; throw 'Pushover notification failed: ' + error;&eol;}|30s |0 |0 | | |Please refer to setup guide here: https://git.zabbix.com/projects/ZBX/repos/zabbix/browse/templates/media/pushover&eol;&eol;Set token parameter with to your Pushover application key.&eol;When assigning Pushover media to the Zabbix user - add user key into send to field. |
-ROW |9 |4 |Slack | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var SEVERITY_COLORS = [&eol; '#97AAB3', '#7499FF', '#FFC859',&eol; '#FFA059', '#E97659', '#E45959'&eol;];&eol;&eol;var RESOLVE_COLOR = '#009900';&eol;&eol;var SLACK_MODE_HANDLERS = {&eol; alarm: handlerAlarm,&eol; event: handlerEvent&eol;};&eol;&eol;&eol;if (!String.prototype.format) {&eol; String.prototype.format = function() {&eol; var args = arguments;&eol;&eol; return this.replace(/{(\d+)}/g, function(match, number) {&eol; return number in args&eol; ? args[number]&eol; : match&eol; ;&eol; });&eol; };&eol;}&eol;&eol;function isEventProblem(params) {&eol; return params.event_value == 1&eol; && params.event_update_status == 0&eol; ;&eol;}&eol;&eol;function isEventUpdate(params) {&eol; return params.event_value == 1&eol; && params.event_update_status == 1&eol; ;&eol;}&eol;&eol;function isEventResolve(params) {&eol; return params.event_value == 0;&eol;}&eol;&eol;function getPermalink(channelId, messageTimestamp) {&eol; var req = new HttpRequest();&eol;&eol; if (typeof params.HTTPProxy === 'string' && params.HTTPProxy.trim() !== '') {&eol; req.setProxy(params.HTTPProxy);&eol; }&eol;&eol; req.addHeader('Content-Type: application/x-www-form-urlencoded; charset=utf-8');&eol; req.addHeader('Authorization: Bearer ' + params.bot_token);&eol;&eol; var query = '{0}?channel={1}&message_ts={2}'.format(&eol; Slack.getPermalink,&eol; encodeURIComponent(channelId),&eol; encodeURIComponent(messageTimestamp)),&eol; resp = JSON.parse(req.get(query));&eol;&eol; if (req.getStatus() != 200 &pipe;&pipe; !resp.ok &pipe;&pipe; resp.ok === 'false') {&eol; throw 'message was created, but getting message link was failed with reason "' + resp.error + '"';&eol; }&eol;&eol; return resp.permalink;&eol;}&eol;&eol;function createProblemURL(zabbix_url, triggerid, eventid, event_source) {&eol; var problem_url = '';&eol; if (event_source === '0') {&eol; problem_url = '{0}/tr_events.php?triggerid={1}&eventid={2}'&eol; .format(&eol; zabbix_url,&eol; triggerid,&eol; eventid&eol; );&eol; }&eol; else {&eol; problem_url = zabbix_url;&eol; }&eol;&eol; return problem_url;&eol;}&eol;&eol;function handlerAlarm(params) {&eol; var fields = {&eol; channel: params.channel,&eol; as_user: params.slack_as_user,&eol; };&eol;&eol; if (isEventProblem(params)) {&eol; fields.attachments = [&eol; createMessage(&eol; SEVERITY_COLORS[params.event_nseverity] &pipe;&pipe; 0,&eol; params.event_date,&eol; params.event_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source)&eol; )&eol; ];&eol;&eol; var resp = JSON.parse(req.post(Slack.postMessage, JSON.stringify(fields)));&eol;&eol; if (req.getStatus() != 200 &pipe;&pipe; !resp.ok &pipe;&pipe; resp.ok === 'false') {&eol; throw resp.error;&eol; }&eol;&eol; result.tags = {&eol; ['__message_ts_' + params.channel]: resp.ts,&eol; ['__channel_id_' + params.channel]: resp.channel,&eol; ['__message_link_' + params.channel]: getPermalink(resp.channel, resp.ts),&eol; };&eol;&eol; }&eol; else if (isEventUpdate(params)) {&eol; try {&eol; var channel_event_tags = JSON.parse(params.event_tags);&eol; } catch (error) {&eol; throw 'Can't process event tags: ' + error;&eol; }&eol;&eol; if (Array.isArray(channel_event_tags)) {&eol; for (i in channel_event_tags) {&eol; if (channel_event_tags[i].tag.includes('__message_ts_' + params.channel)) {&eol; fields.thread_ts = channel_event_tags[i].value;&eol; break;&eol; }&eol; }&eol; }&eol;&eol; fields.attachments = [&eol; createMessage(&eol; SEVERITY_COLORS[params.event_nseverity] &pipe;&pipe; 0,&eol; params.event_update_date,&eol; params.event_update_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source),&eol; true&eol; )&eol; ];&eol;&eol; resp = JSON.parse(req.post(Slack.postMessage, JSON.stringify(fields)));&eol;&eol; if (req.getStatus() != 200 &pipe;&pipe; !resp.ok &pipe;&pipe; resp.ok === 'false') {&eol; throw resp.error;&eol; }&eol;&eol; }&eol; else if (isEventResolve(params)) {&eol;&eol; fields.text = '';&eol;&eol; try {&eol; var channel_event_tags = JSON.parse(params.event_tags);&eol; } catch (error) {&eol; throw 'Can't process event tags: ' + error;&eol; }&eol;&eol; if (Array.isArray(channel_event_tags)) {&eol; for (i in channel_event_tags) {&eol; if (channel_event_tags[i].tag.includes('__channel_id_' + params.channel)) {&eol; fields.channel = channel_event_tags[i].value;&eol; continue;&eol; }&eol; if (channel_event_tags[i].tag.includes('__message_ts_' + params.channel)) {&eol; fields.ts = channel_event_tags[i].value;&eol; }&eol; }&eol; }&eol;&eol; fields.attachments = [&eol; createMessage(&eol; RESOLVE_COLOR,&eol; params.event_date,&eol; params.event_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source)&eol; )&eol; ];&eol;&eol; resp = JSON.parse(req.post(Slack.chatUpdate, JSON.stringify(fields)));&eol; if (req.getStatus() != 200 &pipe;&pipe; !resp.ok &pipe;&pipe; resp.ok === 'false') {&eol; throw resp.error;&eol; }&eol; }&eol;}&eol;&eol;function handlerEvent(params) {&eol; var fields = {&eol; channel: params.channel,&eol; as_user: params.slack_as_user&eol; };&eol;&eol; if (isEventProblem(params)) {&eol; fields.attachments = [&eol; createMessage(&eol; SEVERITY_COLORS[params.event_nseverity] &pipe;&pipe; 0,&eol; params.event_date,&eol; params.event_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source)&eol; )&eol; ];&eol;&eol; var resp = JSON.parse(req.post(Slack.postMessage, JSON.stringify(fields)));&eol;&eol; if (req.getStatus() != 200 &pipe;&pipe; !resp.ok &pipe;&pipe; resp.ok === 'false') {&eol; throw resp.error;&eol; }&eol;&eol; result.tags = {&eol; ['__message_link_' + params.channel]: getPermalink(resp.channel, resp.ts)&eol; }&eol;&eol; }&eol; else if (isEventUpdate(params)) {&eol; fields.attachments = [&eol; createMessage(&eol; SEVERITY_COLORS[params.event_nseverity] &pipe;&pipe; 0,&eol; params.event_update_date,&eol; params.event_update_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source),&eol; false&eol; )&eol; ];&eol;&eol; resp = JSON.parse(req.post(Slack.postMessage, JSON.stringify(fields)));&eol;&eol; if (req.getStatus() != 200 &pipe;&pipe; !resp.ok &pipe;&pipe; resp.ok === 'false') {&eol; throw resp.error;&eol; }&eol;&eol; }&eol; else if (isEventResolve(params)) {&eol; fields.attachments = [&eol; createMessage(&eol; RESOLVE_COLOR,&eol; params.event_recovery_date,&eol; params.event_recovery_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source)&eol; )&eol; ];&eol;&eol; resp = JSON.parse(req.post(Slack.postMessage, JSON.stringify(fields)));&eol;&eol; if (req.getStatus() != 200 &pipe;&pipe; !resp.ok &pipe;&pipe; resp.ok === 'false') {&eol; throw resp.error;&eol; }&eol; }&eol;}&eol;&eol;function createMessage(&eol; event_severity_color,&eol; event_date,&eol; event_time,&eol; problem_url,&eol; isShort,&eol; messageText&eol;) {&eol; var message = {&eol; fallback: params.alert_subject,&eol; title: params.alert_subject,&eol; color: event_severity_color,&eol; title_link: problem_url,&eol; pretext: messageText &pipe;&pipe; '',&eol;&eol; fields: [&eol; {&eol; title: 'Host',&eol; value: '{0} [{1}]'.format(params.host_name, params.host_conn),&eol; short: true&eol; },&eol; {&eol; title: 'Event time',&eol; value: '{0} {1}'.format(event_date, event_time),&eol; short: true&eol; }&eol; ],&eol; };&eol;&eol; if (params.event_source === '0') {&eol; message.fields.push(&eol; {&eol; title: 'Severity',&eol; value: params.event_severity,&eol; short: true&eol; },&eol; {&eol; title: 'Opdata',&eol; value: params.event_opdata,&eol; short: true&eol; }&eol; );&eol; }&eol;&eol; if (!isShort && params.event_source === '0') {&eol; message['actions'] = [&eol; {&eol; type: 'button',&eol; text: 'Open in Zabbix',&eol; url: problem_url&eol; }&eol; ];&eol;&eol; message.fields.push(&eol; {&eol; title: 'Event tags',&eol; value: JSON.parse(params.event_tags).filter(function (e) { return !e.tag.includes('__') }).map(function (e) { return e.tag + ': ' + e.value }).join('\n') &pipe;&pipe; 'None',&eol; short: true&eol; },&eol; {&eol; title: 'Trigger description',&eol; value: params.trigger_description,&eol; short: true&eol; }&eol; );&eol; }&eol;&eol; if (params.event_source !== '0' &pipe;&pipe; params.event_update_status === '1') {&eol; message.fields.push(&eol; {&eol; title: 'Details',&eol; value: params.alert_message,&eol; short: false&eol; }&eol; );&eol; }&eol;&eol; return message;&eol;}&eol;&eol;function validateParams(params) {&eol; if (typeof params.bot_token !== 'string' &pipe;&pipe; params.bot_token.trim() === '') {&eol; throw 'Field "bot_token" cannot be empty';&eol; }&eol;&eol; if (typeof params.channel !== 'string' &pipe;&pipe; params.channel.trim() === '') {&eol; throw 'Field "channel" cannot be empty';&eol; }&eol;&eol; if (isNaN(params.event_id)) {&eol; throw 'Field "event_id" is not a number';&eol; }&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: "' + params.event_source + '".\nMust be 0-3.';&eol; }&eol;&eol; if (params.event_source !== '0') {&eol; params.event_nseverity = '0';&eol; params.event_severity = 'Not classified';&eol; params.event_update_status = '0';&eol; params.slack_mode = 'event';&eol; }&eol;&eol; if (params.event_source === '1' &pipe;&pipe; params.event_source === '2') {&eol; params.event_value = '1';&eol; }&eol;&eol; if (params.event_source === '1') {&eol; params.host_name = params.discovery_host_dns;&eol; params.host_ip = params.discovery_host_ip;&eol; }&eol;&eol; if (!~[0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity))) {&eol; throw 'Incorrect "event_nseverity" parameter given: ' + params.event_nseverity + '\nMust be 0-5.';&eol; }&eol;&eol; if (typeof params.event_severity !== 'string' &pipe;&pipe; params.event_severity.trim() === '') {&eol; throw 'Field "event_severity" cannot be empty';&eol; }&eol;&eol; if (params.event_update_status !== '0' && params.event_update_status !== '1') {&eol; throw 'Incorrect "event_update_status" parameter given: ' + params.event_update_status + '\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_value !== '0' && params.event_value !== '1') {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; if (typeof params.host_conn !== 'string' &pipe;&pipe; params.host_conn.trim() === '') {&eol; throw 'Field "host_conn" cannot be empty';&eol; }&eol;&eol; if (typeof params.host_name !== 'string' &pipe;&pipe; params.host_name.trim() === '') {&eol; throw 'Field "host_name" cannot be empty';&eol; }&eol;&eol; if (!~['true', 'false'].indexOf(params.slack_as_user.toLowerCase())) {&eol; throw 'Incorrect "slack_as_user" parameter given: ' + params.slack_as_user + '\nMust be "true" or "false".';&eol; }&eol;&eol; if (!~['alarm', 'event'].indexOf(params.slack_mode)) {&eol; throw 'Incorrect "slack_mode" parameter given: ' + params.slack_mode + '\nMust be "alarm" or "event".';&eol; }&eol;&eol; if (isNaN(params.trigger_id) && params.event_source === '0') {&eol; throw 'field "trigger_id" is not a number';&eol; }&eol;&eol; if (typeof params.zabbix_url !== 'string' &pipe;&pipe; params.zabbix_url.trim() === '') {&eol; throw 'Field "zabbix_url" cannot be empty';&eol; }&eol;&eol; if (!/^(http&pipe;https):\/\/.+/.test(params.zabbix_url)) {&eol; throw 'Field "zabbix_url" must contain a schema';&eol; }&eol;}&eol;&eol;try {&eol; var params = JSON.parse(value);&eol;&eol; validateParams(params);&eol;&eol; var req = new HttpRequest(),&eol; result = {tags: {}};&eol;&eol; if (typeof params.HTTPProxy === 'string' && params.HTTPProxy.trim() !== '') {&eol; req.setProxy(params.HTTPProxy);&eol; }&eol;&eol; req.addHeader('Content-Type: application/json; charset=utf-8');&eol; req.addHeader('Authorization: Bearer ' + params.bot_token);&eol;&eol; var slack_endpoint = 'https://slack.com/api/';&eol;&eol; var Slack = {&eol; postMessage: slack_endpoint + 'chat.postMessage',&eol; getPermalink: slack_endpoint + 'chat.getPermalink',&eol; chatUpdate: slack_endpoint + 'chat.update'&eol; };&eol;&eol; params.slack_mode = params.slack_mode.toLowerCase();&eol; params.slack_mode = params.slack_mode in SLACK_MODE_HANDLERS&eol; ? params.slack_mode&eol; : 'alarm';&eol;&eol; SLACK_MODE_HANDLERS[params.slack_mode](params);&eol;&eol; if (params.event_source === '0') {&eol; return JSON.stringify(result);&eol; }&eol; else {&eol; return 'OK';&eol; }&eol;}&eol;catch (error) {&eol; Zabbix.log(4, '[ Slack Webhook ] Slack notification failed : ' + error);&eol; throw 'Slack notification failed : ' + error;&eol;}|30s |1 |0 | | | |
+ROW |9 |4 |Slack | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var SEVERITY_COLORS = [&eol; '#97AAB3', '#7499FF', '#FFC859',&eol; '#FFA059', '#E97659', '#E45959'&eol;];&eol;&eol;var RESOLVE_COLOR = '#009900';&eol;&eol;var SLACK_MODE_HANDLERS = {&eol; alarm: handlerAlarm,&eol; event: handlerEvent&eol;};&eol;&eol;&eol;if (!String.prototype.format) {&eol; String.prototype.format = function() {&eol; var args = arguments;&eol;&eol; return this.replace(/{(\d+)}/g, function(match, number) {&eol; return number in args&eol; ? args[number]&eol; : match&eol; ;&eol; });&eol; };&eol;}&eol;&eol;function isEventProblem(params) {&eol; return params.event_value == 1&eol; && params.event_update_status == 0&eol; ;&eol;}&eol;&eol;function isEventUpdate(params) {&eol; return params.event_value == 1&eol; && params.event_update_status == 1&eol; ;&eol;}&eol;&eol;function isEventResolve(params) {&eol; return params.event_value == 0;&eol;}&eol;&eol;function getPermalink(channelId, messageTimestamp) {&eol; var req = new HttpRequest();&eol;&eol; if (typeof params.HTTPProxy === 'string' && params.HTTPProxy.trim() !== '') {&eol; req.setProxy(params.HTTPProxy);&eol; }&eol;&eol; req.addHeader('Content-Type: application/x-www-form-urlencoded; charset=utf-8');&eol; req.addHeader('Authorization: Bearer ' + params.bot_token);&eol;&eol; var query = '{0}?channel={1}&message_ts={2}'.format(&eol; Slack.getPermalink,&eol; encodeURIComponent(channelId),&eol; encodeURIComponent(messageTimestamp)),&eol; resp = JSON.parse(req.get(query));&eol;&eol; if (req.getStatus() != 200 &pipe;&pipe; !resp.ok &pipe;&pipe; resp.ok === 'false') {&eol; throw 'message was created, but getting message link was failed with reason "' + resp.error + '"';&eol; }&eol;&eol; return resp.permalink;&eol;}&eol;&eol;function createProblemURL(zabbix_url, triggerid, eventid, event_source) {&eol; var problem_url = '';&eol; if (event_source === '0') {&eol; problem_url = '{0}/tr_events.php?triggerid={1}&eventid={2}'&eol; .format(&eol; zabbix_url,&eol; triggerid,&eol; eventid&eol; );&eol; }&eol; else {&eol; problem_url = zabbix_url;&eol; }&eol;&eol; return problem_url;&eol;}&eol;&eol;function handlerAlarm(params) {&eol; var fields = {&eol; channel: params.channel,&eol; as_user: params.slack_as_user,&eol; };&eol;&eol; if (isEventProblem(params)) {&eol; fields.attachments = [&eol; createMessage(&eol; SEVERITY_COLORS[params.event_nseverity] &pipe;&pipe; 0,&eol; params.event_date,&eol; params.event_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source)&eol; )&eol; ];&eol;&eol; var resp = JSON.parse(req.post(Slack.postMessage, JSON.stringify(fields)));&eol;&eol; if (req.getStatus() != 200 &pipe;&pipe; !resp.ok &pipe;&pipe; resp.ok === 'false') {&eol; throw resp.error;&eol; }&eol;&eol; result.tags = {&eol; ['__message_ts_' + params.channel]: resp.ts,&eol; ['__channel_id_' + params.channel]: resp.channel,&eol; ['__message_link_' + params.channel]: getPermalink(resp.channel, resp.ts),&eol; };&eol;&eol; }&eol; else if (isEventUpdate(params)) {&eol; try {&eol; var channel_event_tags = JSON.parse(params.event_tags);&eol; } catch (error) {&eol; throw 'Cannot process event tags: ' + error;&eol; }&eol;&eol; if (Array.isArray(channel_event_tags)) {&eol; for (i in channel_event_tags) {&eol; if (channel_event_tags[i].tag.includes('__message_ts_' + params.channel)) {&eol; fields.thread_ts = channel_event_tags[i].value;&eol; break;&eol; }&eol; }&eol; }&eol;&eol; fields.attachments = [&eol; createMessage(&eol; SEVERITY_COLORS[params.event_nseverity] &pipe;&pipe; 0,&eol; params.event_update_date,&eol; params.event_update_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source),&eol; true&eol; )&eol; ];&eol;&eol; resp = JSON.parse(req.post(Slack.postMessage, JSON.stringify(fields)));&eol;&eol; if (req.getStatus() != 200 &pipe;&pipe; !resp.ok &pipe;&pipe; resp.ok === 'false') {&eol; throw resp.error;&eol; }&eol;&eol; }&eol; else if (isEventResolve(params)) {&eol;&eol; fields.text = '';&eol;&eol; try {&eol; var channel_event_tags = JSON.parse(params.event_tags);&eol; } catch (error) {&eol; throw 'Cannot process event tags: ' + error;&eol; }&eol;&eol; if (Array.isArray(channel_event_tags)) {&eol; for (i in channel_event_tags) {&eol; if (channel_event_tags[i].tag.includes('__channel_id_' + params.channel)) {&eol; fields.channel = channel_event_tags[i].value;&eol; continue;&eol; }&eol; if (channel_event_tags[i].tag.includes('__message_ts_' + params.channel)) {&eol; fields.ts = channel_event_tags[i].value;&eol; }&eol; }&eol; }&eol;&eol; fields.attachments = [&eol; createMessage(&eol; RESOLVE_COLOR,&eol; params.event_date,&eol; params.event_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source)&eol; )&eol; ];&eol;&eol; resp = JSON.parse(req.post(Slack.chatUpdate, JSON.stringify(fields)));&eol; if (req.getStatus() != 200 &pipe;&pipe; !resp.ok &pipe;&pipe; resp.ok === 'false') {&eol; throw resp.error;&eol; }&eol; }&eol;}&eol;&eol;function handlerEvent(params) {&eol; var fields = {&eol; channel: params.channel,&eol; as_user: params.slack_as_user&eol; };&eol;&eol; if (isEventProblem(params)) {&eol; fields.attachments = [&eol; createMessage(&eol; SEVERITY_COLORS[params.event_nseverity] &pipe;&pipe; 0,&eol; params.event_date,&eol; params.event_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source)&eol; )&eol; ];&eol;&eol; var resp = JSON.parse(req.post(Slack.postMessage, JSON.stringify(fields)));&eol;&eol; if (req.getStatus() != 200 &pipe;&pipe; !resp.ok &pipe;&pipe; resp.ok === 'false') {&eol; throw resp.error;&eol; }&eol;&eol; result.tags = {&eol; ['__message_link_' + params.channel]: getPermalink(resp.channel, resp.ts)&eol; }&eol;&eol; }&eol; else if (isEventUpdate(params)) {&eol; fields.attachments = [&eol; createMessage(&eol; SEVERITY_COLORS[params.event_nseverity] &pipe;&pipe; 0,&eol; params.event_update_date,&eol; params.event_update_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source),&eol; false&eol; )&eol; ];&eol;&eol; resp = JSON.parse(req.post(Slack.postMessage, JSON.stringify(fields)));&eol;&eol; if (req.getStatus() != 200 &pipe;&pipe; !resp.ok &pipe;&pipe; resp.ok === 'false') {&eol; throw resp.error;&eol; }&eol;&eol; }&eol; else if (isEventResolve(params)) {&eol; fields.attachments = [&eol; createMessage(&eol; RESOLVE_COLOR,&eol; params.event_recovery_date,&eol; params.event_recovery_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source)&eol; )&eol; ];&eol;&eol; resp = JSON.parse(req.post(Slack.postMessage, JSON.stringify(fields)));&eol;&eol; if (req.getStatus() != 200 &pipe;&pipe; !resp.ok &pipe;&pipe; resp.ok === 'false') {&eol; throw resp.error;&eol; }&eol; }&eol;}&eol;&eol;function createMessage(&eol; event_severity_color,&eol; event_date,&eol; event_time,&eol; problem_url,&eol; isShort,&eol; messageText&eol;) {&eol; var message = {&eol; fallback: params.alert_subject,&eol; title: params.alert_subject,&eol; color: event_severity_color,&eol; title_link: problem_url,&eol; pretext: messageText &pipe;&pipe; '',&eol;&eol; fields: [&eol; {&eol; title: 'Host',&eol; value: '{0} [{1}]'.format(params.host_name, params.host_conn),&eol; short: true&eol; },&eol; {&eol; title: 'Event time',&eol; value: '{0} {1}'.format(event_date, event_time),&eol; short: true&eol; }&eol; ],&eol; };&eol;&eol; if (params.event_source === '0') {&eol; message.fields.push(&eol; {&eol; title: 'Severity',&eol; value: params.event_severity,&eol; short: true&eol; },&eol; {&eol; title: 'Opdata',&eol; value: params.event_opdata,&eol; short: true&eol; }&eol; );&eol; }&eol;&eol; if (!isShort && params.event_source === '0') {&eol; message['actions'] = [&eol; {&eol; type: 'button',&eol; text: 'Open in Zabbix',&eol; url: problem_url&eol; }&eol; ];&eol;&eol; message.fields.push(&eol; {&eol; title: 'Event tags',&eol; value: JSON.parse(params.event_tags).filter(function (e) { return !e.tag.includes('__') }).map(function (e) { return e.tag + ': ' + e.value }).join('\n') &pipe;&pipe; 'None',&eol; short: true&eol; },&eol; {&eol; title: 'Trigger description',&eol; value: params.trigger_description,&eol; short: true&eol; }&eol; );&eol; }&eol;&eol; if (params.event_source !== '0' &pipe;&pipe; params.event_update_status === '1') {&eol; message.fields.push(&eol; {&eol; title: 'Details',&eol; value: params.alert_message,&eol; short: false&eol; }&eol; );&eol; }&eol;&eol; return message;&eol;}&eol;&eol;function validateParams(params) {&eol; if (typeof params.bot_token !== 'string' &pipe;&pipe; params.bot_token.trim() === '') {&eol; throw 'Field "bot_token" cannot be empty';&eol; }&eol;&eol; if (typeof params.channel !== 'string' &pipe;&pipe; params.channel.trim() === '') {&eol; throw 'Field "channel" cannot be empty';&eol; }&eol;&eol; if (isNaN(params.event_id)) {&eol; throw 'Field "event_id" is not a number';&eol; }&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: "' + params.event_source + '".\nMust be 0-3.';&eol; }&eol;&eol; if (params.event_source !== '0') {&eol; params.event_nseverity = '0';&eol; params.event_severity = 'Not classified';&eol; params.event_update_status = '0';&eol; params.slack_mode = 'event';&eol; }&eol;&eol; if (params.event_source === '1' &pipe;&pipe; params.event_source === '2') {&eol; params.event_value = '1';&eol; }&eol;&eol; if (params.event_source === '1') {&eol; params.host_name = params.discovery_host_dns;&eol; params.host_ip = params.discovery_host_ip;&eol; }&eol;&eol; if (!~[0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity))) {&eol; throw 'Incorrect "event_nseverity" parameter given: ' + params.event_nseverity + '\nMust be 0-5.';&eol; }&eol;&eol; if (typeof params.event_severity !== 'string' &pipe;&pipe; params.event_severity.trim() === '') {&eol; throw 'Field "event_severity" cannot be empty';&eol; }&eol;&eol; if (params.event_update_status !== '0' && params.event_update_status !== '1') {&eol; throw 'Incorrect "event_update_status" parameter given: ' + params.event_update_status + '\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_value !== '0' && params.event_value !== '1') {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; if (typeof params.host_conn !== 'string' &pipe;&pipe; params.host_conn.trim() === '') {&eol; throw 'Field "host_conn" cannot be empty';&eol; }&eol;&eol; if (typeof params.host_name !== 'string' &pipe;&pipe; params.host_name.trim() === '') {&eol; throw 'Field "host_name" cannot be empty';&eol; }&eol;&eol; if (!~['true', 'false'].indexOf(params.slack_as_user.toLowerCase())) {&eol; throw 'Incorrect "slack_as_user" parameter given: ' + params.slack_as_user + '\nMust be "true" or "false".';&eol; }&eol;&eol; if (!~['alarm', 'event'].indexOf(params.slack_mode)) {&eol; throw 'Incorrect "slack_mode" parameter given: ' + params.slack_mode + '\nMust be "alarm" or "event".';&eol; }&eol;&eol; if (isNaN(params.trigger_id) && params.event_source === '0') {&eol; throw 'field "trigger_id" is not a number';&eol; }&eol;&eol; if (typeof params.zabbix_url !== 'string' &pipe;&pipe; params.zabbix_url.trim() === '') {&eol; throw 'Field "zabbix_url" cannot be empty';&eol; }&eol;&eol; if (!/^(http&pipe;https):\/\/.+/.test(params.zabbix_url)) {&eol; throw 'Field "zabbix_url" must contain a schema';&eol; }&eol;}&eol;&eol;try {&eol; var params = JSON.parse(value);&eol;&eol; validateParams(params);&eol;&eol; var req = new HttpRequest(),&eol; result = {tags: {}};&eol;&eol; if (typeof params.HTTPProxy === 'string' && params.HTTPProxy.trim() !== '') {&eol; req.setProxy(params.HTTPProxy);&eol; }&eol;&eol; req.addHeader('Content-Type: application/json; charset=utf-8');&eol; req.addHeader('Authorization: Bearer ' + params.bot_token);&eol;&eol; var slack_endpoint = 'https://slack.com/api/';&eol;&eol; var Slack = {&eol; postMessage: slack_endpoint + 'chat.postMessage',&eol; getPermalink: slack_endpoint + 'chat.getPermalink',&eol; chatUpdate: slack_endpoint + 'chat.update'&eol; };&eol;&eol; params.slack_mode = params.slack_mode.toLowerCase();&eol; params.slack_mode = params.slack_mode in SLACK_MODE_HANDLERS&eol; ? params.slack_mode&eol; : 'alarm';&eol;&eol; SLACK_MODE_HANDLERS[params.slack_mode](params);&eol;&eol; if (params.event_source === '0') {&eol; return JSON.stringify(result);&eol; }&eol; else {&eol; return 'OK';&eol; }&eol;}&eol;catch (error) {&eol; Zabbix.log(4, '[ Slack Webhook ] Slack notification failed : ' + error);&eol; throw 'Slack notification failed : ' + error;&eol;}|30s |1 |0 | | | |
ROW |10 |4 |Discord | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var SEVERITY_COLORS = [&eol; '#97AAB3', // Not classified.&eol; '#7499FF', // Information.&eol; '#FFC859', // Warning.&eol; '#FFA059', // Average.&eol; '#E97659', // High.&eol; '#E45959', // Disaster.&eol; '#009900' // Resolved.&eol;];&eol;&eol;function stringTruncate(str, len) {&eol; return str.length > len ? str.substring(0, len - 3) + '...' : str;&eol;}&eol;&eol;try {&eol; Zabbix.log(4, '[ Discord Webhook ] Executed with params: ' + value);&eol;&eol; var params = JSON.parse(value);&eol;&eol; if (!params.discord_endpoint) {&eol; throw 'Cannot get discord_endpoint';&eol; }&eol; else {&eol; params.discord_endpoint = params.discord_endpoint.replace('/api/', '/api/v7/') + '?wait=True';&eol; }&eol;&eol; params.zabbix_url = (params.zabbix_url.endsWith('/'))&eol; ? params.zabbix_url.slice(0, -1) : params.zabbix_url;&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: "' + params.event_source + '".\nMust be 0-3.';&eol; }&eol;&eol; // Set params to true for non trigger-based events.&eol; if (params.event_source !== '0') {&eol; params.use_default_message = 'true';&eol; params.event_nseverity = '0';&eol; }&eol;&eol; // Check {EVENT.VALUE} for trigger-based and internal events.&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: "' + params.event_value + '".\nMust be 0 or 1.';&eol; }&eol;&eol; // Check {EVENT.UPDATE.STATUS} only for trigger-based events.&eol; if (params.event_update_status !== '0' && params.event_update_status !== '1' && params.event_source === '0') {&eol; throw 'Incorrect "event_update_status" parameter given: "' + params.event_update_status + '".\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_value == 0) {&eol; params.event_nseverity = '6';&eol; }&eol;&eol; if (!SEVERITY_COLORS[params.event_nseverity]) {&eol; throw 'Incorrect "event_nseverity" parameter given: ' + params.event_nseverity + '\nMust be 0-5.';&eol; }&eol;&eol; var color = parseInt(SEVERITY_COLORS[params.event_nseverity].replace('#', ''), 16),&eol; fields = [],&eol; body = {&eol; embeds: [&eol; {&eol; color: color &pipe;&pipe; 0,&eol; url: (params.event_source === '0')&eol; ? params.zabbix_url + '/tr_events.php?triggerid=' + params.trigger_id +&eol; '&eventid=' + params.event_id&eol; : params.zabbix_url&eol; }&eol; ]&eol; };&eol;&eol; // Default message from {ALERT.MESSAGE}.&eol; if (params.use_default_message.toLowerCase() == 'true') {&eol; body.embeds[0].title = stringTruncate(params.alert_subject, 256);&eol; body.embeds[0].description = stringTruncate(params.alert_message, 2048);&eol; }&eol; else {&eol; fields.push(&eol; {&eol; name: 'Host',&eol; value: params.host_name + ' [' + params.host_ip + ']'&eol; }&eol; );&eol;&eol; // Resolved message.&eol; if (params.event_value == 0 && params.event_update_status == 0) {&eol; body.embeds[0].title = stringTruncate('OK: ' + params.event_name, 256);&eol; fields.push(&eol; {&eol; name: 'Recovery time',&eol; value: params.event_recovery_time + ' ' + params.event_recovery_date,&eol; inline: 'True'&eol; }&eol; );&eol; }&eol;&eol; // Problem message.&eol; else if (params.event_value == 1 && params.event_update_status == 0) {&eol; body.embeds[0].title = stringTruncate('PROBLEM: ' + params.event_name, 256);&eol; fields.push(&eol; {&eol; name: 'Event time',&eol; value: params.event_time + ' ' + params.event_date,&eol; inline: 'True'&eol; }&eol; );&eol; }&eol;&eol; // Update message.&eol; else if (params.event_update_status == 1) {&eol; body.embeds[0].title = stringTruncate('UPDATE: ' + params.event_name, 256);&eol; body.embeds[0].description = params.event_update_user + ' ' + params.event_update_action + '.';&eol;&eol; if (params.event_update_message) {&eol; body.embeds[0].description += ' Comment:\n>>> ' + params.event_update_message;&eol; }&eol;&eol; body.embeds[0].description = stringTruncate(body.embeds[0].description, 2048);&eol;&eol; fields.push(&eol; {&eol; name: 'Event update time',&eol; value: params.event_update_time + ' ' + params.event_update_date,&eol; inline: 'True'&eol; }&eol; );&eol; }&eol;&eol; fields.push(&eol; {&eol; name: 'Severity',&eol; value: params.event_severity,&eol; inline: 'True'&eol; }&eol; );&eol;&eol; if (params.event_opdata) {&eol; fields.push(&eol; {&eol; name: 'Operational data',&eol; value: stringTruncate(params.event_opdata, 1024),&eol; inline: 'True'&eol; }&eol; );&eol; }&eol;&eol; if (params.event_value == 1 && params.event_update_status == 0 && params.trigger_description) {&eol; fields.push(&eol; {&eol; name: 'Trigger description',&eol; value: stringTruncate(params.trigger_description, 1024)&eol; }&eol; );&eol; }&eol;&eol; body.embeds[0].footer = {&eol; text: 'Event ID: ' + params.event_id&eol; };&eol;&eol; if (params.event_tags) {&eol; body.embeds[0].footer.text += '\nEvent tags: ' + params.event_tags;&eol; }&eol; body.embeds[0].footer.text = stringTruncate(body.embeds[0].footer.text, 2048);&eol; }&eol;&eol; if (fields.length > 0) {&eol; body.embeds[0].fields = fields;&eol; }&eol;&eol; var req = new HttpRequest();&eol;&eol; if (typeof params.HTTPProxy === 'string' && params.HTTPProxy.trim() !== '') {&eol; req.setProxy(params.HTTPProxy);&eol; }&eol;&eol; req.addHeader('Content-Type: application/json');&eol;&eol; var resp = req.post(params.discord_endpoint, JSON.stringify(body)),&eol; data = JSON.parse(resp);&eol;&eol; Zabbix.log(4, '[ Discord Webhook ] JSON: ' + JSON.stringify(body));&eol; Zabbix.log(4, '[ Discord Webhook ] Response: ' + resp);&eol;&eol; if (data.id) {&eol; return resp;&eol; }&eol; else {&eol; var message = ((typeof data.message === 'string') ? data.message : 'Unknown error');&eol;&eol; Zabbix.log(3, '[ Discord Webhook ] FAILED with response: ' + resp);&eol; throw message + '. For more details check zabbix server log.';&eol; }&eol;}&eol;catch (error) {&eol; Zabbix.log(3, '[ Discord Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |0 |0 | | | |
ROW |11 |4 |SIGNL4 | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |// SIGNL4 Webhook&eol;try {&eol; var response,&eol; payload,&eol; params = JSON.parse(value),&eol; endpoint = 'https://connect.signl4.com/webhook/',&eol; request = new HttpRequest();&eol;&eol; if (typeof params.HTTPProxy === 'string' && params.HTTPProxy.trim() !== '') {&eol; request.setProxy(params.HTTPProxy);&eol; }&eol;&eol; if (typeof params.teamsecret === 'string' && params.teamsecret.trim() !== '') {&eol; endpoint += params.teamsecret;&eol; delete params.teamsecret;&eol; }&eol; else {&eol; throw 'The team secret of your SIGNL4 team cannot be empty.';&eol; }&eol;&eol; if (typeof params.Severity === 'string' && params.Severity === '{EVENT.SEVERITY}') {&eol; params.Severity = 'Not classified';&eol; }&eol;&eol; if (typeof params.User === 'string' && params.User === '{USER.FULLNAME}') {&eol; params.User = '';&eol; }&eol;&eol; if (typeof params.Event_Update_Action === 'string' && params.Event_Update_Action === '{EVENT.UPDATE.ACTION}') {&eol; params.Event_Update_Action = '';&eol; }&eol;&eol; // Assemble X-S4-ExternalID for two-way integration&eol; // Format: "ZabbixEventID: 222 ZabbixURL: https://your-zabbix-server/zabbix/"&eol; params['X-S4-ExternalID'] = 'ZabbixEventID: ' + params.Event_ID;&eol; if (typeof params.Zabbix_URL === 'string' && params.Zabbix_URL.indexOf('http') == 0) {&eol; // Make sure the URL ends with '/'&eol; if (params.Zabbix_URL.charAt(params.Zabbix_URL.length - 1) != '/') {&eol; params.Zabbix_URL = params.Zabbix_URL + '/';&eol; }&eol;&eol; params['X-S4-ExternalID'] = params['X-S4-ExternalID'] + ' ZabbixURL: ' + params.Zabbix_URL;&eol;&eol; // Add Link parameter&eol; params['Link'] = params.Zabbix_URL + "tr_events.php?triggerid="+params.Trigger_ID + "&eventid=" + params.Event_ID;&eol; }&eol;&eol; // Check if this is a new problem or a recovery&eol; if (params.Trigger_Status == 'OK') {&eol; params['X-S4-Status'] = 'resolved';&eol; }&eol; else {&eol; params['X-S4-Status'] = 'new';&eol; }&eol;&eol; payload = JSON.stringify(params);&eol; Zabbix.log(4, '[ SIGNL4 Webhook ] Sending request: ' + payload);&eol;&eol; request.addHeader('Content-Type: application/json');&eol; response = request.post(endpoint, 'payload=' + payload);&eol;&eol; Zabbix.log(4, '[ SIGNL4 Webhook ] Received response with status code ' +&eol; request.getStatus() + '\n' + response&eol; );&eol;&eol; if (request.getStatus() !== 201) {&eol; throw 'Request failed with status code ' + request.getStatus() +&eol; '. Check debug log for more information.';&eol; }&eol;&eol; return 'OK';&eol;}&eol;catch (error) {&eol; Zabbix.log(4, '[ SIGNL4 Webhook ] ERROR: ' + error);&eol;&eol; throw 'Sending failed: ' + error;&eol;}|30s |0 |0 | | |SIGNL4 is a mobile alert notification app for powerful alerting, alert management and mobile assignment of work items. It offers alerting via app push, SMS and voice calls including escalations, tracking, and duty scheduling.&eol;&eol;Get the app at https://www.signl4.com.&eol;&eol;Find out more including an integration video here: https://www.signl4.com/blog/portfolio_item/zabbix-mobile-alert-notification-duty-schedule-escalation/ |
ROW |12 |4 |Jira | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var Jira = {&eol; params: {},&eol;&eol; setParams: function (params) {&eol; if (typeof params !== 'object') {&eol; return;&eol; }&eol;&eol; Jira.params = params;&eol; if (typeof Jira.params.url === 'string') {&eol; if (!Jira.params.url.endsWith('/')) {&eol; Jira.params.url += '/';&eol; }&eol;&eol; Jira.params.url += 'rest/api/latest/';&eol; }&eol; },&eol;&eol; setProxy: function (HTTPProxy) {&eol; Jira.HTTPProxy = HTTPProxy;&eol; },&eol;&eol; setTags: function(event_tags_json) {&eol; if (typeof event_tags_json !== 'undefined' && event_tags_json !== ''&eol; && event_tags_json !== '{EVENT.TAGSJSON}') {&eol; try {&eol; var tags = JSON.parse(event_tags_json),&eol; label;&eol;&eol; Jira.labels = [];&eol;&eol; tags.forEach(function (tag) {&eol; if (typeof tag.tag !== 'undefined' && typeof tag.value !== 'undefined'&eol; && !tag.tag.startsWith('__zbx')) {&eol; label = (tag.tag + (tag.value ? (':' + tag.value) : '')).replace(/\s/g, '_');&eol; if (label.length < 256) {&eol; Jira.labels.push(label);&eol; }&eol; }&eol; });&eol; }&eol; catch (error) {&eol; // Code is not missing here.&eol; }&eol; }&eol; },&eol;&eol; escapeMarkup: function (str) {&eol; var length = str.length,&eol; result = '',&eol; markup = ['{', '&pipe;', '}', '~', '_', '\\', '[', ']', '^', '<', '>', '?', '!', '#', '+', '*', '&'];&eol;&eol; for (var i = 0; i < length; i++) {&eol; var char = str[i];&eol;&eol; result += (markup.indexOf(char) !== -1) ? ('&#' + str[i].charCodeAt() + ';') : char;&eol; }&eol;&eol; return result;&eol; },&eol;&eol; addCustomFields: function (data, fields) {&eol; if (typeof fields === 'object' && Object.keys(fields).length) {&eol; var schema = Jira.getSchema(),&eol; path = ['projects', 0, 'issuetypes', 0, 'fields'],&eol; field;&eol;&eol; while ((field = path.shift()) !== undefined) {&eol; schema = schema[field];&eol; if (typeof schema === 'undefined') {&eol; schema = null;&eol; break;&eol; }&eol; }&eol;&eol; if (schema) {&eol; Object.keys(fields)&eol; .forEach(function(field) {&eol; if (typeof schema[field] === 'object' && typeof schema[field].schema === 'object') {&eol; switch (schema[field].schema.type) {&eol; case 'number':&eol; data.fields[field] = parseInt(fields[field]);&eol; break;&eol;&eol; case 'datetime':&eol; if (fields[field].match(/\d+[.-]\d+[.-]\d+T\d+:\d+:\d+/) !== null) {&eol; data.fields[field] = fields[field].replace(/\./g, '-');&eol; }&eol; break;&eol;&eol; case 'option':&eol; data.fields[field] = {value: fields[field]};&eol; break;&eol;&eol; case 'array':&eol; if (schema[field].schema.items === 'option') {&eol; data.fields[field] = [{value: fields[field]}];&eol; }&eol; else {&eol; data.fields[field] = [fields[field]];&eol; }&eol; break;&eol;&eol; default:&eol; data.fields[field] = fields[field];&eol; }&eol; }&eol; });&eol; }&eol; else {&eol; Zabbix.log(4, '[ Jira Webhook ] Failed to retrieve field schema.');&eol; }&eol; }&eol;&eol; return data;&eol; },&eol;&eol; request: function (method, query, data) {&eol; ['url', 'user', 'password', 'project_key', 'issue_type'].forEach(function (field) {&eol; if (typeof Jira.params !== 'object' &pipe;&pipe; typeof Jira.params[field] === 'undefined'&eol; &pipe;&pipe; Jira.params[field] === '' ) {&eol; throw 'Required Jira param is not set: "' + field + '".';&eol; }&eol; });&eol;&eol; var response,&eol; url = Jira.params.url + query,&eol; request = new HttpRequest();&eol;&eol; request.addHeader('Content-Type: application/json');&eol; request.addHeader('Authorization: Basic ' + btoa(Jira.params.user + ':' + Jira.params.password));&eol;&eol; if (typeof Jira.HTTPProxy !== 'undefined' && Jira.HTTPProxy !== '') {&eol; request.setProxy(Jira.HTTPProxy);&eol; }&eol;&eol; if (typeof data !== 'undefined') {&eol; data = JSON.stringify(data);&eol; }&eol;&eol; Zabbix.log(4, '[ Jira Webhook ] Sending request: ' + url + ((typeof data === 'string') ? ('\n' + data) : ''));&eol;&eol; switch (method) {&eol; case 'get':&eol; response = request.get(url, data);&eol; break;&eol;&eol; case 'post':&eol; response = request.post(url, data);&eol; break;&eol;&eol; case 'put':&eol; response = request.put(url, data);&eol; break;&eol;&eol; default:&eol; throw 'Unsupported HTTP request method: ' + method;&eol; }&eol;&eol; Zabbix.log(4, '[ Jira Webhook ] Received response with status code ' + request.getStatus() + '\n' + response);&eol;&eol; if (response !== null) {&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; Zabbix.log(4, '[ Jira Webhook ] Failed to parse response received from Jira');&eol; response = null;&eol; }&eol; }&eol;&eol; if (request.getStatus() < 200 &pipe;&pipe; request.getStatus() >= 300) {&eol; var message = 'Request failed with status code ' + request.getStatus();&eol;&eol; if (response !== null && typeof response.errors !== 'undefined'&eol; && Object.keys(response.errors).length > 0) {&eol; message += ': ' + JSON.stringify(response.errors);&eol; }&eol; else if (response !== null && typeof response.errorMessages !== 'undefined'&eol; && Object.keys(response.errorMessages).length > 0) {&eol; message += ': ' + JSON.stringify(response.errorMessages);&eol; }&eol;&eol; throw message + ' Check debug log for more information.';&eol; }&eol;&eol; return {&eol; status: request.getStatus(),&eol; response: response&eol; };&eol; },&eol;&eol; getSchema: function() {&eol; var result = Jira.request('get', 'issue/createmeta?expand=projects.issuetypes.fields&projectKeys=' +&eol; encodeURIComponent(Jira.params.project_key) + '&issuetypeNames=' +&eol; encodeURIComponent(Jira.params.issue_type));&eol;&eol; return result.response;&eol; },&eol;&eol; createIssue: function(summary, description, fields) {&eol; var data = {&eol; fields: {&eol; project: {&eol; key: Jira.params.project_key&eol; },&eol; issuetype: {&eol; name: Jira.params.issue_type&eol; },&eol; summary: summary,&eol; description: description&eol; }&eol; };&eol;&eol; if (Jira.labels && Jira.labels.length > 0) {&eol; data.fields.labels = Jira.labels;&eol; }&eol; var result = Jira.request('post', 'issue', Jira.addCustomFields(data, fields));&eol;&eol; if (typeof result.response !== 'object' &pipe;&pipe; typeof result.response.key === 'undefined') {&eol; throw 'Cannot create Jira issue. Check debug log for more information.';&eol; }&eol;&eol; return result.response.key;&eol; },&eol;&eol; updateIssue: function(summary, fields, update) {&eol; var data = {fields: {}};&eol;&eol; if (summary) {&eol; data.fields.summary = summary;&eol; }&eol;&eol; Jira.request('put', 'issue/' + encodeURIComponent(Jira.params.issue_key), Jira.addCustomFields(data, fields));&eol; Jira.commentIssue(update);&eol; },&eol;&eol; commentIssue: function(update) {&eol; var data = {};&eol;&eol; if (typeof update === 'string') {&eol; data.body = update;&eol; Jira.request('post', 'issue/' + encodeURIComponent(Jira.params.issue_key) + '/comment', data);&eol; }&eol; else if (update.status === '1') {&eol; data.body = update.user + ' ' + update.action + '.';&eol;&eol; if (update.message) {&eol; data.body += '\nMessage: {quote}' + Jira.escapeMarkup(update.message) + '{quote}';&eol; }&eol;&eol; Jira.request('post', 'issue/' + encodeURIComponent(Jira.params.issue_key) + '/comment', data);&eol; }&eol; }&eol;};&eol;&eol;try {&eol; var params = JSON.parse(value),&eol; fields = {},&eol; jira = {},&eol; update = {},&eol; result = {tags: {}},&eol; required_params = ['alert_subject', 'summary', 'event_recovery_value', 'event_source', 'event_value'];&eol;&eol; Object.keys(params)&eol; .forEach(function (key) {&eol; if (key.startsWith('jira_')) {&eol; jira[key.substring(5)] = params[key];&eol; }&eol; else if (key.startsWith('customfield_')) {&eol; fields[key] = params[key];&eol; }&eol; else if (key.startsWith('event_update_')) {&eol; update[key.substring(13)] = params[key];&eol; }&eol; else if (required_params.indexOf(key) !== -1 && params[key] === '') {&eol; throw 'Parameter "' + key + '" can\'t be empty.';&eol; }&eol; });&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: ' + params.event_source + '\nMust be 0-3.';&eol; }&eol;&eol; // Check {EVENT.VALUE} for trigger-based and internal events.&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; // Check {EVENT.UPDATE.STATUS} only for trigger-based events.&eol; if (params.event_update_status !== '0' && params.event_update_status !== '1' && params.event_source === '0') {&eol; throw 'Incorrect "event_update_status" parameter given: ' + params.event_update_status + '\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_source !== '0' && params.event_recovery_value === '0') {&eol; throw 'Recovery operations are supported only for trigger-based actions.';&eol; }&eol;&eol; Jira.setParams(jira);&eol; Jira.setProxy(params.HTTPProxy);&eol; Jira.setTags(params.event_tags_json);&eol;&eol; // Create issue for non trigger-based events.&eol; if (params.event_source !== '0' && params.event_recovery_value !== '0') {&eol; Jira.createIssue(params.alert_subject, params.alert_message);&eol; }&eol; // Create issue for trigger-based events.&eol; else if (params.event_value === '1' && update.status === '0' && !jira.issue_key.startsWith(jira.project_key)) {&eol; var key = Jira.createIssue(params.alert_subject,&eol; (Object.keys(fields).length ? params.trigger_description : params.alert_message), fields);&eol;&eol;&eol; result.tags.__zbx_jira_issuekey = key;&eol; result.tags.__zbx_jira_issuelink = params.jira_url +&eol; (params.jira_url.endsWith('/') ? '' : '/') + 'browse/' + key;&eol; }&eol; // Update created issue for trigger-based event.&eol; else {&eol; if (!jira.issue_key.startsWith(jira.project_key)) {&eol; throw 'Incorrect Issue key given: ' + jira.issue_key;&eol; }&eol; Jira.updateIssue(params.alert_subject, fields,&eol; ((params.event_value === '0' && !Object.keys(fields).length)&eol; ? params.alert_message : update));&eol; }&eol;&eol; return JSON.stringify(result);&eol;}&eol;catch (error) {&eol; Zabbix.log(3, '[ Jira Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__zbx_jira_issuelink} |Jira: {EVENT.TAGS.__zbx_jira_issuekey} | |
ROW |13 |4 |Jira with CustomFields | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var Jira = {&eol; params: {},&eol;&eol; setParams: function (params) {&eol; if (typeof params !== 'object') {&eol; return;&eol; }&eol;&eol; Jira.params = params;&eol; if (typeof Jira.params.url === 'string') {&eol; if (!Jira.params.url.endsWith('/')) {&eol; Jira.params.url += '/';&eol; }&eol;&eol; Jira.params.url += 'rest/api/latest/';&eol; }&eol; },&eol;&eol; setProxy: function (HTTPProxy) {&eol; Jira.HTTPProxy = HTTPProxy;&eol; },&eol;&eol; setTags: function(event_tags_json) {&eol; if (typeof event_tags_json !== 'undefined' && event_tags_json !== ''&eol; && event_tags_json !== '{EVENT.TAGSJSON}') {&eol; try {&eol; var tags = JSON.parse(event_tags_json),&eol; label;&eol;&eol; Jira.labels = [];&eol;&eol; tags.forEach(function (tag) {&eol; if (typeof tag.tag !== 'undefined' && typeof tag.value !== 'undefined' ) {&eol; label = (tag.tag + (tag.value ? (':' + tag.value) : '')).replace(/\s/g, '_');&eol; if (label.length < 256) {&eol; Jira.labels.push(label);&eol; }&eol; }&eol; });&eol; }&eol; catch (error) {&eol; // Code is not missing here.&eol; }&eol; }&eol; },&eol;&eol; escapeMarkup: function (str) {&eol; var length = str.length,&eol; result = '',&eol; markup = ['{', '&pipe;', '}', '~', '_', '\\', '[', ']', '^', '<', '>', '?', '!', '#', '+', '*', '&'];&eol;&eol; for (var i = 0; i < length; i++) {&eol; var char = str[i];&eol;&eol; result += (markup.indexOf(char) !== -1) ? ('&#' + str[i].charCodeAt() + ';') : char;&eol; }&eol;&eol; return result;&eol; },&eol;&eol; addCustomFields: function (data, fields) {&eol; if (typeof fields === 'object' && Object.keys(fields).length) {&eol; var schema = Jira.getSchema(),&eol; path = ['projects', 0, 'issuetypes', 0, 'fields'],&eol; field;&eol;&eol; while ((field = path.shift()) !== undefined) {&eol; schema = schema[field];&eol; if (typeof schema === 'undefined') {&eol; schema = null;&eol; break;&eol; }&eol; }&eol;&eol; if (schema) {&eol; Object.keys(fields)&eol; .forEach(function(field) {&eol; data.fields[field] = fields[field];&eol;&eol; if (typeof schema[field] === 'object' && typeof schema[field].schema === 'object'&eol; && (schema[field].schema.type === 'number' &pipe;&pipe; schema[field].schema.type === 'datetime')) {&eol; switch (schema[field].schema.type) {&eol; case 'number':&eol; data.fields[field] = parseInt(fields[field]);&eol; break;&eol;&eol; case 'datetime':&eol; if (fields[field].match(/\d+[.-]\d+[.-]\d+T\d+:\d+:\d+/) !== null) {&eol; data.fields[field] = fields[field].replace(/\./g, '-');&eol; }&eol; else {&eol; delete data.fields[field];&eol; }&eol; break;&eol; }&eol; }&eol; });&eol; }&eol; else {&eol; Zabbix.Log(4, '[ Jira Webhook ] Failed to retrieve field schema.');&eol; }&eol; }&eol;&eol; return data;&eol; },&eol;&eol; request: function (method, query, data) {&eol; ['url', 'user', 'password', 'project_key', 'issue_type'].forEach(function (field) {&eol; if (typeof Jira.params !== 'object' &pipe;&pipe; typeof Jira.params[field] === 'undefined'&eol; &pipe;&pipe; Jira.params[field] === '' ) {&eol; throw 'Required Jira param is not set: "' + field + '".';&eol; }&eol; });&eol;&eol; var response,&eol; url = Jira.params.url + query,&eol; request = new CurlHttpRequest();&eol;&eol; request.AddHeader('Content-Type: application/json');&eol; request.AddHeader('Authorization: Basic ' + btoa(Jira.params.user + ':' + Jira.params.password));&eol;&eol; if (typeof Jira.HTTPProxy !== 'undefined' && Jira.HTTPProxy !== '') {&eol; request.SetProxy(Jira.HTTPProxy);&eol; }&eol;&eol; if (typeof data !== 'undefined') {&eol; data = JSON.stringify(data);&eol; }&eol;&eol; Zabbix.Log(4, '[ Jira Webhook ] Sending request: ' + url + ((typeof data === 'string') ? ('\n' + data) : ''));&eol;&eol; switch (method) {&eol; case 'get':&eol; response = request.Get(url, data);&eol; break;&eol;&eol; case 'post':&eol; response = request.Post(url, data);&eol; break;&eol;&eol; case 'put':&eol; response = request.Put(url, data);&eol; break;&eol;&eol; default:&eol; throw 'Unsupported HTTP request method: ' + method;&eol; }&eol;&eol; Zabbix.Log(4, '[ Jira Webhook ] Received response with status code ' + request.Status() + '\n' + response);&eol;&eol; if (response !== null) {&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; Zabbix.Log(4, '[ Jira Webhook ] Failed to parse response received from Jira');&eol; response = null;&eol; }&eol; }&eol;&eol; if (request.Status() < 200 &pipe;&pipe; request.Status() >= 300) {&eol; var message = 'Request failed with status code ' + request.Status();&eol;&eol; if (response !== null && typeof response.errors !== 'undefined'&eol; && Object.keys(response.errors).length > 0) {&eol; message += ': ' + JSON.stringify(response.errors);&eol; }&eol; else if (response !== null && typeof response.errorMessages !== 'undefined'&eol; && Object.keys(response.errorMessages).length > 0) {&eol; message += ': ' + JSON.stringify(response.errorMessages);&eol; }&eol;&eol; throw message + ' Check debug log for more information.';&eol; }&eol;&eol; return {&eol; status: request.Status(),&eol; response: response&eol; };&eol; },&eol;&eol; getSchema: function() {&eol; var result = Jira.request('get', 'issue/createmeta?expand=projects.issuetypes.fields&projectKeys=' +&eol; Jira.params.project_key + '&issuetypeNames=' + Jira.params.issue_type);&eol;&eol; return result.response;&eol; },&eol;&eol; createIssue: function(summary, description, fields) {&eol; var data = {&eol; fields: {&eol; project: {&eol; key: Jira.params.project_key&eol; },&eol; issuetype: {&eol; name: Jira.params.issue_type&eol; },&eol; summary: summary,&eol; description: description&eol; }&eol; };&eol;&eol; if (Jira.labels && Jira.labels.length > 0) {&eol; data.fields.labels = Jira.labels;&eol; }&eol; var result = Jira.request('post', 'issue', Jira.addCustomFields(data, fields));&eol;&eol; if (typeof result.response !== 'object' &pipe;&pipe; typeof result.response.key === 'undefined') {&eol; throw 'Cannot create Jira issue. Check debug log for more information.';&eol; }&eol;&eol; return result.response.key;&eol; },&eol;&eol; updateIssue: function(summary, fields, update) {&eol; var data = {fields: {}};&eol;&eol; if (summary) {&eol; data.fields.summary = summary;&eol; }&eol;&eol; Jira.request('put', 'issue/' + Jira.params.issue_key, Jira.addCustomFields(data, fields));&eol; Jira.commentIssue(update);&eol; },&eol;&eol; commentIssue: function(update) {&eol; var data = {};&eol;&eol; if (typeof update === 'string') {&eol; data.body = update;&eol; Jira.request('post', 'issue/' + Jira.params.issue_key + '/comment', data);&eol; }&eol; else if (update.status === '1') {&eol; data.body = update.user + ' ' + update.action + '.';&eol;&eol; if (update.message) {&eol; data.body += '\nMessage: {quote}' + Jira.escapeMarkup(update.message) + '{quote}';&eol; }&eol;&eol; Jira.request('post', 'issue/' + Jira.params.issue_key + '/comment', data);&eol; }&eol; }&eol;};&eol;&eol;try {&eol; var params = JSON.parse(value),&eol; fields = {},&eol; jira = {},&eol; update = {},&eol; result = {tags: {}},&eol; required_params = ['alert_subject', 'summary', 'event_recovery_value', 'event_source', 'event_value'];&eol;&eol; Object.keys(params)&eol; .forEach(function (key) {&eol; if (key.startsWith('jira_')) {&eol; jira[key.substring(5)] = params[key];&eol; }&eol; else if (key.startsWith('customfield_')) {&eol; fields[key] = params[key];&eol; }&eol; else if (key.startsWith('event_update_')) {&eol; update[key.substring(13)] = params[key];&eol; }&eol; else if (required_params.indexOf(key) !== -1 && params[key] === '') {&eol; throw 'Parameter "' + key + '" can\'t be empty.';&eol; }&eol; });&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: ' + params.event_source + '\nMust be 0-3.';&eol; }&eol;&eol; // Check {EVENT.VALUE} for trigger-based and internal events.&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; // Check {EVENT.UPDATE.STATUS} only for trigger-based events.&eol; if (params.event_update_status !== '0' && params.event_update_status !== '1' && params.event_source === '0') {&eol; throw 'Incorrect "event_update_status" parameter given: ' + params.event_update_status + '\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_source !== '0' && params.event_recovery_value === '0') {&eol; throw 'Recovery operations are supported only for trigger-based actions.';&eol; }&eol;&eol; Jira.setParams(jira);&eol; Jira.setProxy(params.HTTPProxy);&eol; Jira.setTags(params.event_tags_json);&eol;&eol; // Create issue for non trigger-based events.&eol; if (params.event_source !== '0' && params.event_recovery_value !== '0') {&eol; Jira.createIssue(params.alert_subject, params.alert_message);&eol; }&eol; // Create issue for trigger-based events.&eol; else if (params.event_value === '1' && update.status === '0' && !jira.issue_key.startsWith(jira.project_key)) {&eol; var key = Jira.createIssue(params.alert_subject,&eol; (Object.keys(fields).length ? params.trigger_description : params.alert_message), fields);&eol;&eol;&eol; result.tags.__zbx_jira_issuekey = key;&eol; result.tags.__zbx_jira_issuelink = params.jira_url +&eol; (params.jira_url.endsWith('/') ? '' : '/') + 'browse/' + key;&eol; }&eol; // Update created issue for trigger-based event.&eol; else {&eol; if (!jira.issue_key.startsWith(jira.project_key)) {&eol; throw 'Incorrect Issue key given: ' + jira.issue_key;&eol; }&eol; Jira.updateIssue(params.alert_subject, fields,&eol; ((params.event_value === '0' && !Object.keys(fields).length)&eol; ? params.alert_message : update));&eol; }&eol;&eol; return JSON.stringify(result);&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[ Jira Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__zbx_jira_issuelink} |Jira: {EVENT.TAGS.__zbx_jira_issuekey} | |
ROW |14 |4 |MS Teams | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var SEVERITY_COLORS = [&eol; '#97AAB3', // Not classified.&eol; '#7499FF', // Information.&eol; '#FFC859', // Warning.&eol; '#FFA059', // Average.&eol; '#E97659', // High.&eol; '#E45959', // Disaster.&eol; '#009900', // Resolved.&eol; '#000000' // Default.&eol;];&eol;&eol;try {&eol; var params = JSON.parse(value);&eol;&eol; if (typeof params.teams_endpoint !== 'string' &pipe;&pipe; params.teams_endpoint.trim() === '') {&eol; throw 'Cannot get teams_endpoint';&eol; }&eol; else if (!params.teams_endpoint.startsWith('http')) {&eol; throw 'Invalid MS Teams webhook URL: ' + params.teams_endpoint;&eol; }&eol;&eol; params.zabbix_url = (params.zabbix_url.endsWith('/'))&eol; ? params.zabbix_url.slice(0, -1) : params.zabbix_url;&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: "' + params.event_source + '".\nMust be 0-3.';&eol; }&eol;&eol; // Set "use_default_message" to true for non trigger-based events.&eol; if (params.event_source !== '0') {&eol; params.use_default_message = 'true';&eol; }&eol;&eol; // Check {EVENT.VALUE} for trigger-based and internal events.&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: "' + params.event_value + '".\nMust be 0 or 1.';&eol; }&eol;&eol; // Check {EVENT.UPDATE.STATUS} only for trigger-based events.&eol; if (params.event_update_status !== '0' && params.event_update_status !== '1' && params.event_source === '0') {&eol; throw 'Incorrect "event_update_status" parameter given: "' + params.event_update_status + '".\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_value == 0) {&eol; params.event_nseverity = '6';&eol; }&eol;&eol; if (!SEVERITY_COLORS[params.event_nseverity]) {&eol; params.event_nseverity = '7';&eol; }&eol;&eol; var request = new HttpRequest(),&eol; facts = [],&eol; body = {&eol; themeColor: SEVERITY_COLORS[params.event_nseverity].replace('#', ''),&eol; summary: 'Zabbix',&eol; sections: [&eol; {&eol; markdown: 'false',&eol; activityTitle: params.alert_subject,&eol; activitySubtitle: 'On ' + params.host_name + ' [' + params.host_ip + ']',&eol; text: (params.use_default_message.toLowerCase() == 'true')&eol; ? params.alert_message&eol; : params.trigger_description&eol; }&eol; ],&eol; potentialAction: [&eol; {&eol; '@type': 'OpenUri',&eol; name: (params.event_source === '0')&eol; ? 'Event Info'&eol; : 'Zabbix Home',&eol; targets: [&eol; {&eol; os: 'default',&eol; uri: (params.event_source === '0')&eol; ? params.zabbix_url + '/tr_events.php?triggerid=' +&eol; params.trigger_id + '&eventid=' + params.event_id&eol; : params.zabbix_url&eol; }&eol; ]&eol; }&eol; ]&eol; };&eol;&eol; if (params.use_default_message.toLowerCase() !== 'true') {&eol; // Problem message.&eol; if (params.event_value === '1' && params.event_update_status === '0') {&eol; facts.push({&eol; name: 'Event time',&eol; value: params.event_time + ' ' + params.event_date&eol; });&eol; }&eol; // Update message.&eol; else if (params.event_update_status === '1') {&eol; body.sections[0].text = params.event_update_user + ' ' + params.event_update_action + '.';&eol;&eol; if (params.event_update_message) {&eol; body.sections[0].text += '<br>Message:<br>' + params.event_update_message;&eol; }&eol;&eol; facts.push({&eol; name: 'Event update time',&eol; value: params.event_update_time + ' ' + params.event_update_date&eol; });&eol; }&eol; // Resolved message.&eol; else {&eol; facts.push({&eol; name: 'Recovery time',&eol; value: params.event_recovery_time + ' ' + params.event_recovery_date&eol; });&eol; }&eol;&eol; if (params.event_severity && params.event_severity !== '{EVENT.SEVERITY}') {&eol; facts.push({&eol; name: 'Severity',&eol; value: params.event_severity&eol; });&eol; }&eol;&eol;&eol; if (params.event_opdata && params.event_opdata !== '{EVENT.OPDATA}') {&eol; facts.push({&eol; name: 'Operational data',&eol; value: params.event_opdata&eol; });&eol; }&eol;&eol; if (params.event_tags && params.event_tags !== '{EVENT.TAGS}') {&eol; facts.push({&eol; name: 'Event tags',&eol; value: params.event_tags&eol; });&eol; }&eol;&eol; Object.keys(params)&eol; .forEach(function (key) {&eol; if (key.startsWith('fact_') && params[key] !== '') {&eol; facts.push({&eol; name: key.substring(5),&eol; value: params[key]&eol; });&eol; }&eol; else if (key.startsWith('openUri_') && params[key] !== '' && !params[key].startsWith('{')) {&eol; body.potentialAction.push({&eol; '@type': 'OpenUri',&eol; name: key.substring(8),&eol; targets: [&eol; {&eol; os: 'default',&eol; uri: params[key]&eol; }&eol; ]&eol; });&eol; }&eol; });&eol; body.sections[0].facts = facts;&eol; }&eol;&eol; body.sections[0].text = body.sections[0].text.replace(/(?:\r\n&pipe;\r&pipe;\n)/g, '<br>');&eol;&eol; request.addHeader('Content-Type: application/json');&eol;&eol; if (typeof params.HTTPProxy === 'string' && params.HTTPProxy !== '') {&eol; request.setProxy(params.HTTPProxy);&eol; }&eol;&eol; Zabbix.log(4, '[ MS Teams Webhook ] JSON: ' + JSON.stringify(body));&eol;&eol; var response = request.post(params.teams_endpoint, JSON.stringify(body));&eol;&eol; Zabbix.log(4, '[ MS Teams Webhook ] Response: ' + response);&eol;&eol; if (response === '1') {&eol; return 'OK';&eol; }&eol; else {&eol; Zabbix.log(4, '[ MS Teams Webhook ] FAILED with response: ' + response);&eol; throw response;&eol; }&eol;}&eol;catch (error) {&eol; Zabbix.log(3, '[ MS Teams Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |0 |0 | | | |
ROW |15 |4 |Redmine | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var Redmine = {&eol; params: {},&eol;&eol; setParams: function (params) {&eol; if (typeof params !== 'object') {&eol; return;&eol; }&eol;&eol; Redmine.params = params;&eol; if (typeof Redmine.params.url === 'string') {&eol; if (!Redmine.params.url.endsWith('/')) {&eol; Redmine.params.url += '/';&eol; }&eol; }&eol; },&eol;&eol; addCustomFields: function (data, fields) {&eol; if (typeof fields === 'object' && Object.keys(fields).length) {&eol; var schema = Redmine.getSchema();&eol;&eol; if (schema) {&eol; data.issue.custom_fields = [];&eol;&eol; Object.keys(fields)&eol; .forEach(function(field) {&eol; for (var idx in schema.custom_fields) {&eol; if (schema.custom_fields[idx].id != field) {&eol; continue;&eol; }&eol;&eol; var field_value;&eol;&eol; switch (schema.custom_fields[idx].field_format) {&eol; case 'string':&eol; field_value = fields[field];&eol; break;&eol;&eol; case 'int':&eol; field_value = parseInt(fields[field]);&eol; break;&eol;&eol; case 'float':&eol; field_value = parseFloat(fields[field]);&eol; break;&eol;&eol; case 'date':&eol; if (fields[field].match(/^\d{4}[.-]\d{2}[.-]\d{2}$/)) {&eol; field_value = fields[field].replace(/\./g, '-');&eol; }&eol; break;&eol; }&eol;&eol; if (field_value !== undefined) {&eol; data.issue.custom_fields.push({id: field, value: field_value});&eol; }&eol; }&eol; });&eol; }&eol; else {&eol; Zabbix.log(4, '[ Redmine Webhook ] Failed to retrieve field schema.');&eol; }&eol; }&eol;&eol; return data;&eol; },&eol;&eol; request: function (method, query, data) {&eol; ['url', 'access_key'].forEach(function (field) {&eol; if (typeof Redmine.params !== 'object' &pipe;&pipe; typeof Redmine.params[field] === 'undefined'&eol; &pipe;&pipe; Redmine.params[field] === '' ) {&eol; throw 'Required param is not set: "' + field + '".';&eol; }&eol; });&eol;&eol; var response,&eol; url = Redmine.params.url + query,&eol; request = new HttpRequest();&eol;&eol; if (typeof Redmine.HTTPProxy === 'string' && Redmine.HTTPProxy.trim() !== '') {&eol; request.setProxy(Redmine.HTTPProxy);&eol; }&eol;&eol; request.addHeader('Content-Type: application/json');&eol; request.addHeader('X-Redmine-API-Key: ' + Redmine.params.access_key);&eol;&eol; if (typeof data !== 'undefined') {&eol; data = JSON.stringify(data);&eol; }&eol;&eol; Zabbix.log(4, '[ Redmine Webhook ] Sending request: ' +&eol; url + ((typeof data === 'string') ? (' ' + data) : ''));&eol;&eol; switch (method) {&eol; case 'get':&eol; response = request.get(url, data);&eol; break;&eol;&eol; case 'post':&eol; response = request.post(url, data);&eol; break;&eol;&eol; case 'put':&eol; response = request.put(url, data);&eol; break;&eol;&eol; default:&eol; throw 'Unsupported HTTP request method: ' + method;&eol; }&eol;&eol; Zabbix.log(4, '[ Redmine Webhook ] Received response with status code ' + request.getStatus() + ': ' + response);&eol;&eol; if (response !== null) {&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; Zabbix.log(4, '[ Redmine Webhook ] Failed to parse response received from Redmine');&eol; response = null;&eol; }&eol; }&eol;&eol; if (request.getStatus() < 200 &pipe;&pipe; request.getStatus() >= 300) {&eol; var message = 'Request failed with status code ' + request.getStatus();&eol;&eol; if (response !== null && typeof response.errors !== 'undefined'&eol; && Object.keys(response.errors).length > 0) {&eol; message += ': ' + JSON.stringify(response.errors);&eol; }&eol; else if (response !== null && typeof response.errorMessages !== 'undefined'&eol; && Object.keys(response.errorMessages).length > 0) {&eol; message += ': ' + JSON.stringify(response.errorMessages);&eol; }&eol;&eol; throw message + ' Check debug log for more information.';&eol; }&eol;&eol; return {&eol; status: request.getStatus(),&eol; response: response&eol; };&eol; },&eol;&eol; getProjectID: function(name) {&eol; var result = Redmine.request('get', 'projects.json'),&eol; project_id;&eol;&eol; if (result.response) {&eol; var projects = result.response.projects &pipe;&pipe; [];&eol;&eol; for (var i in projects) {&eol; if (projects[i].name === name) {&eol; project_id = projects[i].id;&eol; break;&eol; }&eol; }&eol; }&eol; else {&eol; Zabbix.log(4, '[ Redmine Webhook ] Failed to retrieve project data.');&eol; }&eol;&eol; if (typeof project_id === 'undefined') {&eol; throw 'Cannot find project with name: ' + name;&eol; }&eol;&eol; return project_id;&eol; },&eol;&eol; getSchema: function() {&eol; var result = Redmine.request('get', 'custom_fields.json');&eol;&eol; return result.response;&eol; },&eol;&eol; createIssue: function(subject, description, priority, fields) {&eol; var project_id = /^\d+$/.test(Redmine.params.project)&eol; ? Redmine.params.project&eol; : Redmine.getProjectID(Redmine.params.project),&eol; data = {&eol; issue: {&eol; project_id: project_id,&eol; tracker_id: Redmine.params.tracker_id,&eol; subject: subject,&eol; description: description&eol; }&eol; },&eol; result;&eol;&eol; if (priority) {&eol; data.issue.priority_id = priority;&eol; }&eol;&eol; result = Redmine.request('post', 'issues.json', Redmine.addCustomFields(data, fields));&eol;&eol; if (typeof result.response !== 'object'&eol; &pipe;&pipe; typeof result.response.issue.id === 'undefined'&eol; &pipe;&pipe; result.status != 201) {&eol; throw 'Cannot create Redmine issue. Check debug log for more information.';&eol; }&eol;&eol; return result.response.issue.id;&eol; },&eol;&eol; updateIssue: function(note, fields) {&eol; var data = {&eol; issue: {&eol; notes: note &pipe;&pipe; ''&eol; }&eol; };&eol;&eol; Redmine.request('put', 'issues/' + Redmine.params.issue_key + '.json', Redmine.addCustomFields(data, fields));&eol; }&eol;};&eol;&eol;try {&eol; var params = JSON.parse(value),&eol; params_redmine = {},&eol; params_fields = {},&eol; params_update = {},&eol; result = {tags: {}},&eol; required_params = [&eol; 'alert_subject', 'tracker_id', 'project',&eol; 'event_source', 'event_value', 'event_update_status'&eol; ],&eol; severities = [&eol; {name: 'not_classified', color: '#97AAB3'},&eol; {name: 'information', color: '#7499FF'},&eol; {name: 'warning', color: '#FFC859'},&eol; {name: 'average', color: '#FFA059'},&eol; {name: 'high', color: '#E97659'},&eol; {name: 'disaster', color: '#E45959'},&eol; {name: 'resolved', color: '#009900'},&eol; {name: null, color: '#000000'}&eol; ],&eol; priority;&eol;&eol; Object.keys(params)&eol; .forEach(function (key) {&eol; if (key.startsWith('redmine_')) {&eol; params_redmine[key.substring(8)] = params[key];&eol; }&eol; else if (key.startsWith('customfield_')) {&eol; params_fields[key.substring(12)] = params[key];&eol; }&eol; else if (key.startsWith('event_update_')) {&eol; params_update[key.substring(13)] = params[key];&eol; }&eol; else if (required_params.indexOf(key) !== -1 && params[key].trim() === '') {&eol; throw 'Parameter "' + key + '" cannot be empty.';&eol; }&eol; });&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: ' + params.event_source + '\nMust be 0-3.';&eol; }&eol;&eol; // Check {EVENT.VALUE} for trigger-based and internal events.&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; // Check {EVENT.UPDATE.STATUS} only for trigger-based events.&eol; if (params.event_source === '0' && params.event_update_status !== '0' && params.event_update_status !== '1') {&eol; throw 'Incorrect "event_update_status" parameter given: ' + params.event_update_status + '\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_source !== '0' && params.event_value === '0') {&eol; throw 'Recovery operations are supported only for trigger-based actions.';&eol; }&eol;&eol; if (params.event_source === '0'&eol; && ((params.event_value === '1' && params.event_update_status === '1')&eol; &pipe;&pipe; (params.event_value === '0'&eol; && (params.event_update_status === '0' &pipe;&pipe; params.event_update_status === '1')))&eol; && (isNaN(parseInt(params.redmine_issue_key)) &pipe;&pipe; parseInt(params.redmine_issue_key) < 1 )) {&eol; throw 'Incorrect "redmine_issue_key" parameter given: ' + params.redmine_issue_key +&eol; '\nMust be positive integer.';&eol; }&eol;&eol; if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) {&eol; params.event_nseverity = '7';&eol; }&eol;&eol; if (params.event_value === '0') {&eol; params.event_nseverity = '6';&eol; }&eol;&eol; priority = params['severity_' + severities[params.event_nseverity].name];&eol; priority = priority && priority.trim() &pipe;&pipe; severities[7].name;&eol;&eol; Redmine.setParams(params_redmine);&eol; Redmine.HTTPProxy = params.HTTPProxy;&eol;&eol; // Create issue for non trigger-based events.&eol; if (params.event_source !== '0'&eol; && params.event_value !== '0') {&eol; Redmine.createIssue(params.alert_subject, params.alert_message, priority);&eol; }&eol; // Create issue for trigger-based events.&eol; else if (params.event_value === '1' && params_update.status === '0') {&eol; var issue_id = Redmine.createIssue(params.alert_subject,&eol; params.alert_subject + '\n' + params.alert_message + '\n' +&eol; params.zabbix_url + (params.zabbix_url.endsWith('/') ? '' : '/') +&eol; 'tr_events.php?triggerid=' + params.trigger_id + '&eventid=' + params.event_id + '\n',&eol; priority,&eol; params_fields);&eol;&eol; result.tags.__zbx_redmine_issue_id = issue_id;&eol; result.tags.__zbx_redmine_issuelink = params.redmine_url +&eol; (params.redmine_url.endsWith('/') ? '' : '/') + 'issues/' + issue_id;&eol; }&eol; // Update created issue for trigger-based event.&eol; else {&eol; Redmine.updateIssue(params.alert_subject + '\n' + params.alert_message, params_fields);&eol; }&eol;&eol; return JSON.stringify(result);&eol;}&eol;catch (error) {&eol; Zabbix.log(3, '[ Redmine Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__zbx_redmine_issuelink} |Redmine: issue #{EVENT.TAGS.__zbx_redmine_issue_id} | |
-ROW |16 |4 |Telegram | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var Telegram = {&eol; token: null,&eol; to: null,&eol; message: null,&eol; proxy: null,&eol; parse_mode: null,&eol;&eol; sendMessage: function() {&eol; var params = {&eol; chat_id: Telegram.to,&eol; text: Telegram.message,&eol; disable_web_page_preview: true,&eol; disable_notification: false&eol; },&eol; data,&eol; response,&eol; request = new HttpRequest(),&eol; url = 'https://api.telegram.org/bot' + Telegram.token + '/sendMessage';&eol;&eol; if (Telegram.parse_mode !== null) {&eol; params['parse_mode'] = Telegram.parse_mode;&eol; }&eol;&eol; if (Telegram.proxy) {&eol; request.setProxy(Telegram.proxy);&eol; }&eol;&eol; request.addHeader('Content-Type: application/json');&eol; data = JSON.stringify(params);&eol;&eol; // Remove replace() function if you want to see the exposed token in the log file.&eol; Zabbix.log(4, '[Telegram Webhook] URL: ' + url.replace(Telegram.token, '<TOKEN>'));&eol; Zabbix.log(4, '[Telegram Webhook] params: ' + data);&eol; response = request.post(url, data);&eol; Zabbix.log(4, '[Telegram Webhook] HTTP code: ' + request.getStatus());&eol;&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; response = null;&eol; }&eol;&eol; if (request.getStatus() !== 200 &pipe;&pipe; typeof response.ok !== 'boolean' &pipe;&pipe; response.ok !== true) {&eol; if (typeof response.description === 'string') {&eol; throw response.description;&eol; }&eol; else {&eol; throw 'Unknown error. Check debug log for more information.'&eol; }&eol; }&eol; }&eol;}&eol;&eol;try {&eol; var params = JSON.parse(value);&eol;&eol; if (typeof params.Token === 'undefined') {&eol; throw 'Incorrect value is given for parameter "Token": parameter is missing';&eol; }&eol;&eol; Telegram.token = params.Token;&eol;&eol; if (params.HTTPProxy) {&eol; Telegram.proxy = params.HTTPProxy;&eol; } &eol;&eol; if (['Markdown', 'HTML', 'MarkdownV2'].indexOf(params.ParseMode) !== -1) {&eol; Telegram.parse_mode = params.ParseMode;&eol; }&eol;&eol; Telegram.to = params.To;&eol; Telegram.message = params.Subject + '\n' + params.Message;&eol; Telegram.sendMessage();&eol;&eol; return 'OK';&eol;}&eol;catch (error) {&eol; Zabbix.log(4, '[Telegram Webhook] notification failed: ' + error);&eol; throw 'Sending failed: ' + error + '.';&eol;}|10s |0 |0 | | |https://git.zabbix.com/projects/ZBX/repos/zabbix/browse/templates/media/telegram&eol;&eol;1. Register bot: send "/newbot" to @BotFather and follow instructions&eol;2. Copy and paste the obtained token into the "Token" field above&eol;3. If you want to send personal notifications, you need to get chat id of the user you want to send messages to:&eol; 3.1. Send "/getid" to "@myidbot" in Telegram messenger&eol; 3.2. Copy returned chat id and save it in the "Telegram Webhook" media for the user&eol; 3.3. Ask the user to send "/start" to your bot (Telegram bot won't send anything to the user without it)&eol;4. If you want to send group notifications, you need to get group id of the group you want to send messages to:&eol; 4.1. Add "@myidbot" to your group&eol; 4.2. Send "/getgroupid@myidbot" in your group&eol; 4.3. Copy returned group id save it in the "Telegram Webhook" media for the user you created for group notifications&eol; 4.4. Send "/start@your_bot_name_here" in your group (Telegram bot won't send anything to the group without it)|
+ROW |16 |4 |Telegram | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var Telegram = {&eol; token: null,&eol; to: null,&eol; message: null,&eol; proxy: null,&eol; parse_mode: null,&eol;&eol; escapeMarkup: function (str, mode) {&eol; switch (mode) {&eol; case 'markdown':&eol; return str.replace(/([_*\[`])/g, '\\$&');&eol;&eol; case 'markdownv2':&eol; return str.replace(/([_*\[\]()~`>#+\-=&pipe;{}.!])/g, '\\$&');&eol;&eol; default:&eol; return str;&eol; }&eol; },&eol;&eol; sendMessage: function () {&eol; var params = {&eol; chat_id: Telegram.to,&eol; text: Telegram.message,&eol; disable_web_page_preview: true,&eol; disable_notification: false&eol; },&eol; data,&eol; response,&eol; request = new HttpRequest(),&eol; url = 'https://api.telegram.org/bot' + Telegram.token + '/sendMessage';&eol;&eol; if (Telegram.parse_mode !== null) {&eol; params['parse_mode'] = Telegram.parse_mode;&eol; }&eol;&eol; if (Telegram.proxy) {&eol; request.setProxy(Telegram.proxy);&eol; }&eol;&eol; request.addHeader('Content-Type: application/json');&eol; data = JSON.stringify(params);&eol;&eol; // Remove replace() function if you want to see the exposed token in the log file.&eol; Zabbix.log(4, '[Telegram Webhook] URL: ' + url.replace(Telegram.token, '<TOKEN>'));&eol; Zabbix.log(4, '[Telegram Webhook] params: ' + data);&eol; response = request.post(url, data);&eol; Zabbix.log(4, '[Telegram Webhook] HTTP code: ' + request.getStatus());&eol;&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; response = null;&eol; }&eol;&eol; if (request.getStatus() !== 200 &pipe;&pipe; typeof response.ok !== 'boolean' &pipe;&pipe; response.ok !== true) {&eol; if (typeof response.description === 'string') {&eol; throw response.description;&eol; }&eol; else {&eol; throw 'Unknown error. Check debug log for more information.';&eol; }&eol; }&eol; }&eol;};&eol;&eol;try {&eol; var params = JSON.parse(value);&eol;&eol; if (typeof params.Token === 'undefined') {&eol; throw 'Incorrect value is given for parameter "Token": parameter is missing';&eol; }&eol;&eol; Telegram.token = params.Token;&eol;&eol; if (params.HTTPProxy) {&eol; Telegram.proxy = params.HTTPProxy;&eol; } &eol;&eol; params.ParseMode = params.ParseMode.toLowerCase();&eol;&eol; if (['markdown', 'html', 'markdownv2'].indexOf(params.ParseMode) !== -1) {&eol; Telegram.parse_mode = params.ParseMode;&eol; }&eol;&eol; Telegram.to = params.To;&eol; Telegram.message = params.Subject + '\n' + params.Message;&eol;&eol; if (['markdown', 'markdownv2'].indexOf(params.ParseMode) !== -1) {&eol; Telegram.message = Telegram.escapeMarkup(Telegram.message, params.ParseMode);&eol; }&eol;&eol; Telegram.sendMessage();&eol;&eol; return 'OK';&eol;}&eol;catch (error) {&eol; Zabbix.log(4, '[Telegram Webhook] notification failed: ' + error);&eol; throw 'Sending failed: ' + error + '.';&eol;}|10s |0 |0 | | |https://git.zabbix.com/projects/ZBX/repos/zabbix/browse/templates/media/telegram&eol;&eol;1. Register bot: send "/newbot" to @BotFather and follow instructions&eol;2. Copy and paste the obtained token into the "Token" field above&eol;3. If you want to send personal notifications, you need to get chat id of the user you want to send messages to:&eol; 3.1. Send "/getid" to "@myidbot" in Telegram messenger&eol; 3.2. Copy returned chat id and save it in the "Telegram Webhook" media for the user&eol; 3.3. Ask the user to send "/start" to your bot (Telegram bot won't send anything to the user without it)&eol;4. If you want to send group notifications, you need to get group id of the group you want to send messages to:&eol; 4.1. Add "@myidbot" to your group&eol; 4.2. Send "/getgroupid@myidbot" in your group&eol; 4.3. Copy returned group id save it in the "Telegram Webhook" media for the user you created for group notifications&eol; 4.4. Send "/start@your_bot_name_here" in your group (Telegram bot won't send anything to the group without it)|
ROW |17 |4 |Zendesk | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var Zendesk = {&eol; params: {},&eol;&eol; setParams: function (params) {&eol; if (typeof params !== 'object') {&eol; return;&eol; }&eol;&eol; Zendesk.params = params;&eol; if (typeof Zendesk.params.url === 'string') {&eol; if (!Zendesk.params.url.endsWith('/')) {&eol; Zendesk.params.url += '/';&eol; }&eol; Zendesk.params.url += 'api/v2/';&eol; }&eol; },&eol;&eol; addCustomFields: function (data, fields) {&eol; if (typeof fields === 'object' && Object.keys(fields).length) {&eol; var schema = Zendesk.getSchema(),&eol; arr = [],&eol; i,&eol; n;&eol;&eol; if (schema) {&eol; Object.keys(fields)&eol; .forEach(function(field) {&eol; for (i = 0, n = schema.ticket_fields.length; i < n; i++) {&eol; if (schema.ticket_fields[i].id == field&eol; && ['text', 'integer', 'date'].indexOf(schema.ticket_fields[i].type) !== -1){&eol;&eol; switch (schema.ticket_fields[i].type) {&eol; case 'integer':&eol; fields[field] = parseInt(fields[field]);&eol; break;&eol; case 'date':&eol; if (fields[field].match(/^\d{4}[.-]\d{2}[.-]\d{2}$/) !== null) {&eol; fields[field] = fields[field].replace(/\./g, '-');&eol; }&eol; else {&eol; fields[field] = '';&eol; }&eol; break;&eol; }&eol;&eol; arr.push({id: field, value: fields[field]});&eol; break;&eol; }&eol; }&eol; });&eol;&eol; if (arr.length) {&eol; data.ticket['custom_fields'] = arr;&eol; }&eol; }&eol; else {&eol; Zabbix.log(4, '[Zendesk Webhook] Failed to retrieve field schema.');&eol; }&eol; }&eol;&eol; return data;&eol; },&eol;&eol; request: function (method, query, data) {&eol; ['url', 'token', 'type'].forEach(function (field) {&eol; if (typeof Zendesk.params !== 'object' &pipe;&pipe; typeof Zendesk.params[field] === 'undefined') {&eol; throw 'Required Zendesk param is not set: ' + field + '\n' + Zendesk.params[field];&eol; }&eol; });&eol;&eol; var response,&eol; url = Zendesk.params.url + query,&eol; request = new HttpRequest();&eol;&eol; if (typeof Zendesk.HTTPProxy === 'string' && Zendesk.HTTPProxy.trim() !== '') {&eol; request.setProxy(Zendesk.HTTPProxy);&eol; }&eol;&eol; request.addHeader('Content-Type: application/json');&eol; request.addHeader('Authorization: Basic ' + btoa(Zendesk.params.token));&eol;&eol; if (typeof data !== 'undefined') {&eol; data = JSON.stringify(data);&eol; }&eol;&eol; Zabbix.log(4, '[Zendesk Webhook] Sending request: ' + url + ((typeof data === 'string') ? (' ' + data) : ''));&eol;&eol; switch (method) {&eol; case 'get':&eol; response = request.get(url, data);&eol; break;&eol;&eol; case 'post':&eol; response = request.post(url, data);&eol; break;&eol;&eol; case 'put':&eol; response = request.put(url, data);&eol; break;&eol;&eol; default:&eol; throw 'Unsupported HTTP request method: ' + method;&eol; }&eol;&eol; Zabbix.log(4, '[Zendesk Webhook] Received response with status code ' + request.getStatus() + '. ' + response);&eol;&eol; if (response !== null) {&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; Zabbix.log(4, '[Zendesk Webhook] Failed to parse response received from Zendesk.');&eol; }&eol; }&eol;&eol; if (request.getStatus() < 200 &pipe;&pipe; request.getStatus() >= 300) {&eol; var message = 'Request failed with status code ' + request.getStatus();&eol;&eol; if (response !== null && typeof response.error !== 'undefined'&eol; && Object.keys(response.error).length > 0) {&eol; message += ': ' + JSON.stringify(response.error);&eol; }&eol; else if (response !== null && typeof response.description !== 'undefined'&eol; && Object.keys(response.description).length > 0) {&eol; message += ': ' + JSON.stringify(response.description);&eol; }&eol; else {&eol; message += '. ' + response;&eol; }&eol; throw message + '. Check debug log for more information.';&eol; }&eol;&eol; return {&eol; status: request.getStatus(),&eol; response: response&eol; };&eol; },&eol;&eol; getSchema: function() {&eol; var result = Zendesk.request('get', 'ticket_fields.json');&eol;&eol; return result.response;&eol; },&eol;&eol; createIssue: function(data, fields) {&eol; var result = Zendesk.request('post', 'tickets.json', Zendesk.addCustomFields(data, fields));&eol;&eol; if (typeof result.response !== 'object' &pipe;&pipe; typeof result.response.ticket.id === 'undefined'&eol; &pipe;&pipe; result.status != 201) {&eol; throw 'Cannot create Zendesk issue. Check debug log for more information.';&eol; }&eol;&eol; return result.response.ticket.id;&eol; },&eol;&eol; updateIssue: function(data, fields) {&eol; Zendesk.request('put', 'tickets/' + Zendesk.params.issue_key + '.json', Zendesk.addCustomFields(data, fields));&eol; }&eol;};&eol;&eol;try {&eol; var params = JSON.parse(value),&eol; fields = {},&eol; zendesk = {},&eol; update = {},&eol; data = {},&eol; result = {tags: {}},&eol; required_params = [&eol; 'alert_subject',&eol; 'alert_message',&eol; 'event_id',&eol; 'event_source',&eol; 'event_value',&eol; 'event_update_status'&eol; ],&eol; severities = [&eol; {name: 'not_classified', color: '#97AAB3'},&eol; {name: 'information', color: '#7499FF'},&eol; {name: 'warning', color: '#FFC859'},&eol; {name: 'average', color: '#FFA059'},&eol; {name: 'high', color: '#E97659'},&eol; {name: 'disaster', color: '#E45959'},&eol; {name: 'resolved', color: '#009900'},&eol; {name: 'default', color: '#000000'}&eol; ],&eol; priority;&eol;&eol; Object.keys(params)&eol; .forEach(function (key) {&eol; if (key.startsWith('zendesk_')) {&eol; zendesk[key.substring(8)] = params[key];&eol; }&eol; else if (key.startsWith('customfield_')) {&eol; fields[key.substring(12)] = params[key];&eol; }&eol; else if (key.startsWith('event_update_')) {&eol; update[key.substring(13)] = params[key];&eol; }&eol; else if (required_params.indexOf(key) !== -1 && params[key].trim() === '') {&eol; throw 'Parameter ' + key + ' cannot be empty.';&eol; }&eol; });&eol;&eol; // Possible values: question, incident, problems, task&eol; if (['question', 'incident', 'problem', 'task'].indexOf(params.zendesk_type) === -1) {&eol; throw 'Incorrect "zendesk_type" parameter given: ' + params.zendesk_type +&eol; '\nMust be one of question, incident, problem, task.';&eol; }&eol;&eol; // Possible values: 0 - Trigger, 1 - Discovery, 2 - Autoregistration, 3 - Internal.&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: ' + params.event_source + '\nMust be 0-3.';&eol; }&eol;&eol; // Check {EVENT.VALUE} for trigger-based and internal events.&eol; // Possible values: 1 for problem, 0 for recovering&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; // Check {EVENT.UPDATE.STATUS} only for trigger-based events.&eol; // Possible values: 0 - Webhook was called because of problem/recovery event, 1 - Update operation.&eol; if (params.event_source === '0' && params.event_update_status !== '0' && params.event_update_status !== '1') {&eol; throw 'Incorrect "event_update_status" parameter given: ' + params.event_update_status + '\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_source !== '0' && params.event_value === '0') {&eol; throw 'Recovery operations are supported only for trigger-based actions.';&eol; }&eol;&eol; // Zendesk_issue_key must be a positive integer if an update action is being performed.&eol; if (params.event_source === '0' && ((params.event_value === '1' && params.event_update_status === '1')&eol; &pipe;&pipe; (params.event_value === '0' && (params.event_update_status === '0' &pipe;&pipe; params.event_update_status === '1')))&eol; && (isNaN(parseInt(params.zendesk_issue_key)) &pipe;&pipe; parseInt(params.zendesk_issue_key) < 1 )) {&eol; throw 'Incorrect "zendesk_issue_key" parameter given: ' + params.zendesk_issue_key +&eol; '\nMust be positive integer.';&eol; }&eol;&eol; if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) {&eol; params.event_nseverity = '7';&eol; }&eol;&eol; if (params.event_value === '0') {&eol; params.event_nseverity = '6';&eol; }&eol;&eol; priority = params['severity_' + severities[params.event_nseverity].name] &pipe;&pipe; severities[7].name;&eol;&eol; Zendesk.setParams(zendesk);&eol; Zendesk.HTTPProxy = params.HTTPProxy;&eol;&eol; // Create issue for non trigger-based events.&eol; if (params.event_source !== '0' && params.event_value !== '0') {&eol; data = {&eol; ticket: {&eol; external_id: params.event_id,&eol; type: Zendesk.params.type,&eol; status: 'new',&eol; subject: params.alert_subject,&eol; comment: {&eol; body: params.alert_message,&eol; public: 'false'&eol; },&eol; priority: priority,&eol; tags: params.event_tags&eol; }&eol; };&eol;&eol; Zendesk.createIssue(data, fields);&eol; }&eol; // Create issue for trigger-based events.&eol; else if (params.event_value === '1' && update.status === '0') {&eol; data = {&eol; ticket: {&eol; external_id: params.event_id,&eol; type: Zendesk.params.type,&eol; status: 'new',&eol; subject: params.alert_subject,&eol; comment: {&eol; body: params.zbxurl + (params.zbxurl.endsWith('/') ? '' : '/') + 'tr_events.php?triggerid=' +&eol; params.trigger_id + '&eventid=' + params.event_id + '\n' + params.alert_message,&eol; public: 'false'&eol; },&eol; priority: priority,&eol; tags: params.event_tags&eol; }&eol; };&eol; var key = Zendesk.createIssue(data, fields);&eol;&eol; result.tags.__zbx_zdk_issuekey = key;&eol; result.tags.__zbx_zdk_issuelink = params.zendesk_url +&eol; (params.zendesk_url.endsWith('/') ? '' : '/') + 'agent/tickets/' + key;&eol; }&eol; // Update created issue for trigger-based event.&eol; else {&eol; data = {&eol; ticket: {&eol; type: Zendesk.params.type,&eol; subject: params.alert_subject,&eol; comment: {&eol; body: params.alert_message,&eol; public: 'false'&eol; }&eol; }&eol; };&eol;&eol; Zendesk.updateIssue(data, fields);&eol; }&eol;&eol; return JSON.stringify(result);&eol;}&eol;catch (error) {&eol; Zabbix.log(3, '[Zendesk Webhook] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__zbx_zdk_issuelink} |Zendesk: {EVENT.TAGS.__zbx_zdk_issuekey} | |
ROW |18 |4 |ServiceNow | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var ServiceNow = {&eol; params: {},&eol;&eol; setParams: function (params) {&eol; if (typeof params !== 'object') {&eol; return;&eol; }&eol;&eol; ServiceNow.params = params;&eol; if (typeof ServiceNow.params.url === 'string') {&eol; if (!ServiceNow.params.url.endsWith('/')) {&eol; ServiceNow.params.url += '/';&eol; }&eol;&eol; ServiceNow.params.url += 'api/now/table/incident';&eol; }&eol; },&eol;&eol; setProxy: function (HTTPProxy) {&eol; ServiceNow.HTTPProxy = HTTPProxy;&eol; },&eol;&eol; setFields: function (data, fields) {&eol; if (typeof fields === 'object' && Object.keys(fields).length) {&eol; Object.keys(fields)&eol; .forEach(function(field) {&eol; data[field] = (fields[field].match(/^\d{4}\.\d{2}\.\d{2}$/) !== null)&eol; ? fields[field].replace(/\./g, '-')&eol; : fields[field];&eol; });&eol; }&eol; },&eol;&eol; request: function (method, data) {&eol; ['url', 'user', 'password'].forEach(function (field) {&eol; if (typeof ServiceNow.params !== 'object' &pipe;&pipe; typeof ServiceNow.params[field] === 'undefined'&eol; &pipe;&pipe; ServiceNow.params[field] === '' ) {&eol; throw 'Required ServiceNow param is not set: "' + field + '".';&eol; }&eol; });&eol;&eol; var response,&eol; url = ServiceNow.params.url,&eol; request = new HttpRequest();&eol;&eol; request.addHeader('Content-Type: application/json');&eol; request.addHeader('Authorization: Basic ' + btoa(ServiceNow.params.user + ':' + ServiceNow.params.password));&eol;&eol; if (typeof ServiceNow.HTTPProxy !== 'undefined' && ServiceNow.HTTPProxy !== '') {&eol; request.setProxy(ServiceNow.HTTPProxy);&eol; }&eol;&eol; if (typeof data !== 'undefined') {&eol; data = JSON.stringify(data);&eol; }&eol;&eol; Zabbix.log(4, '[ ServiceNow Webhook ] Sending request: ' + url + ((typeof data === 'string')&eol; ? ('\n' + data)&eol; : ''));&eol;&eol; switch (method) {&eol; case 'get':&eol; response = request.get(url, data);&eol; break;&eol;&eol; case 'post':&eol; response = request.post(url, data);&eol; break;&eol;&eol; case 'put':&eol; response = request.put(url, data);&eol; break;&eol;&eol; default:&eol; throw 'Unsupported HTTP request method: ' + method;&eol; }&eol;&eol; Zabbix.log(4, '[ ServiceNow Webhook ] Received response with status code ' +&eol; request.getStatus() + '\n' + response);&eol;&eol; if (response !== null) {&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; Zabbix.log(4, '[ ServiceNow Webhook ] Failed to parse response received from ServiceNow');&eol; response = null;&eol; }&eol; }&eol;&eol; if (request.getStatus() < 200 &pipe;&pipe; request.getStatus() >= 300) {&eol; var message = 'Request failed with status code ' + request.getStatus();&eol;&eol; if (response !== null && typeof response.error.message !== 'undefined'&eol; && Object.keys(response.error).length > 0) {&eol; message += ': ' + JSON.stringify(response.error.message);&eol; }&eol;&eol; throw message + ' Check debug log for more information.';&eol; }&eol; else if (typeof response.result !== 'object' &pipe;&pipe; typeof response.result.sys_id === 'undefined') {&eol; throw 'Cannot create ServiceNow incident. Check debug log for more information.';&eol; }&eol;&eol; return response.result;&eol; }&eol;};&eol;&eol;try {&eol; var params = JSON.parse(value),&eol; fields = {},&eol; servicenow = {},&eol; data = {},&eol; result = {tags: {}},&eol; required_params = [&eol; 'alert_subject', 'alert_message', 'event_source', 'event_value',&eol; 'event_update_status', 'event_recovery_value', 'event_nseverity'&eol; ],&eol; severities = [&eol; {name: 'not_classified', color: '#97AAB3'},&eol; {name: 'information', color: '#7499FF'},&eol; {name: 'warning', color: '#FFC859'},&eol; {name: 'average', color: '#FFA059'},&eol; {name: 'high', color: '#E97659'},&eol; {name: 'disaster', color: '#E45959'},&eol; {name: 'resolved', color: '#009900'},&eol; {name: 'default', color: '#000000'}&eol; ],&eol; method = 'post',&eol; process_tags = true;&eol;&eol; Object.keys(params)&eol; .forEach(function (key) {&eol; if (key.startsWith('servicenow_')) {&eol; servicenow[key.substring(11)] = params[key];&eol; }&eol; else if (key.startsWith('u_')) {&eol; fields[key] = params[key];&eol; }&eol; else if (required_params.indexOf(key) !== -1 && params[key] === '') {&eol; throw 'Parameter "' + key + '" can\'t be empty.';&eol; }&eol; });&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: ' + params.event_source + '\nMust be 0-3.';&eol; }&eol;&eol; if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) {&eol; params.event_nseverity = '7';&eol; }&eol;&eol; // Check {EVENT.VALUE} for trigger-based and internal events.&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; // Check {EVENT.UPDATE.STATUS} only for trigger-based events.&eol; if (params.event_update_status !== '0' && params.event_update_status !== '1' && params.event_source === '0') {&eol; throw 'Incorrect "event_update_status" parameter given: ' + params.event_update_status + '\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_source !== '0' && params.event_recovery_value === '0') {&eol; throw 'Recovery operations are supported only for trigger-based actions.';&eol; }&eol;&eol; data.short_description = params.alert_subject;&eol; data.description = params.alert_message;&eol; data.comments = params.alert_message;&eol;&eol; if (typeof params['urgency_for_' + severities[params.event_nseverity].name] !== 'undefined') {&eol; data.urgency = params['urgency_for_' + severities[params.event_nseverity].name];&eol; }&eol;&eol; ServiceNow.setParams(servicenow);&eol; ServiceNow.setProxy(params.HTTPProxy);&eol; ServiceNow.setFields(data, fields);&eol;&eol; if (params.event_source === '0' && (params.event_value === '0' &pipe;&pipe; params.event_update_status === '1')) {&eol; process_tags = false;&eol; method = 'put';&eol; delete data.description;&eol; delete data.urgency;&eol; ServiceNow.params.url += '/' + params.servicenow_sys_id;&eol; }&eol;&eol; var response = ServiceNow.request(method, data);&eol;&eol; if (process_tags) {&eol; result.tags.__zbx_servicenow_sys_id = response.sys_id;&eol; result.tags.__zbx_servicenow_link = params.servicenow_url +&eol; (params.servicenow_url.endsWith('/') ? '' : '/') + 'incident.do?sys_id=' + response.sys_id;&eol; result.tags.__zbx_servicenow_number = response.number;&eol; }&eol;&eol; return JSON.stringify(result);&eol;}&eol;catch (error) {&eol; Zabbix.log(3, '[ ServiceNow Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__zbx_servicenow_link} |ServiceNow: {EVENT.TAGS.__zbx_servicenow_number} | |
ROW |19 |4 |Zammad | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var Zammad = {&eol; params: {},&eol;&eol; setParams: function (params) {&eol; if (typeof params !== 'object') {&eol; return;&eol; }&eol;&eol; Zammad.params = params;&eol; if (typeof Zammad.params.url === 'string') {&eol; if (!Zammad.params.url.endsWith('/')) {&eol; Zammad.params.url += '/';&eol; }&eol; }&eol; },&eol;&eol; request: function (method, query, data) {&eol; ['url', 'access_token'].forEach(function (field) {&eol; if (typeof Zammad.params !== 'object' &pipe;&pipe; typeof Zammad.params[field] === 'undefined'&eol; &pipe;&pipe; Zammad.params[field] === '' ) {&eol; throw 'Required param is not set: "' + field + '".';&eol; }&eol; });&eol;&eol; var response,&eol; url = Zammad.params.url + query,&eol; request = new HttpRequest();&eol;&eol; if (typeof Zammad.HTTPProxy === 'string' && Zammad.HTTPProxy.trim() !== '') {&eol; request.setProxy(Zammad.HTTPProxy);&eol; }&eol;&eol; request.addHeader('Content-Type: application/json');&eol; request.addHeader('Authorization: Token token=' + Zammad.params.access_token);&eol;&eol; if (typeof data !== 'undefined') {&eol; data = JSON.stringify(data);&eol; }&eol;&eol; Zabbix.log(4, '[ Zammad Webhook ] Sending request: ' +&eol; url + ((typeof data === 'string') ? (' ' + data) : ''));&eol;&eol; switch (method) {&eol; case 'get':&eol; response = request.get(url, data);&eol; break;&eol;&eol; case 'post':&eol; response = request.post(url, data);&eol; break;&eol;&eol; case 'put':&eol; response = request.put(url, data);&eol; break;&eol;&eol; default:&eol; throw 'Unsupported HTTP request method: ' + method;&eol; }&eol;&eol; Zabbix.log(4, '[ Zammad Webhook ] Received response with status code ' + request.getStatus() + ': ' + response);&eol;&eol; if (response !== null) {&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; Zabbix.log(4, '[ Zammad Webhook ] Failed to parse response received from Zammad');&eol; response = null;&eol; }&eol; }&eol;&eol; if (request.getStatus() < 200 &pipe;&pipe; request.getStatus() >= 300) {&eol; var message = 'Request failed with status code ' + request.getStatus();&eol;&eol; if (response !== null && typeof response.errors !== 'undefined'&eol; && Object.keys(response.errors).length > 0) {&eol; message += ': ' + JSON.stringify(response.errors);&eol; }&eol; else if (response !== null && typeof response.errorMessages !== 'undefined'&eol; && Object.keys(response.errorMessages).length > 0) {&eol; message += ': ' + JSON.stringify(response.errorMessages);&eol; }&eol;&eol; throw message + ' Check debug log for more information.';&eol; }&eol;&eol; return {&eol; status: request.getStatus(),&eol; response: response&eol; };&eol; },&eol;&eol; setTicketTags: function(tags, ticket_id) {&eol; try {&eol; var tags_json = JSON.parse(tags),&eol; result;&eol;&eol; for (var i in tags_json) {&eol; result = Zammad.request('get',&eol; '/api/v1/tags/add?object=Ticket&o_id=' + ticket_id +&eol; '&item=' + tags_json[i].tag);&eol;&eol; if (typeof result.response !== 'object'&eol; &pipe;&pipe; result.status != 200) {&eol; Zabbix.log(4, '[ Zammad Webhook ] Cannot add ticket tag:' + tags_json[i].tag);&eol; }&eol; }&eol; }&eol; catch (error) {&eol; Zabbix.log(4, '[ Zammad Webhook ] Failed to add ticket tags:' + error);&eol; }&eol;&eol; return;&eol; },&eol;&eol; createTicket: function(subject, message, priority) {&eol; var data = {&eol; title: subject,&eol; group: 'Users',&eol; article: {&eol; subject: subject,&eol; body: message,&eol; type: 'note',&eol; internal: false&eol; },&eol; customer: Zammad.params.customer&eol; },&eol; result;&eol;&eol; if (priority) {&eol; data.priority_id = priority;&eol; }&eol;&eol; result = Zammad.request('post', 'api/v1/tickets', data);&eol;&eol; if (typeof result.response !== 'object'&eol; &pipe;&pipe; typeof result.response.id === 'undefined'&eol; &pipe;&pipe; result.status != 201) {&eol; throw 'Cannot create Zammad ticket. Check debug log for more information.';&eol; }&eol;&eol; return result.response.id;&eol; },&eol;&eol; updateTicket: function(subject, message) {&eol; var data = {&eol; ticket_id: Zammad.params.ticket_id,&eol; subject: subject,&eol; body: message &pipe;&pipe; '',&eol; type: 'note',&eol; internal: false&eol; };&eol;&eol; result = Zammad.request('post', 'api/v1/ticket_articles', data);&eol;&eol; if (typeof result.response !== 'object'&eol; &pipe;&pipe; typeof result.response.id === 'undefined'&eol; &pipe;&pipe; result.status != 201) {&eol; throw 'Cannot update Zammad ticket. Check debug log for more information.';&eol; }&eol; }&eol;};&eol;&eol;try {&eol; var params = JSON.parse(value),&eol; params_zammad = {},&eol; params_update = {},&eol; result = {tags: {}},&eol; required_params = [&eol; 'alert_subject', 'customer',&eol; 'event_source', 'event_value',&eol; 'event_update_status'&eol; ],&eol; severities = [&eol; {name: 'not_classified', color: '#97AAB3'},&eol; {name: 'information', color: '#7499FF'},&eol; {name: 'warning', color: '#FFC859'},&eol; {name: 'average', color: '#FFA059'},&eol; {name: 'high', color: '#E97659'},&eol; {name: 'disaster', color: '#E45959'},&eol; {name: 'resolved', color: '#009900'},&eol; {name: null, color: '#000000'}&eol; ],&eol; priority;&eol;&eol; Object.keys(params)&eol; .forEach(function (key) {&eol; if (key.startsWith('zammad_')) {&eol; params_zammad[key.substring(7)] = params[key].trim();&eol; }&eol; else if (key.startsWith('event_update_')) {&eol; params_update[key.substring(13)] = params[key];&eol; }&eol; else if (required_params.indexOf(key) !== -1 && params[key].trim() === '') {&eol; throw 'Parameter "' + key + '" cannot be empty.';&eol; }&eol; });&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: ' + params.event_source + '\nMust be 0-3.';&eol; }&eol;&eol; // Check {EVENT.VALUE} for trigger-based and internal events.&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; // Check {EVENT.UPDATE.STATUS} only for trigger-based events.&eol; if (params.event_source === '0' && params.event_update_status !== '0' && params.event_update_status !== '1') {&eol; throw 'Incorrect "event_update_status" parameter given: ' + params.event_update_status + '\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_source !== '0' && params.event_value === '0') {&eol; throw 'Recovery operations are supported only for trigger-based actions.';&eol; }&eol;&eol; if (params.event_source === '0'&eol; && ((params.event_value === '1' && params.event_update_status === '1')&eol; &pipe;&pipe; (params.event_value === '0'&eol; && (params.event_update_status === '0' &pipe;&pipe; params.event_update_status === '1')))&eol; && (isNaN(parseInt(params.zammad_ticket_id)) &pipe;&pipe; parseInt(params.zammad_ticket_id) < 1 )) {&eol; throw 'Incorrect "zammad_ticket_id" parameter given: ' + params.zammad_ticket_id +&eol; '\nMust be positive integer.';&eol; }&eol;&eol; if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) {&eol; params.event_nseverity = '7';&eol; }&eol;&eol; if (params.event_value === '0') {&eol; params.event_nseverity = '6';&eol; }&eol;&eol; priority = params['severity_' + severities[params.event_nseverity].name];&eol; priority = priority && priority.trim() &pipe;&pipe; severities[7].name;&eol;&eol; Zammad.setParams(params_zammad);&eol; Zammad.HTTPProxy = params.HTTPProxy;&eol;&eol; // Create ticket for non trigger-based events.&eol; if (params.event_source !== '0'&eol; && params.event_value !== '0') {&eol; Zammad.createTicket(params.alert_subject, params.alert_message, priority, params.event_tags);&eol; }&eol; // Create ticket for trigger-based events.&eol; else if (params.event_value === '1' && params_update.status === '0') {&eol; var ticket_id = Zammad.createTicket(params.alert_subject,&eol; params.alert_subject + '\n' + params.alert_message + '\n' +&eol; params.zabbix_url + (params.zabbix_url.endsWith('/') ? '' : '/') +&eol; 'tr_events.php?triggerid=' + params.trigger_id + '&eventid=' + params.event_id + '\n',&eol; priority);&eol;&eol; result.tags.__zbx_zammad_ticket_id = ticket_id;&eol; result.tags.__zbx_zammad_ticketlink = params.zammad_url +&eol; (params.zammad_url.endsWith('/') ? '' : '/') + '#ticket/zoom/' + ticket_id;&eol;&eol; if (Zammad.params.enable_tags.toLowerCase() === 'true') {&eol; Zammad.setTicketTags(params.event_tags, ticket_id);&eol; }&eol; }&eol; // Update created ticket for trigger-based event.&eol; else {&eol; Zammad.updateTicket(params.alert_subject, params.alert_message);&eol; }&eol;&eol; return JSON.stringify(result);&eol;}&eol;catch (error) {&eol; Zabbix.log(3, '[ Zammad Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__zbx_zammad_ticketlink} |Zammad: ticket #{EVENT.TAGS.__zbx_zammad_ticket_id} | |
diff --git a/create/src/templates.tmpl b/create/src/templates.tmpl
index 13132677477..c8f02098070 100644
--- a/create/src/templates.tmpl
+++ b/create/src/templates.tmpl
@@ -54,19 +54,19 @@ ROW |10186 |NULL |ICMP Ping
ROW |10188 |NULL |Interfaces Simple SNMP |3 |-1 |2 | | |Interfaces Simple SNMP |0 |NULL |Template Module Interfaces Simple (no ifXTable). This is the exact copy of Template Module Interfaces template with the exception that metrics from ifXTable are replaced with ifTable counters where possible. Use this template with devices where IF-MIB::ifXtable is not available. If supported by the host - use Template Module Interfaces template instead.&eol;&eol;MIBs used:&eol;IF-MIB&eol;&eol;Known Issues:&eol;&eol; Description: 32bit counters are used in this template (since there is no ifXtable available). If busy interfaces return incorrect bits sent/received - set update interval to 1m or less.&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |7cd8aaa8d18d4b22a79edfb769e839b3|
ROW |10190 |NULL |Interfaces SNMP |3 |-1 |2 | | |Interfaces SNMP |0 |NULL |Template Module Interfaces&eol;&eol;MIBs used:&eol;IF-MIB&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |809cd59886464ff3ad0a66d16fb1f2d8|
ROW |10192 |NULL |Interfaces Windows SNMP |3 |-1 |2 | | |Interfaces Windows SNMP |0 |NULL |Template Interfaces Windows&eol;&eol;MIBs used:&eol;IF-MIB&eol;&eol;Known Issues:&eol;&eol; Description: 32bit counters are used in this template (since 64bit are not supported by Windows OS). If busy interfaces return incorrect bits sent/received - set update interval to 1m or less.&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |d7af232ed629481e95d2df9952c519c8|
-ROW |10204 |NULL |Generic SNMP |3 |-1 |2 | | |Generic SNMP |0 |NULL |Template Module Generic&eol;&eol;MIBs used:&eol;SNMPv2-MIB&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |4cb1aabe2b704b5c882963c2ef87d8f6|
+ROW |10204 |NULL |Generic SNMP |3 |-1 |2 | | |Generic SNMP |0 |NULL |Template Module Generic&eol;&eol;MIBs used:&eol;SNMPv2-MIB&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |0 |4cb1aabe2b704b5c882963c2ef87d8f6|
ROW |10207 |NULL |Alcatel Timetra TiMOS SNMP |3 |-1 |2 | | |Alcatel Timetra TiMOS SNMP |0 |NULL |Template Net Alcatel Timetra TiMOS&eol;&eol;MIBs used:&eol;TIMETRA-CHASSIS-MIB&eol;TIMETRA-SYSTEM-MIB&eol;SNMPv2-MIB&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |53044571fb864d87af32473e08c76d0b|
ROW |10208 |NULL |Brocade FC SNMP |3 |-1 |2 | | |Brocade FC SNMP |0 |NULL |Template Net Brocade FC&eol;&eol;MIBs used:&eol;SW-MIB&eol;&eol;Known Issues:&eol;&eol; Description: no IF-MIB::ifAlias is available&eol; Version: v6.3.1c, v7.0.0c, v7.4.1c&eol; Device: all&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |de96d02bd5f242bfa31308ae2131d03f|
ROW |10209 |NULL |Brocade_Foundry Performance SNMP |3 |-1 |2 | | |Brocade_Foundry Performance SNMP |0 |NULL |Template Module Brocade_Foundry Performance&eol;&eol;MIBs used:&eol;FOUNDRY-SN-AGENT-MIB&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |c55052212c774e3fbab00343050b3db5|
ROW |10210 |NULL |Brocade_Foundry Nonstackable SNMP |3 |-1 |2 | | |Brocade_Foundry Nonstackable SNMP |0 |NULL |Template Net Brocade_Foundry Nonstackable&eol;&eol;MIBs used:&eol;FOUNDRY-SN-AGENT-MIB&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |6ecfb7083ddf45f183ab4be50cfba37a|
ROW |10211 |NULL |Brocade_Foundry Stackable SNMP |3 |-1 |2 | | |Brocade_Foundry Stackable SNMP |0 |NULL |Template Brocade_Foundry Stackable&eol;&eol;MIBs used:&eol;FOUNDRY-SN-AGENT-MIB&eol;FOUNDRY-SN-STACKING-MIB&eol;&eol;Known Issues:&eol;&eol; Description: Correct fan(returns fan status as 'other(1)' and temperature (returns 0) for the non-master Switches are not available in SNMP&eol; Version: Version 08.0.40b and above&eol; Device: ICX 7750 in stack&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |f64ad01567914165a493815e492fb315|
-ROW |10212 |NULL |Cisco CISCO-MEMORY-POOL-MIB SNMP |3 |-1 |2 | | |Cisco CISCO-MEMORY-POOL-MIB SNMP |0 |NULL |Template Cisco CISCO-MEMORY-POOL-MIB&eol;&eol;MIBs used:&eol;CISCO-MEMORY-POOL-MIB&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |d7c122cde75447248d4b1613cdc25d5b|
-ROW |10213 |NULL |Cisco CISCO-PROCESS-MIB SNMP |3 |-1 |2 | | |Cisco CISCO-PROCESS-MIB SNMP |0 |NULL |Template Cisco CISCO-PROCESS-MIB&eol;&eol;MIBs used:&eol;CISCO-PROCESS-MIB&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |f934f5e71db642c689ed2f945f73ce6c|
-ROW |10215 |NULL |Cisco OLD-CISCO-CPU-MIB SNMP |3 |-1 |2 | | |Cisco OLD-CISCO-CPU-MIB SNMP |0 |NULL |Template Cisco OLD-CISCO-CPU-MIB&eol;&eol;MIBs used:&eol;OLD-CISCO-CPU-MIB&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |1b0025aaf71f47ec91d08c17a399c6a6|
-ROW |10216 |NULL |Cisco Inventory SNMP |3 |-1 |2 | | |Cisco Inventory SNMP |0 |NULL |Template Cisco Inventory&eol;&eol;MIBs used:&eol;ENTITY-MIB&eol;SNMPv2-MIB&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |90c99055648f40df8517005a7670158c|
-ROW |10217 |NULL |Cisco CISCO-ENVMON-MIB SNMP |3 |-1 |2 | | |Cisco CISCO-ENVMON-MIB SNMP |0 |NULL |Template Cisco CISCO-ENVMON-MIB&eol;&eol;MIBs used:&eol;CISCO-ENVMON-MIB&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |51af5cf9312b41d38ab22e02c9af6bbc|
-ROW |10218 |NULL |Cisco IOS SNMP |3 |-1 |2 | | |Cisco IOS SNMP |0 |NULL |Template Cisco IOS Software releases 12.2(3.5) or later&eol;&eol;Known Issues:&eol;&eol; Description: no if(in&pipe;out)(Errors&pipe;Discards) are available for vlan ifType&eol; Version: IOS for example: 12.1(22)EA11, 15.4(3)M2&eol; Device: C2911, C7600&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |aa3ce9bd8c1d40a2b0f83f9e642e88ee|
-ROW |10220 |NULL |Cisco IOS prior to 12.0_3_T SNMP |3 |-1 |2 | | |Cisco IOS prior to 12.0_3_T SNMP |0 |NULL |Cisco IOS Software releases prior to 12.0(3)T&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |1bb42fbdb9054645a62ff81f14ba3b99|
+ROW |10212 |NULL |Cisco CISCO-MEMORY-POOL-MIB SNMP |3 |-1 |2 | | |Cisco CISCO-MEMORY-POOL-MIB SNMP |0 |NULL |Template Cisco CISCO-MEMORY-POOL-MIB&eol;&eol;MIBs used:&eol;CISCO-MEMORY-POOL-MIB&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |0 |d7c122cde75447248d4b1613cdc25d5b|
+ROW |10213 |NULL |Cisco CISCO-PROCESS-MIB SNMP |3 |-1 |2 | | |Cisco CISCO-PROCESS-MIB SNMP |0 |NULL |Template Cisco CISCO-PROCESS-MIB&eol;&eol;MIBs used:&eol;CISCO-PROCESS-MIB&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |0 |f934f5e71db642c689ed2f945f73ce6c|
+ROW |10215 |NULL |Cisco OLD-CISCO-CPU-MIB SNMP |3 |-1 |2 | | |Cisco OLD-CISCO-CPU-MIB SNMP |0 |NULL |Template Cisco OLD-CISCO-CPU-MIB&eol;&eol;MIBs used:&eol;OLD-CISCO-CPU-MIB&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |0 |1b0025aaf71f47ec91d08c17a399c6a6|
+ROW |10216 |NULL |Cisco Inventory SNMP |3 |-1 |2 | | |Cisco Inventory SNMP |0 |NULL |Template Cisco Inventory&eol;&eol;MIBs used:&eol;ENTITY-MIB&eol;SNMPv2-MIB&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |0 |90c99055648f40df8517005a7670158c|
+ROW |10217 |NULL |Cisco CISCO-ENVMON-MIB SNMP |3 |-1 |2 | | |Cisco CISCO-ENVMON-MIB SNMP |0 |NULL |Template Cisco CISCO-ENVMON-MIB&eol;&eol;MIBs used:&eol;CISCO-ENVMON-MIB&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |0 |51af5cf9312b41d38ab22e02c9af6bbc|
+ROW |10218 |NULL |Cisco IOS SNMP |3 |-1 |2 | | |Cisco IOS SNMP |0 |NULL |Template Cisco IOS Software releases 12.2(3.5) or later&eol;&eol;Known Issues:&eol;&eol; Description: no if(in&pipe;out)(Errors&pipe;Discards) are available for vlan ifType&eol; Version: IOS for example: 12.1(22)EA11, 15.4(3)M2&eol; Device: C2911, C7600&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |0 |aa3ce9bd8c1d40a2b0f83f9e642e88ee|
+ROW |10220 |NULL |Cisco IOS prior to 12.0_3_T SNMP |3 |-1 |2 | | |Cisco IOS prior to 12.0_3_T SNMP |0 |NULL |Cisco IOS Software releases prior to 12.0(3)T&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |0 |1bb42fbdb9054645a62ff81f14ba3b99|
ROW |10221 |NULL |Dell Force S-Series SNMP |3 |-1 |2 | | |Dell Force S-Series SNMP |0 |NULL |Template Dell Force S-Series&eol;&eol;MIBs used:&eol;F10-S-SERIES-CHASSIS-MIB&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |e5ec7acc7efc4ac491b6fa552ab077ae|
ROW |10222 |NULL |D-Link DES 7200 SNMP |3 |-1 |2 | | |D-Link DES 7200 SNMP |0 |NULL |Template D-Link DES 7200&eol;&eol;MIBs used:&eol;MY-PROCESS-MIB&eol;SNMPv2-MIB&eol;MY-MEMORY-MIB&eol;ENTITY-MIB&eol;MY-SYSTEM-MIB&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |395184b5d5b048a68e06c91154c56847|
ROW |10223 |NULL |D-Link DES_DGS Switch SNMP |3 |-1 |2 | | |D-Link DES_DGS Switch SNMP |0 |NULL |Template D-Link DES_DGS Switch&eol;&eol;MIBs used:&eol;DLINK-AGENT-MIB&eol;SNMPv2-MIB&eol;ENTITY-MIB&eol;EQUIPMENT-MIB&eol;&eol;Known Issues:&eol;&eol; Description: D-Link reports missing PSU as fail(4)&eol; Version: Firmware: 1.73R008,hardware revision: B1&eol; Device: DGS-3420-26SC Gigabit Ethernet Switch&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |d3176749a5274264938f487cd89d17eb|
@@ -84,9 +84,9 @@ ROW |10237 |NULL |Ubiquiti AirOS SNMP
ROW |10248 |NULL |Linux SNMP |3 |-1 |2 | | |Linux SNMP |0 |NULL |Template OS Linux&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/387225-discussion-thread-for-official-zabbix-template-for-linux&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |4d3a7adbb6964bd08f2b9d28e0da6496|
ROW |10249 |NULL |Windows SNMP |3 |-1 |2 | | |Windows SNMP |0 |NULL |Official Windows SNMP template. Requires Zabbix server 4.0.14, 4.2.8, 4.4.0 or newer (JSONPath function avg() used with types autoconversion).&eol;&eol;&eol;Known Issues:&eol;&eol; Description: Doesn't support In/Out 64 bit counters even though IfxTable is present:&eol;Currently, Windows gets it’s interface status from MIB-2. Since these 64bit SNMP counters (ifHCInOctets, ifHCOutOctets, etc.) are defined as an extension to IF-MIB, Microsoft has not implemented it.&eol;https://social.technet.microsoft.com/Forums/windowsserver/en-US/07b62ff0-94f6-40ca-a99d-d129c1b33d70/windows-2008-r2-snmp-64bit-counters-support?forum=winservergen&eol;&eol; Version: Win2008, Win2012R2.&eol;&eol; Description: Doesn't support ifXTable at all&eol; Version: WindowsXP&eol;&eol; Description: EtherLike MIB is not supported&eol; Version: *&eol; Device: *&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |f9a59315c8944853bb91c0a9ec3056d7|
ROW |10250 |NULL |HP Enterprise Switch SNMP |3 |-1 |2 | | |HP Enterprise Switch SNMP |0 |NULL |Template Net HP Enterprise Switch&eol;&eol;MIBs used:&eol;SEMI-MIB&eol;NETSWITCH-MIB&eol;HP-ICF-CHASSIS&eol;ENTITY-SENSORS-MIB&eol;ENTITY-MIB&eol;STATISTICS-MIB&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |cce20a5d149a48b7ac7f5383c3510883|
-ROW |10251 |NULL |Mellanox SNMP |3 |-1 |2 | | |Mellanox SNMP |0 |NULL |The updated template for monitoring the Mellanox network switches over SNMP agent. All items collected in one template without any linked templates.&eol;&eol;MIBs used:&eol;HOST-RESOURCES-MIB&eol;SNMPv2-MIB&eol;ENTITY-SENSORS-MIB&eol;ENTITY-STATE-MIB&eol;ENTITY-MIB&eol;IF-MIB&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |a60798c651604d93a062bec0f8a89751|
-ROW |10252 |NULL |Cisco CISCO-PROCESS-MIB IOS versions 12.0_3_T-12.2_3.5 SNMP|3 |-1 |2 | | |Cisco CISCO-PROCESS-MIB IOS versions 12.0_3_T-12.2_3.5 SNMP|0 |NULL |Template Module Cisco CISCO-PROCESS-MIB IOS versions 12.0_3_T-12.2_3.5&eol;&eol;MIBs used:&eol;CISCO-PROCESS-MIB&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |3eadb8a2ad4a479cb59bfa6402deee3f|
-ROW |10253 |NULL |Cisco IOS versions 12.0_3_T-12.2_3.5 SNMP |3 |-1 |2 | | |Cisco IOS versions 12.0_3_T-12.2_3.5 SNMP |0 |NULL |Cisco IOS Software releases later to 12.0(3)T and prior to 12.2(3.5)&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |40c233aaa3424fd29dc378022ff3461d|
+ROW |10251 |NULL |Mellanox SNMP |3 |-1 |2 | | |Mellanox SNMP |0 |NULL |The updated template for monitoring the Mellanox network switches over SNMP agent. All items collected in one template without any linked templates.&eol;&eol;MIBs used:&eol;HOST-RESOURCES-MIB&eol;SNMPv2-MIB&eol;ENTITY-SENSORS-MIB&eol;ENTITY-STATE-MIB&eol;ENTITY-MIB&eol;IF-MIB&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |0 |a60798c651604d93a062bec0f8a89751|
+ROW |10252 |NULL |Cisco CISCO-PROCESS-MIB IOS versions 12.0_3_T-12.2_3.5 SNMP|3 |-1 |2 | | |Cisco CISCO-PROCESS-MIB IOS versions 12.0_3_T-12.2_3.5 SNMP|0 |NULL |Template Module Cisco CISCO-PROCESS-MIB IOS versions 12.0_3_T-12.2_3.5&eol;&eol;MIBs used:&eol;CISCO-PROCESS-MIB&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |0 |3eadb8a2ad4a479cb59bfa6402deee3f|
+ROW |10253 |NULL |Cisco IOS versions 12.0_3_T-12.2_3.5 SNMP |3 |-1 |2 | | |Cisco IOS versions 12.0_3_T-12.2_3.5 SNMP |0 |NULL |Cisco IOS Software releases later to 12.0(3)T and prior to 12.2(3.5)&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |0 |40c233aaa3424fd29dc378022ff3461d|
ROW |10254 |NULL |Arista SNMP |3 |-1 |2 | | |Arista SNMP |0 |NULL |Template Net Arista&eol;&eol;MIBs used:&eol;ENTITY-SENSORS-MIB&eol;ENTITY-STATE-MIB&eol;ENTITY-MIB&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |26674f62500e4e79b9f470bbf962130d|
ROW |10255 |NULL |Dell iDRAC SNMP |3 |-1 |2 | | |Dell iDRAC SNMP |0 |NULL |Template Server iDRAC&eol;&eol;MIBs used:&eol;IDRAC-MIB-SMIv2&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |43dc5c8a9a0e4786b64e44422c7f32b4|
ROW |10256 |NULL |HP iLO SNMP |3 |-1 |2 | | |HP iLO SNMP |0 |NULL |Template Server HP iLO&eol;&eol;MIBs used:&eol;CPQSINFO-MIB&eol;CPQHLTH-MIB&eol;CPQIDA-MIB&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |c2a7ddca051d4b4a9553f339c57e47a9|
@@ -109,7 +109,7 @@ ROW |10274 |NULL |Linux memory by Zabbix agent
ROW |10275 |NULL |Linux block devices by Zabbix agent |3 |-1 |2 | | |Linux block devices by Zabbix agent |0 |NULL |Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |0 |45486dbbf5bf49f28866fcb212731cf0|
ROW |10276 |NULL |Linux network interfaces by Zabbix agent |3 |-1 |2 | | |Linux network interfaces by Zabbix agent |0 |NULL |Known Issues:&eol;&eol; Description: High interface utilization trigger is removed since currently it is not possible to retrieve interface speed to determine the max bandwidth.&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |0 |18ecfb2a7e754315bb8d7f71917153da|
ROW |10277 |NULL |Linux generic by Zabbix agent |3 |-1 |2 | | |Linux generic by Zabbix agent |0 |NULL |Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |0 |38f973ee1556494fadeacb2f6b1ec987|
-ROW |10285 |NULL |Linux by Prom |3 |-1 |2 | | |Linux by Prom |0 |NULL |Official Linux template using node exporter.&eol;&eol;Known Issues:&eol;&eol; Description: node_exporter v0.16.0 renamed many metrics. CPU utilization for 'guest' and 'guest_nice' metrics are not supported in this template with node_exporter < 0.16. Disk IO metrics are not supported. Other metrics provided as 'best effort'. &eol; See https://github.com/prometheus/node_exporter/releases/tag/v0.16.0 for details.&eol; Version: below 0.16.0&eol;&eol; Description: metric node_network_info with label 'device' cannot be found, so network discovery is not possible.&eol; Version: below 0.18&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/387225-discussion-thread-for-official-zabbix-template-for-linux&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |2506b0ca01884903b547b1e19b76ce6d|
+ROW |10285 |NULL |Linux by Prom |3 |-1 |2 | | |Linux by Prom |0 |NULL |Official Linux template using node exporter.&eol;&eol;Known Issues:&eol;&eol; Description: node_exporter v0.16.0 renamed many metrics. CPU utilization for 'guest' and 'guest_nice' metrics are not supported in this template with node_exporter < 0.16. Disk IO metrics are not supported. Other metrics provided as 'best effort'. &eol; See https://github.com/prometheus/node_exporter/releases/tag/v0.16.0 for details.&eol; Version: below 0.16.0&eol;&eol; Description: metric node_network_info with label 'device' cannot be found, so network discovery is not possible.&eol; Version: below 0.18&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/387225-discussion-thread-for-official-zabbix-template-for-linux&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |0 |2506b0ca01884903b547b1e19b76ce6d|
ROW |10286 |NULL |Windows CPU by Zabbix agent |3 |-1 |2 | | |Windows CPU by Zabbix agent |0 |NULL |Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |0 |e358504d59404f688e236444dd82d2c3|
ROW |10287 |NULL |Windows memory by Zabbix agent |3 |-1 |2 | | |Windows memory by Zabbix agent |0 |NULL |Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |0 |539b4b98f6fb4e12bbdf3bcdb85df2d1|
ROW |10288 |NULL |Windows filesystems by Zabbix agent |3 |-1 |2 | | |Windows filesystems by Zabbix agent |0 |NULL |Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |0 |cb28abff977b4b6eb34665ff2218163b|
@@ -205,24 +205,24 @@ ROW |10391 |NULL |Cisco Catalyst 3750V2-24PS SNMP
ROW |10392 |NULL |Cisco Catalyst 3750V2-24TS SNMP |3 |-1 |2 | | |Cisco Catalyst 3750V2-24TS SNMP |0 |NULL |Template Cisco Catalyst 3750V2-24TS&eol;&eol;MIBs used:&eol;CISCO-MEMORY-POOL-MIB&eol;IF-MIB&eol;EtherLike-MIB&eol;SNMPv2-MIB&eol;CISCO-PROCESS-MIB&eol;CISCO-ENVMON-MIB&eol;ENTITY-MIB&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |30d084c6b7844b7cab6cf820b00bb7b2|
ROW |10393 |NULL |Cisco Catalyst 3750V2-48PS SNMP |3 |-1 |2 | | |Cisco Catalyst 3750V2-48PS SNMP |0 |NULL |Template Cisco Catalyst 3750V2-48PS&eol;&eol;MIBs used:&eol;CISCO-MEMORY-POOL-MIB&eol;IF-MIB&eol;EtherLike-MIB&eol;SNMPv2-MIB&eol;CISCO-PROCESS-MIB&eol;CISCO-ENVMON-MIB&eol;ENTITY-MIB&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |ea096c13a09b4d7a9be0aab1cec95206|
ROW |10394 |NULL |Cisco Catalyst 3750V2-48TS SNMP |3 |-1 |2 | | |Cisco Catalyst 3750V2-48TS SNMP |0 |NULL |Template Cisco Catalyst 3750V2-48TS&eol;&eol;MIBs used:&eol;CISCO-MEMORY-POOL-MIB&eol;IF-MIB&eol;EtherLike-MIB&eol;SNMPv2-MIB&eol;CISCO-PROCESS-MIB&eol;CISCO-ENVMON-MIB&eol;ENTITY-MIB&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |f744679600844c07b2b4eedda9bc3d0c|
-ROW |10395 |NULL |APC UPS SNMP |3 |-1 |2 | | |APC UPS SNMP |0 |NULL |Template Power APC UPS&eol;&eol;MIBs used:&eol;PowerNet-MIB&eol;SNMPv2-MIB&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420730-discussion-thread-for-official-zabbix-template-apc-ups&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |3ec55c9966624ef5bc1b50502812d581|
+ROW |10395 |NULL |APC UPS SNMP |3 |-1 |2 | | |APC UPS SNMP |0 |NULL |Template Power APC UPS&eol;&eol;MIBs used:&eol;PowerNet-MIB&eol;SNMPv2-MIB&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420730-discussion-thread-for-official-zabbix-template-apc-ups&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |0 |3ec55c9966624ef5bc1b50502812d581|
ROW |10396 |NULL |NetApp AFF A700 by HTTP |3 |-1 |2 | | |NetApp AFF A700 by HTTP |0 |NULL |The template to monitor SAN NetApp AFF A700 cluster by Zabbix HTTP agent.&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |79267c69f54a4e59b4152aba4e8c4bd5|
ROW |10397 |NULL |TiDB PD by HTTP |3 |-1 |2 | | |TiDB PD by HTTP |0 |NULL |The template to monitor PD server of TiDB cluster by Zabbix that works without any external scripts.&eol;Most of the metrics are collected in one go, thanks to Zabbix bulk data collection.&eol;Don't forget to change the macros {$PD.URL}, {$PD.PORT}.&eol;&eol;Template `TiDB PD by HTTP` — collects metrics by HTTP agent from PD /metrics endpoint and from monitoring API.&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |43596328d4d74a5592906a9e08e3fd96|
ROW |10398 |NULL |TiDB by HTTP |3 |-1 |2 | | |TiDB by HTTP |0 |NULL |The template to monitor TiDB server of TiDB cluster by Zabbix that works without any external scripts.&eol;Most of the metrics are collected in one go, thanks to Zabbix bulk data collection.&eol;Don't forget to change the macros {$TIDB.URL}, {$TIDB.PORT}. &eol;&eol;Template `TiDB by HTTP` — collects metrics by HTTP agent from PD /metrics endpoint and from monitoring API.&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |8ec72ebbe3204d7789429640abcac610|
ROW |10399 |NULL |TiDB TiKV by HTTP |3 |-1 |2 | | |TiDB TiKV by HTTP |0 |NULL |The template to monitor TiKV server of TiDB cluster by Zabbix that works without any external scripts.&eol;Most of the metrics are collected in one go, thanks to Zabbix bulk data collection.&eol;Don't forget to change the macros {$TIKV.URL}, {$TIKV.PORT}. &eol;&eol;Template `TiDB TiKV by HTTP` — collects metrics by HTTP agent from TiKV /metrics endpoint.&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |3a0bbbb2ec0a4c58bba3ba3a3d6ce660|
-ROW |10400 |NULL |APC UPS Galaxy 3500 SNMP |3 |-1 |2 | | |APC UPS Galaxy 3500 SNMP |0 |NULL |Template Power APC UPS Galaxy 3500&eol;&eol;MIBs used:&eol;PowerNet-MIB&eol;SNMPv2-MIB&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420730-discussion-thread-for-official-zabbix-template-apc-ups&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |5d3971cd973b46e7915d7ae0750bac57|
-ROW |10401 |NULL |APC Smart-UPS 2200 RM SNMP |3 |-1 |2 | | |APC Smart-UPS 2200 RM SNMP |0 |NULL |Template Power APC Smart-UPS 2200 RM&eol;&eol;MIBs used:&eol;PowerNet-MIB&eol;SNMPv2-MIB&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420730-discussion-thread-for-official-zabbix-template-apc-ups&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |e8c0b2c40e884f1598d86f3edf020ea7|
-ROW |10402 |NULL |APC Smart-UPS 3000 XLM SNMP |3 |-1 |2 | | |APC Smart-UPS 3000 XLM SNMP |0 |NULL |Template Power APC Smart-UPS 3000 XLM&eol;&eol;MIBs used:&eol;PowerNet-MIB&eol;SNMPv2-MIB&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420730-discussion-thread-for-official-zabbix-template-apc-ups&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |eafd78764fde4110b9e46ae184f327ba|
-ROW |10403 |NULL |APC Smart-UPS RT 1000 RM XL SNMP |3 |-1 |2 | | |APC Smart-UPS RT 1000 RM XL SNMP |0 |NULL |Template Power APC Smart-UPS RT 1000 RM XL&eol;&eol;MIBs used:&eol;PowerNet-MIB&eol;SNMPv2-MIB&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420730-discussion-thread-for-official-zabbix-template-apc-ups&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |340ec6917c274ead8fab36925e57f30a|
-ROW |10404 |NULL |APC Smart-UPS RT 1000 XL SNMP |3 |-1 |2 | | |APC Smart-UPS RT 1000 XL SNMP |0 |NULL |Template Power APC Smart-UPS RT 1000 XL&eol;&eol;MIBs used:&eol;PowerNet-MIB&eol;SNMPv2-MIB&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420730-discussion-thread-for-official-zabbix-template-apc-ups&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |32d3c78ff44c4c3c9ff5b893ad7f5fc9|
+ROW |10400 |NULL |APC UPS Galaxy 3500 SNMP |3 |-1 |2 | | |APC UPS Galaxy 3500 SNMP |0 |NULL |Template Power APC UPS Galaxy 3500&eol;&eol;MIBs used:&eol;PowerNet-MIB&eol;SNMPv2-MIB&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420730-discussion-thread-for-official-zabbix-template-apc-ups&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |0 |5d3971cd973b46e7915d7ae0750bac57|
+ROW |10401 |NULL |APC Smart-UPS 2200 RM SNMP |3 |-1 |2 | | |APC Smart-UPS 2200 RM SNMP |0 |NULL |Template Power APC Smart-UPS 2200 RM&eol;&eol;MIBs used:&eol;PowerNet-MIB&eol;SNMPv2-MIB&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420730-discussion-thread-for-official-zabbix-template-apc-ups&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |0 |e8c0b2c40e884f1598d86f3edf020ea7|
+ROW |10402 |NULL |APC Smart-UPS 3000 XLM SNMP |3 |-1 |2 | | |APC Smart-UPS 3000 XLM SNMP |0 |NULL |Template Power APC Smart-UPS 3000 XLM&eol;&eol;MIBs used:&eol;PowerNet-MIB&eol;SNMPv2-MIB&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420730-discussion-thread-for-official-zabbix-template-apc-ups&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |0 |eafd78764fde4110b9e46ae184f327ba|
+ROW |10403 |NULL |APC Smart-UPS RT 1000 RM XL SNMP |3 |-1 |2 | | |APC Smart-UPS RT 1000 RM XL SNMP |0 |NULL |Template Power APC Smart-UPS RT 1000 RM XL&eol;&eol;MIBs used:&eol;PowerNet-MIB&eol;SNMPv2-MIB&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420730-discussion-thread-for-official-zabbix-template-apc-ups&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |0 |340ec6917c274ead8fab36925e57f30a|
+ROW |10404 |NULL |APC Smart-UPS RT 1000 XL SNMP |3 |-1 |2 | | |APC Smart-UPS RT 1000 XL SNMP |0 |NULL |Template Power APC Smart-UPS RT 1000 XL&eol;&eol;MIBs used:&eol;PowerNet-MIB&eol;SNMPv2-MIB&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420730-discussion-thread-for-official-zabbix-template-apc-ups&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |0 |32d3c78ff44c4c3c9ff5b893ad7f5fc9|
ROW |10405 |NULL |APC Smart-UPS SRT 5000 SNMP bkp |3 |-1 |2 | | |APC Smart-UPS SRT 5000 SNMP bkp |0 |NULL |Template Power APC Smart-UPS SRT 5000&eol;&eol;MIBs used:&eol;PowerNet-MIB&eol;SNMPv2-MIB&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420730-discussion-thread-for-official-zabbix-template-apc-ups&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |77e7f53c88f546a5ac0dc8b318c7cd24|
-ROW |10406 |NULL |APC Smart-UPS SRT 8000 SNMP |3 |-1 |2 | | |APC Smart-UPS SRT 8000 SNMP |0 |NULL |Template Power APC Smart-UPS SRT 8000&eol;&eol;MIBs used:&eol;PowerNet-MIB&eol;SNMPv2-MIB&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420730-discussion-thread-for-official-zabbix-template-apc-ups&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |b3caafda8c5345cc832ac3be3cefa615|
-ROW |10407 |NULL |APC UPS Symmetra LX SNMP |3 |-1 |2 | | |APC UPS Symmetra LX SNMP |0 |NULL |Template Power APC UPS Symmetra LX&eol;&eol;MIBs used:&eol;PowerNet-MIB&eol;SNMPv2-MIB&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420730-discussion-thread-for-official-zabbix-template-apc-ups&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |0b9a899ff8f1467c9fdf999d02b9fd77|
-ROW |10408 |NULL |APC UPS Symmetra RM SNMP |3 |-1 |2 | | |APC UPS Symmetra RM SNMP |0 |NULL |Template Power APC UPS Symmetra RM&eol;&eol;MIBs used:&eol;PowerNet-MIB&eol;SNMPv2-MIB&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420730-discussion-thread-for-official-zabbix-template-apc-ups&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |1dac0a88c3774315b90622a48031e369|
-ROW |10409 |NULL |APC UPS Symmetra RX SNMP |3 |-1 |2 | | |APC UPS Symmetra RX SNMP |0 |NULL |Template Power APC UPS Symmetra RX&eol;&eol;MIBs used:&eol;PowerNet-MIB&eol;SNMPv2-MIB&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420730-discussion-thread-for-official-zabbix-template-apc-ups&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |4ffb0f9103084384a98379ed533865e9|
+ROW |10406 |NULL |APC Smart-UPS SRT 8000 SNMP |3 |-1 |2 | | |APC Smart-UPS SRT 8000 SNMP |0 |NULL |Template Power APC Smart-UPS SRT 8000&eol;&eol;MIBs used:&eol;PowerNet-MIB&eol;SNMPv2-MIB&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420730-discussion-thread-for-official-zabbix-template-apc-ups&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |0 |b3caafda8c5345cc832ac3be3cefa615|
+ROW |10407 |NULL |APC UPS Symmetra LX SNMP |3 |-1 |2 | | |APC UPS Symmetra LX SNMP |0 |NULL |Template Power APC UPS Symmetra LX&eol;&eol;MIBs used:&eol;PowerNet-MIB&eol;SNMPv2-MIB&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420730-discussion-thread-for-official-zabbix-template-apc-ups&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |0 |0b9a899ff8f1467c9fdf999d02b9fd77|
+ROW |10408 |NULL |APC UPS Symmetra RM SNMP |3 |-1 |2 | | |APC UPS Symmetra RM SNMP |0 |NULL |Template Power APC UPS Symmetra RM&eol;&eol;MIBs used:&eol;PowerNet-MIB&eol;SNMPv2-MIB&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420730-discussion-thread-for-official-zabbix-template-apc-ups&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |0 |1dac0a88c3774315b90622a48031e369|
+ROW |10409 |NULL |APC UPS Symmetra RX SNMP |3 |-1 |2 | | |APC UPS Symmetra RX SNMP |0 |NULL |Template Power APC UPS Symmetra RX&eol;&eol;MIBs used:&eol;PowerNet-MIB&eol;SNMPv2-MIB&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420730-discussion-thread-for-official-zabbix-template-apc-ups&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |0 |4ffb0f9103084384a98379ed533865e9|
ROW |10410 |NULL |WildFly Domain by JMX |3 |-1 |2 | | |WildFly Domain by JMX |0 |NULL |Official JMX Template for WildFly.&eol;The metrics are collected by JMX. This template works with Domain Controller.&eol;You can set {$WILDFLY.USER} and {$WILDFLY.PASSWORD} macros in the template for using on the host level.&eol;&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |4b27e636b6ad4ce68511d344d5604999|
ROW |10411 |NULL |WildFly Server by JMX |3 |-1 |2 | | |WildFly Server by JMX |0 |NULL |Official JMX Template for WildFly.&eol;The metrics are collected by JMX. This template works with standalone and domain instances.&eol;You can set {$WILDFLY.USER} and {$WILDFLY.PASSWORD} macros in the template for using on the host level.&eol;&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |2bf5827343f0420792ad953f290baa05|
-ROW |10412 |NULL |APC Smart-UPS SRT 5000 SNMP |3 |-1 |2 | | |APC Smart-UPS SRT 5000 SNMP |0 |NULL |Template Power APC Smart-UPS SRT 5000&eol;&eol;MIBs used:&eol;PowerNet-MIB&eol;SNMPv2-MIB&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420730-discussion-thread-for-official-zabbix-template-apc-ups&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |8ec76aeb703747a5affdf435bc12f572|
+ROW |10412 |NULL |APC Smart-UPS SRT 5000 SNMP |3 |-1 |2 | | |APC Smart-UPS SRT 5000 SNMP |0 |NULL |Template Power APC Smart-UPS SRT 5000&eol;&eol;MIBs used:&eol;PowerNet-MIB&eol;SNMPv2-MIB&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420730-discussion-thread-for-official-zabbix-template-apc-ups&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |0 |8ec76aeb703747a5affdf435bc12f572|
ROW |10413 |NULL |Template App Nginx Plus by HTTP |3 |-1 |2 | | |Template App Nginx Plus by HTTP |0 |NULL |Get Nginx Plus metrics by HTTP agent.&eol;Metrics are collected by requests to Nginx Plus API.&eol;Don't forget to change macros {$NGINX.API.ENDPOINT}.&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |8cad0f2564694416b60bd8a414948641|
ROW |10414 |NULL |ZYXEL AAM1212-51 IES-612 SNMP |3 |-1 |2 | | |ZYXEL AAM1212-51 IES-612 SNMP |0 |NULL |ZYXEL AAM1212-51 / IES-612&eol;&eol;MIBs used:&eol;RFC1213-MIB&eol;ADSL-LINE-MIB&eol;ZYXEL-IESCOMMON-MIB&eol;IF-MIB&eol;&eol;Known Issues:&eol;&eol; Description: Incorrect handling of SNMP bulk requests. Disable the use of bulk requests in the SNMP interface settings.&eol; Version: all versions firmware&eol; Device: ZYXEL AAM1212-51 / IES-612&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/422668-discussion-thread-for-official-zabbix-templates-for-zyxel&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |3a71dcdcfe0b4a0e8284d8939d335cce|
ROW |10415 |NULL |ZYXEL ES3500-8PD SNMP |3 |-1 |2 | | |ZYXEL ES3500-8PD SNMP |0 |NULL |ZYXEL ES3500-8PD&eol;&eol;MIBs used:&eol;RFC1213-MIB&eol; ZYXEL-ES3500-8PD-MIB&eol;IF-MIB&eol;ZYXEL-ES3500-8PD-MIB&eol;&eol;Known Issues:&eol;&eol; Description: Incorrect handling of SNMP bulk requests. Disable the use of bulk requests in the SNMP interface settings.&eol; Version: all versions firmware&eol; Device: ZYXEL ES3500-8PD&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/422668-discussion-thread-for-official-zabbix-templates-for-zyxel&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |b8a6f34fd5c447b1b9310746a96f4e80|
@@ -238,7 +238,7 @@ ROW |10424 |NULL |ZYXEL MGS-3712F SNMP
ROW |10425 |NULL |ZYXEL MES3500-24S SNMP |3 |-1 |2 | | |ZYXEL MES3500-24S SNMP |0 |NULL |ZYXEL MES3500-24S&eol;&eol;MIBs used:&eol;RFC1213-MIB&eol;ZYXEL-HW-MONITOR-MIB&eol;ZYXEL-PORT-MIB&eol;ZYXEL-ES-COMMON&eol;ZYXEL-TRANSCEIVER-MIB&eol;IF-MIB&eol;&eol;Known Issues:&eol;&eol; Description: Incorrect handling of SNMP bulk requests. Disable the use of bulk requests in the SNMP interface settings.&eol; Version: all versions firmware&eol; Device: ZYXEL MGS3520-28&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/422668-discussion-thread-for-official-zabbix-templates-for-zyxel&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |89eef2fe23964f44bf9aec6d00e39efd|
ROW |10426 |NULL |ZYXEL MGS3520-28x SNMP |3 |-1 |2 | | |ZYXEL MGS3520-28x SNMP |0 |NULL |ZYXEL MGS3520-28x&eol;&eol;MIBs used:&eol;RFC1213-MIB&eol;ZYXEL-HW-MONITOR-MIB&eol;ZYXEL-PORT-MIB&eol;ZYXEL-ES-COMMON&eol;ZYXEL-TRANSCEIVER-MIB&eol;IF-MIB&eol;&eol;Known Issues:&eol;&eol; Description: Incorrect handling of SNMP bulk requests. Disable the use of bulk requests in the SNMP interface settings.&eol; Version: all versions firmware&eol; Device: ZYXEL MGS3520-28&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/422668-discussion-thread-for-official-zabbix-templates-for-zyxel&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |9cc843a085bb4ee5af0dc4d764a7eee9|
ROW |10427 |NULL |ZYXEL XGS-4728F SNMP |3 |-1 |2 | | |ZYXEL XGS-4728F SNMP |0 |NULL |ZYXEL XGS-4728F&eol;&eol;MIBs used:&eol;RFC1213-MIB&eol;ZYXEL-XGS4728F-MIB&eol;IF-MIB&eol; ZYXEL-XGS4728F-MIB&eol;&eol;Known Issues:&eol;&eol; Description: Incorrect handling of SNMP bulk requests. Disable the use of bulk requests in the SNMP interface settings.&eol; Version: all versions firmware&eol; Device: ZYXEL XGS-4728F&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/422668-discussion-thread-for-official-zabbix-templates-for-zyxel&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |ab18a5665b7d4bed876881b5c4e8ce51|
-ROW |10428 |NULL |Cisco UCS Manager SNMP |3 |-1 |2 | | |Cisco UCS Manager SNMP |0 |NULL |This is a template for Cisco UCS Manager monitoring via Zabbix SNMP Agent that works without any external scripts.&eol;&eol;&eol;MIBs used:&eol;CISCO-UNIFIED-COMPUTING-COMPUTE-MIB&eol;SNMPv2-MIB&eol;CISCO-UNIFIED-COMPUTING-PROCESSOR-MIB&eol;CISCO-UNIFIED-COMPUTING-EQUIPMENT-MIB&eol;CISCO-UNIFIED-COMPUTING-STORAGE-MIB&eol;IF-MIB&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/418396-discussion-thread-for-official-zabbix-templates-for-cisco&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |d5eb4ce08a334098a85e6e02c534be90|
+ROW |10428 |NULL |Cisco UCS Manager SNMP |3 |-1 |2 | | |Cisco UCS Manager SNMP |0 |NULL |This is a template for Cisco UCS Manager monitoring via Zabbix SNMP Agent that works without any external scripts.&eol;&eol;&eol;MIBs used:&eol;CISCO-UNIFIED-COMPUTING-COMPUTE-MIB&eol;SNMPv2-MIB&eol;CISCO-UNIFIED-COMPUTING-PROCESSOR-MIB&eol;CISCO-UNIFIED-COMPUTING-EQUIPMENT-MIB&eol;CISCO-UNIFIED-COMPUTING-STORAGE-MIB&eol;IF-MIB&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/418396-discussion-thread-for-official-zabbix-templates-for-cisco&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |0 |d5eb4ce08a334098a85e6e02c534be90|
ROW |10429 |NULL |HPE ProLiant BL460 SNMP |3 |-1 |2 | | |HPE ProLiant BL460 SNMP |0 |NULL |Template for HPE ProLiant BL460 servers with HP iLO version 4 and later.&eol;&eol;MIBs used:&eol;CPQHLTH-MIB&eol;SNMPv2-MIB&eol;CPQNIC-MIB&eol;CPQSINFO-MIB&eol;CPQIDA-MIB&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |172ec7e51f1c4a6ba49baffbab3dda97|
ROW |10430 |NULL |HPE ProLiant BL920 SNMP |3 |-1 |2 | | |HPE ProLiant BL920 SNMP |0 |NULL |Template for HPE ProLiant BL920 servers with HP iLO version 4 and later.&eol;&eol;MIBs used:&eol;CPQHLTH-MIB&eol;SNMPv2-MIB&eol;CPQNIC-MIB&eol;CPQSINFO-MIB&eol;CPQIDA-MIB&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |586119e5e27e4062a3cce8601ecb8d71|
ROW |10431 |NULL |HPE ProLiant DL360 SNMP |3 |-1 |2 | | |HPE ProLiant DL360 SNMP |0 |NULL |Template for HPE ProLiant DL360 servers with HP iLO version 4 and later.&eol;&eol;MIBs used:&eol;CPQHLTH-MIB&eol;SNMPv2-MIB&eol;CPQNIC-MIB&eol;CPQSINFO-MIB&eol;CPQIDA-MIB&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |60cb9ccb922e4fd194a1d9573db10237|
@@ -275,12 +275,12 @@ ROW |35 |10388 |MongoDB sharded cluster/{#REPLICASET}|NULL |NU
ROW |37 |10389 |MongoDB sharded cluster/{#ID} |NULL |NULL |
ROW |66 |10334 |{#DATACENTER.NAME}/{#VM.FOLDER} (vm) |NULL |NULL |
ROW |69 |10368 |{#DATACENTER.NAME}/{#VM.FOLDER} (vm) |NULL |NULL |
-ROW |109 |10333 | |12 |NULL |
-ROW |110 |10334 | |12 |NULL |
-ROW |111 |10367 | |12 |NULL |
-ROW |112 |10368 | |12 |NULL |
-ROW |113 |10388 | |13 |NULL |
-ROW |114 |10389 | |13 |NULL |
+ROW |115 |10333 | |12 |NULL |
+ROW |116 |10334 | |12 |NULL |
+ROW |117 |10367 | |12 |NULL |
+ROW |118 |10368 | |12 |NULL |
+ROW |119 |10388 | |13 |NULL |
+ROW |120 |10389 | |13 |NULL |
TABLE |interface
FIELDS|interfaceid|hostid|main|type|useip|ip |dns |port |
@@ -1193,9 +1193,9 @@ ROW |27124 |20 |1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX}
ROW |27125 |20 |1.3.6.1.2.1.2.2.1.16.{#SNMPINDEX} |10192 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |95e58c279df24606b28fb325e7006b54|
ROW |27126 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10192 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |199eb3a0274a43f198137abefba57f09|
ROW |27127 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10192 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |NULL |62 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |73b1182c727449f69fb0dc67b19aec5d|
-ROW |27152 |20 |1.3.6.1.2.1.1.5.0 |10204 |System name |system.name |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |3996a3a8d927473aa07c47e63a09b865|
-ROW |27154 |5 | |10204 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |69 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |3e8c2d440441416b9ccec7dd90e21503|
-ROW |27157 |17 | |10204 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |2cda26906f254e13985cecdbb7901d1a|
+ROW |27152 |20 |1.3.6.1.2.1.1.5.0 |10204 |System name |system.name |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |3996a3a8d927473aa07c47e63a09b865|
+ROW |27154 |5 | |10204 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |3e8c2d440441416b9ccec7dd90e21503|
+ROW |27157 |17 | |10204 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |2cda26906f254e13985cecdbb7901d1a|
ROW |27203 |20 |1.3.6.1.2.1.1.1.0 |10207 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |2183a57a2c904632bf813c15610765f7|
ROW |27207 |20 |1.3.6.1.4.1.6527.3.1.2.1.1.9.0 |10207 |Used memory |vm.memory.used[sgiKbMemoryUsed.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TIMETRA-SYSTEM-MIB&eol;The value of sgiKbMemoryUsed indicates the total pre-allocated pool memory, in kilobytes, currently in use on the system. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |f5cd1ed0f61f464f86a97485f833d832|
ROW |27208 |20 |1.3.6.1.4.1.6527.3.1.2.1.1.1.0 |10207 |CPU utilization |system.cpu.util[sgiCpuUsage.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TIMETRA-SYSTEM-MIB&eol;The value of sgiCpuUsage indicates the current CPU utilization for the system. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |e28cb751b37e42d29be9f0295bd030b6|
@@ -1617,7 +1617,7 @@ ROW |29110 |0 |
ROW |29111 |0 | |10277 |System boot time |system.boottime |15m |7d |365d |0 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |48c251895f234f4595c4133015c27a18|
ROW |29112 |0 | |10277 |System local time |system.localtime |1m |7d |365d |0 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL |System local time of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |ac41daaa287944f3b0429c6fb2bca09c|
ROW |29113 |0 | |10277 |System name |system.hostname |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |f744b8e0be46431e8088803b3a1b210d|
-ROW |29114 |0 | |10277 |System description |system.uname |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |b3a8feced15d4a09a8a2d8d1d8c9a546|
+ROW |29114 |0 | |10277 |System description |system.uname |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |b3a8feced15d4a09a8a2d8d1d8c9a546|
ROW |29115 |0 | |10277 |Number of logged in users |system.users.num |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |c595adf482c04553a2477bc1d929bc8d|
ROW |29116 |0 | |10277 |Maximum number of open file descriptors |kernel.maxfiles |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |5dc4ebda1b9244e7a9f901209b78570f|
ROW |29117 |0 | |10277 |Maximum number of processes |kernel.maxproc |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |a82525acd1bd4039860ad2d750476760|
@@ -1666,7 +1666,7 @@ ROW |29470 |0 |
ROW |29472 |0 | |10290 |Uptime |system.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |System uptime in 'N days, hh:mm:ss' format. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |24411175d64f48a195ee4a2323d8e799|
ROW |29473 |0 | |10290 |System local time |system.localtime |1m |7d |365d |0 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL |System local time of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |25454c401bea41a4b3c49da3165f3d3d|
ROW |29474 |0 | |10290 |System name |system.hostname |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |78ae4dbd2d894819a36a7d3d00f2e508|
-ROW |29475 |0 | |10290 |System description |system.uname |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System description of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |76ef3297b4b740bfaf891e039f7d4dff|
+ROW |29475 |0 | |10290 |System description |system.uname |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System description of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |76ef3297b4b740bfaf891e039f7d4dff|
ROW |29476 |0 | |10290 |Number of processes |proc.num[] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |8401ea3152ea45269eeb6cc7fa70f1aa|
ROW |29477 |0 | |10290 |Number of threads |perf_counter_en["\System\Threads"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads used by all running processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |1245fca060fb424897387d56d29fe030|
ROW |29478 |0 | |10290 |Operating system architecture |system.sw.arch |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Operating system architecture of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |5ed680dff3154af58e7adc0571a6ee9d|
@@ -1695,10 +1695,10 @@ ROW |29743 |3 |
ROW |29745 |19 | |10303 |RabbitMQ: Get queues |rabbitmq.get_queues |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |0 |NULL |The HTTP API endpoint that returns queues metrics |0 |30d |0 | |NULL |3s |{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/queues | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |3d0770d550b24f5ca80289cb723c8386|
ROW |29822 |5 | |10047 |Zabbix server: Utilization of alert syncer internal processes, in % |zabbix[process,alert syncer,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time alert syncer processes have been busy in the last minute |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |eea69b4541844ebbbbf634594c14a8f2|
ROW |29844 |20 |1.3.6.1.2.1.1.3.0 |10204 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |000b97abddcd44bfb57e0eeb1b77f69e|
-ROW |29845 |20 |1.3.6.1.2.1.1.6.0 |10204 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |02b453f44c014f2bb1054e801058b381|
-ROW |29846 |20 |1.3.6.1.2.1.1.4.0 |10204 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |62da59c7aae54df7976f327119fe7cc2|
+ROW |29845 |20 |1.3.6.1.2.1.1.6.0 |10204 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |02b453f44c014f2bb1054e801058b381|
+ROW |29846 |20 |1.3.6.1.2.1.1.4.0 |10204 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |62da59c7aae54df7976f327119fe7cc2|
ROW |29847 |20 |1.3.6.1.2.1.1.2.0 |10204 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |9dbcc5a1cd7240c896e2ea718f9ccb35|
-ROW |29848 |20 |1.3.6.1.2.1.1.1.0 |10204 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |29a3e5277de94386a5985fcf38a09364|
+ROW |29848 |20 |1.3.6.1.2.1.1.1.0 |10204 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |29a3e5277de94386a5985fcf38a09364|
ROW |29994 |20 |1.3.6.1.4.1.232.6.1.3.0 |10256 |Overall system health status |system.status[cpqHeMibCondition.0] |1m |7d |0d |0 |3 | | | | |NULL |102 | | |0 | | | | |0 |NULL |MIB: CPQHLTH-MIB&eol;The overall condition. This object represents the overall status of the server information represented by this MIB. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |5f30715570c449ecb4e07858256a3e05|
ROW |29998 |0 | |10300 |RabbitMQ: Get overview |web.page.get["http://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.CLUSTER_HOST}:{$RABBITMQ.API.PORT}/api/overview"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The HTTP API endpoint that returns cluster-wide metrics |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |943eabfb44164908b9135aa4d6478bea|
ROW |29999 |0 | |10300 |RabbitMQ: Get exchanges |web.page.get["http://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.CLUSTER_HOST}:{$RABBITMQ.API.PORT}/api/exchanges"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The HTTP API endpoint that returns exchanges metrics |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |f015f991bcea4c4dbf83dfb013300010|
@@ -2018,7 +2018,7 @@ ROW |31435 |0 |
ROW |31436 |0 | |10291 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out["{#IFGUID}",dropped] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of outgoing packets dropped on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |e3065d25674045938470ce2e10fbd6c0|
ROW |31437 |0 | |10291 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out["{#IFGUID}",errors] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of outgoing packets with errors on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |b3472a08272143bead7b9dc366b4992f|
ROW |31438 |0 | |10291 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out["{#IFGUID}"] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Outgoing traffic on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |2e208f1d9ca949f582f24015350395b6|
-ROW |31439 |0 | |10289 |{#DEVNAME}: Disk utilization |perf_counter_en["\PhysicalDisk({#DEVNAME})\% Disk Time",60] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |This item is the percentage of elapsed time that the selected disk drive was busy servicing read or writes requests. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |44d9353d47274309bb3edaa34b7b3470|
+ROW |31439 |0 | |10289 |{#DEVNAME}: Disk utilization by idle time |perf_counter_en["\PhysicalDisk({#DEVNAME})\% Idle Time",60] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |This item is the percentage of elapsed time that the selected disk drive was busy servicing read or writes requests based on idle time. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |44d9353d47274309bb3edaa34b7b3470|
ROW |31440 |0 | |10289 |{#DEVNAME}: Disk average queue size (avgqu-sz) |perf_counter_en["\PhysicalDisk({#DEVNAME})\Current Disk Queue Length",60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current average disk queue, the number of requests outstanding on the disk at the time the performance data is collected. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |3565ad70600d4c8aa5ebbbebd3f67270|
ROW |31441 |0 | |10289 |{#DEVNAME}: Disk read rate |perf_counter_en["\PhysicalDisk({#DEVNAME})\Disk Reads/sec",60] |1m |7d |365d |0 |0 | |!r/s | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of read operations on the disk. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |3485202f1e6b42ce8099ce6d6347a994|
ROW |31442 |0 | |10289 |{#DEVNAME}: Disk write rate |perf_counter_en["\PhysicalDisk({#DEVNAME})\Disk Writes/sec",60] |1m |7d |365d |0 |0 | |!w/s | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of write operations on the disk. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |66e312629db1460c8b215d34d29f7418|
@@ -2166,7 +2166,7 @@ ROW |31842 |0 |
ROW |31843 |7 | |10340 |Operating system architecture |system.sw.arch |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Operating system architecture of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |6f37348c05fa409e9189af3731296095|
ROW |31844 |7 | |10340 |Operating system |system.sw.os |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |79d493ae03a64bdab89520c3dde0410c|
ROW |31845 |7 | |10340 |Software installed |system.sw.packages |1h |2w |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |42df39b3317a4bd6908686a491fd3d18|
-ROW |31846 |7 | |10340 |System description |system.uname |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |d875142b4ea0442db59768be58c9d026|
+ROW |31846 |7 | |10340 |System description |system.uname |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |d875142b4ea0442db59768be58c9d026|
ROW |31847 |7 | |10340 |System uptime |system.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |System uptime in 'N days, hh:mm:ss' format. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |2e5b3c8596df4aaebce704f3904630a7|
ROW |31848 |7 | |10340 |Number of logged in users |system.users.num |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |a58cfd080cfe44d9ae054754bbc69892|
ROW |31849 |7 | |10340 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |7cb47989debc4deba77394a5320a83e8|
@@ -2207,7 +2207,7 @@ ROW |31957 |7 |
ROW |31958 |7 | |10346 |System name |system.hostname |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |73b821a638a74e6d86be642952d2d6fe|
ROW |31959 |0 | |10346 |System local time |system.localtime |1m |7d |365d |1 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL |System local time of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |78f2089b58f54042ac70fd9ac3b2aa7e|
ROW |31960 |7 | |10346 |Operating system architecture |system.sw.arch |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Operating system architecture of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |0522b89bdee248c5aad6ff77d9a68311|
-ROW |31961 |7 | |10346 |System description |system.uname |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System description of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |383c3f59afee455d8981fe85e46c94dd|
+ROW |31961 |7 | |10346 |System description |system.uname |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System description of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |383c3f59afee455d8981fe85e46c94dd|
ROW |31962 |7 | |10346 |Uptime |system.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |System uptime in 'N days, hh:mm:ss' format. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |e5342587828d40ed8feafdccdd6d92e3|
ROW |31963 |7 | |10347 |Cache bytes |perf_counter_en["\Memory\Cache Bytes"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Cache Bytes is the sum of the Memory\\System Cache Resident Bytes, Memory\\System Driver Resident Bytes, &eol;Memory\\System Code Resident Bytes, and Memory\\Pool Paged Resident Bytes counters. This counter displays &eol;the last observed value only; it is not an average. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |50610f9c46a848bdbdc08ed5b9c2a156|
ROW |31964 |7 | |10347 |Free system page table entries |perf_counter_en["\Memory\Free System Page Table Entries"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |This indicates the number of page table entries not currently in use by the system. If the number is less &eol;than 5,000, there may well be a memory leak or you running out of memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |6faf395b5bb14456a33e6689b7618613|
@@ -2233,7 +2233,7 @@ ROW |32017 |7 |
ROW |32018 |7 | |10348 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out["{#IFGUID}",dropped] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of outgoing packets dropped on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |8feffdee85e2486191de0968ec7918b7|
ROW |32019 |7 | |10348 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out["{#IFGUID}",errors] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of outgoing packets with errors on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |84d1943e15c046f894bf0219288671e4|
ROW |32020 |7 | |10348 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out["{#IFGUID}"] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Outgoing traffic on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |fb0785a7e7e54743bef715fb60dbe890|
-ROW |32021 |7 | |10349 |{#DEVNAME}: Disk utilization |perf_counter_en["\PhysicalDisk({#DEVNAME})\% Disk Time",60] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |This item is the percentage of elapsed time that the selected disk drive was busy servicing read or writes requests. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |7d6ab9b1b76041869d7818652b5c5b0e|
+ROW |32021 |7 | |10349 |{#DEVNAME}: Disk utilization by idle time |perf_counter_en["\PhysicalDisk({#DEVNAME})\% Idle Time",60] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |This item is the percentage of elapsed time that the selected disk drive was busy servicing read or writes requests based on idle time. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |7d6ab9b1b76041869d7818652b5c5b0e|
ROW |32022 |7 | |10349 |{#DEVNAME}: Disk average queue size (avgqu-sz) |perf_counter_en["\PhysicalDisk({#DEVNAME})\Current Disk Queue Length",60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current average disk queue, the number of requests outstanding on the disk at the time the performance data is collected. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |1201592953094d48af20a0e420bfa846|
ROW |32023 |7 | |10349 |{#DEVNAME}: Disk read rate |perf_counter_en["\PhysicalDisk({#DEVNAME})\Disk Reads/sec",60] |1m |7d |365d |0 |0 | |!r/s | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of read operations on the disk. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |e0f052d64ea544b09dfe619cb91f28c8|
ROW |32024 |7 | |10349 |{#DEVNAME}: Disk write rate |perf_counter_en["\PhysicalDisk({#DEVNAME})\Disk Writes/sec",60] |1m |7d |365d |0 |0 | |!w/s | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of write operations on the disk. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |33e5e9eccad84737bf428fc54b25fc5c|
@@ -3303,15 +3303,15 @@ ROW |34148 |20 |1.3.6.1.4.1.9.9.13.1.3.1.3.{#SNMPINDEX}
ROW |34149 |3 | |10251 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |NULL |262 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |87480ce035a94f299c4cf4103eaaf066|
ROW |34150 |3 | |10251 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |50e85be3969447c58fcfeca5d9a1a9bb|
ROW |34151 |3 | |10251 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |7567e999d75442379066babdc9b50894|
-ROW |34152 |17 | |10251 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |0cb8aadeb5554583a65c3496cfed2c1b|
-ROW |34153 |20 |1.3.6.1.2.1.1.4.0 |10251 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |f62a8b653c3d44d09864a4a4c910aeb1|
+ROW |34152 |17 | |10251 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |0cb8aadeb5554583a65c3496cfed2c1b|
+ROW |34153 |20 |1.3.6.1.2.1.1.4.0 |10251 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |f62a8b653c3d44d09864a4a4c910aeb1|
ROW |34154 |20 |discovery[{#CPU.UTIL},1.3.6.1.2.1.25.3.3.1.2] |10251 |CPU utilization |system.cpu.util |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: HOST-RESOURCES-MIB&eol;The average, over the last minute, of the percentage of time that processors was not idle.&eol;Implementations may approximate this one minute smoothing period if necessary. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |c33470549bda45e88ecb8ded7d0b5e87|
-ROW |34155 |20 |1.3.6.1.2.1.1.1.0 |10251 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |64c4f3e890ec4c29be07ba2d06345534|
+ROW |34155 |20 |1.3.6.1.2.1.1.1.0 |10251 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |64c4f3e890ec4c29be07ba2d06345534|
ROW |34156 |20 |1.3.6.1.2.1.1.6.0 |10251 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |e0d2149e1a114f3a971c324673beae2f|
ROW |34157 |20 |1.3.6.1.2.1.1.5.0 |10251 |System name |system.name |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |f63d1f71a97e45b0ab5716299ef298ea|
ROW |34158 |20 |1.3.6.1.2.1.1.2.0 |10251 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |f1535f45138b472c945e231a9beb9cc5|
ROW |34159 |20 |1.3.6.1.2.1.1.3.0 |10251 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |d7f06d23f6b14677b5183f2cc94fc10d|
-ROW |34160 |5 | |10251 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |263 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |aba117057e824b6789fca847cae9e0fc|
+ROW |34160 |5 | |10251 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |263 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |aba117057e824b6789fca847cae9e0fc|
ROW |34161 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3] |10251 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |9e0d4ed074214f22bbbc9c8a5e3b9d0d|
ROW |34162 |20 |discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#FSTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10251 |Storage discovery |vfs.fs.discovery[snmp] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with storage filter. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |f4c83472c88b419da104e4c5a35d6fc9|
ROW |34163 |20 |discovery[{#MEMNAME},1.3.6.1.2.1.25.2.3.1.3,{#MEMTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10251 |Memory discovery |vm.memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with memory filter |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |32a20a1f65d64db3bf17d6d405321253|
@@ -3336,9 +3336,9 @@ ROW |34182 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0
ROW |34183 |20 |1.3.6.1.2.1.1.2.0 |10395 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what&eol;kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |6780faad9fc9492f9f92915db5161e43|
ROW |34185 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10395 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |6030dbee3cc24dbeb15e4b802e89cbc8|
ROW |34186 |20 |1.3.6.1.2.1.1.6.0 |10395 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |445d7a843340424ab7c09ab001d5865c|
-ROW |34187 |20 |1.3.6.1.2.1.1.1.0 |10395 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |ed42f6f2d8c24176b53f38e0a857a129|
-ROW |34188 |20 |1.3.6.1.2.1.1.4.0 |10395 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |299e4e11e0374888877e1dc386409726|
-ROW |34189 |17 | |10395 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |2c52ba1a964a40e1b4a75582ee6ad43b|
+ROW |34187 |20 |1.3.6.1.2.1.1.1.0 |10395 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |ed42f6f2d8c24176b53f38e0a857a129|
+ROW |34188 |20 |1.3.6.1.2.1.1.4.0 |10395 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |299e4e11e0374888877e1dc386409726|
+ROW |34189 |17 | |10395 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |2c52ba1a964a40e1b4a75582ee6ad43b|
ROW |34190 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10395 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |37d7eda5664c4ae2b4a126c60a8eb40b|
ROW |34191 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10395 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |315 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |0ae99a18a5c24fb0b812353d25459e1f|
ROW |34192 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10395 |Output current |output.current[upsHighPrecOutputCurrent] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current in amperes drawn by the load on the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |a332c87a948045beae13f74984245b86|
@@ -3352,7 +3352,7 @@ ROW |34202 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0
ROW |34203 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10395 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |f52a3e2ae08c4b2996249c5601b4098d|
ROW |34204 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10395 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |265 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |eb74b3671b4d4335ad92bd3b027547b0|
ROW |34205 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10395 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |3d69adaa88e64b8084d38c1482815bf2|
-ROW |34206 |5 | |10395 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |269 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |ca3275f69f3c4e7c9c71108451c0b64f|
+ROW |34206 |5 | |10395 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |269 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |ca3275f69f3c4e7c9c71108451c0b64f|
ROW |34207 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10395 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |52345d2975214002bdd05a24e43484a8|
ROW |34208 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10395 |External battery packs discovery |battery.packs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |f7eb1c82c6694e72b7d28ba4d71d8741|
ROW |34209 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10395 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |457169b3c43846739614a6ddc7155fda|
@@ -3416,9 +3416,9 @@ ROW |34455 |20 |1.3.6.1.2.1.1.2.0
ROW |34456 |20 |1.3.6.1.2.1.1.5.0 |10400 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |d6f2c9770c28487d9fa6af2b63917958|
ROW |34457 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10400 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |93b6e128e95a4a96bde38ef15d74d510|
ROW |34458 |20 |1.3.6.1.2.1.1.6.0 |10400 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |b109475e72e74e76846aa478e9937101|
-ROW |34459 |20 |1.3.6.1.2.1.1.1.0 |10400 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |f1df592a2b114677a1beabec33ce01f9|
-ROW |34460 |20 |1.3.6.1.2.1.1.4.0 |10400 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |aa5e85ef78504fc080b97342baf6cb35|
-ROW |34461 |17 | |10400 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |7d20aa252c5143c98de837dbd2f0cd53|
+ROW |34459 |20 |1.3.6.1.2.1.1.1.0 |10400 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |f1df592a2b114677a1beabec33ce01f9|
+ROW |34460 |20 |1.3.6.1.2.1.1.4.0 |10400 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |aa5e85ef78504fc080b97342baf6cb35|
+ROW |34461 |17 | |10400 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |7d20aa252c5143c98de837dbd2f0cd53|
ROW |34462 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10400 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |4ec893da7b8540548d60a91ee7e2df83|
ROW |34463 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10400 |Output load |output.load[upsHighPrecOutputLoad] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current UPS load expressed as percentage&eol;of rated capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |5774ead79e8b4d63a4a31bc091d1c52a|
ROW |34464 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10400 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |2b417eadc988460a89db04efdaca4ffc|
@@ -3432,7 +3432,7 @@ ROW |34471 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0
ROW |34472 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10400 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |89cca909c60745fe824d02aa0d4bc3d7|
ROW |34473 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10400 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |274 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |b7614652ff6f4e0890f366b8e0831b80|
ROW |34474 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10400 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |98af792142464656b925a452e5ebf1cc|
-ROW |34475 |5 | |10400 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |278 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |efad5c028c0d4c11b57a19dc04830ea7|
+ROW |34475 |5 | |10400 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |278 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |efad5c028c0d4c11b57a19dc04830ea7|
ROW |34476 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10400 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |54a867c14c814e4ab4803c5a59082e44|
ROW |34477 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10400 |External battery packs discovery |battery.packs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |0c8fc55bbe984d919c3b87a096d900d5|
ROW |34478 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10400 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |ffb60da941114174932b219e14892be9|
@@ -3464,9 +3464,9 @@ ROW |34503 |20 |1.3.6.1.2.1.1.2.0
ROW |34504 |20 |1.3.6.1.2.1.1.5.0 |10401 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |d9452c921e4946719726b292d8c0cbd6|
ROW |34505 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10401 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |1ba45d867e3d4bb99eeb8c0c320ef127|
ROW |34506 |20 |1.3.6.1.2.1.1.6.0 |10401 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |ac995904f95240d9b1f44c27adea5731|
-ROW |34507 |20 |1.3.6.1.2.1.1.1.0 |10401 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |e5d72eba4dfb41f8ae73904c936dd64b|
-ROW |34508 |20 |1.3.6.1.2.1.1.4.0 |10401 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |943b146891ac461c92d286704a0864b2|
-ROW |34509 |17 | |10401 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |94d838cc8cf2438296477c0139a3c152|
+ROW |34507 |20 |1.3.6.1.2.1.1.1.0 |10401 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |e5d72eba4dfb41f8ae73904c936dd64b|
+ROW |34508 |20 |1.3.6.1.2.1.1.4.0 |10401 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |943b146891ac461c92d286704a0864b2|
+ROW |34509 |17 | |10401 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |94d838cc8cf2438296477c0139a3c152|
ROW |34510 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10401 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |4e43a6966bf642e19567dcd3763125e7|
ROW |34511 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10401 |Output load |output.load[upsHighPrecOutputLoad] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current UPS load expressed as percentage&eol;of rated capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |df799c65dbe5437aa941de3e6d386b26|
ROW |34512 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10401 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |8ba1d824fdc548b4bca770f4145f7169|
@@ -3480,7 +3480,7 @@ ROW |34519 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0
ROW |34520 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10401 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |05be71fcb7c1484f876229f48649039e|
ROW |34521 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10401 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |280 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |4c1107eb93114d9096518dc134e08bdc|
ROW |34522 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10401 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |147e0b7b466e402ba59d73d66801ef1a|
-ROW |34523 |5 | |10401 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |284 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |d679688992124f6c91c3f70bcc341d2d|
+ROW |34523 |5 | |10401 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |284 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |d679688992124f6c91c3f70bcc341d2d|
ROW |34524 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10401 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |72077c26a51b43a6afea271e70d13004|
ROW |34525 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10401 |External battery packs discovery |battery.packs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |38aa32616e964db088f4faff12867f1a|
ROW |34526 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10401 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |e428310ecc5f4a53ab7932bcf1247a30|
@@ -3512,9 +3512,9 @@ ROW |34551 |20 |1.3.6.1.2.1.1.2.0
ROW |34552 |20 |1.3.6.1.2.1.1.5.0 |10402 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |1f591627fea54a9ebdd8f10cbf39b9ed|
ROW |34553 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10402 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |272883d0a1cd4bb585a6ede50336c873|
ROW |34554 |20 |1.3.6.1.2.1.1.6.0 |10402 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |a5c6c4c44132439abd0e5fd88e3c90cf|
-ROW |34555 |20 |1.3.6.1.2.1.1.1.0 |10402 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |a312df9175ca45528375398f56fa3b3b|
-ROW |34556 |20 |1.3.6.1.2.1.1.4.0 |10402 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |fbcbe2cffc8c4bb6b11276cdd03376c3|
-ROW |34557 |17 | |10402 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |92c2ef138bf148199cdb6d9684b6fa23|
+ROW |34555 |20 |1.3.6.1.2.1.1.1.0 |10402 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |a312df9175ca45528375398f56fa3b3b|
+ROW |34556 |20 |1.3.6.1.2.1.1.4.0 |10402 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |fbcbe2cffc8c4bb6b11276cdd03376c3|
+ROW |34557 |17 | |10402 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |92c2ef138bf148199cdb6d9684b6fa23|
ROW |34558 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10402 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |ebf71f0afed5460ba4c7f66bb162de9f|
ROW |34559 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10402 |Output load |output.load[upsHighPrecOutputLoad] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current UPS load expressed as percentage&eol;of rated capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |a2613c8d71864594a0c94064d99e059e|
ROW |34560 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10402 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |86780568c0594469bc7324c68440cbec|
@@ -3528,7 +3528,7 @@ ROW |34567 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0
ROW |34568 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10402 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |d15c36fb66754791b1014f52171efe1c|
ROW |34569 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10402 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |286 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |b50a17ab043c404990dd088ac9f74078|
ROW |34570 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10402 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |1928e58e65a34b188916086bad5b8725|
-ROW |34571 |5 | |10402 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |290 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |edb39f7236d74c6783e0d4b832e0b94b|
+ROW |34571 |5 | |10402 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |290 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |edb39f7236d74c6783e0d4b832e0b94b|
ROW |34572 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10402 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |2edf8773186845499a991288d1a7a55b|
ROW |34573 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10402 |External battery packs discovery |battery.packs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |a0d8d681bfb54c1d9792beaf3f708d69|
ROW |34574 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10402 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |88f5bc98004740fe886f5b1144de2c35|
@@ -3560,9 +3560,9 @@ ROW |34599 |20 |1.3.6.1.2.1.1.2.0
ROW |34600 |20 |1.3.6.1.2.1.1.5.0 |10403 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |482bec6573f249abbb721f2ec90def3b|
ROW |34601 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10403 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |866889bb71e949c18520bf8fefd3e7ea|
ROW |34602 |20 |1.3.6.1.2.1.1.6.0 |10403 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |d0351d1bc1dc4f1b853fe64d456b3570|
-ROW |34603 |20 |1.3.6.1.2.1.1.1.0 |10403 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |01302a36cafd421c90d746f785c83f3f|
-ROW |34604 |20 |1.3.6.1.2.1.1.4.0 |10403 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |da60acc731a64257a90512b5c70d1e92|
-ROW |34605 |17 | |10403 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |d08fb7e3fae84d2cbae64ab9771ffcdc|
+ROW |34603 |20 |1.3.6.1.2.1.1.1.0 |10403 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |01302a36cafd421c90d746f785c83f3f|
+ROW |34604 |20 |1.3.6.1.2.1.1.4.0 |10403 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |da60acc731a64257a90512b5c70d1e92|
+ROW |34605 |17 | |10403 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |d08fb7e3fae84d2cbae64ab9771ffcdc|
ROW |34606 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10403 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |6c7d7d803647478c8f2a79875457110c|
ROW |34607 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10403 |Output load |output.load[upsHighPrecOutputLoad] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current UPS load expressed as percentage&eol;of rated capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |cd7b2c1b12df4fd19f37485aa380b295|
ROW |34608 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10403 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |1a52452353b443d6b965293fda3b16b9|
@@ -3576,7 +3576,7 @@ ROW |34615 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0
ROW |34616 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10403 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |f151210b9cd749b2b3e5af2145733c82|
ROW |34617 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10403 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |292 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |8f4351d23be04a3abee1e6edb746a9ec|
ROW |34618 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10403 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |7a887ae254b04b19bac605bb36141767|
-ROW |34619 |5 | |10403 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |296 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |f4f9ebb1e55b41a5a6e470a541e136bc|
+ROW |34619 |5 | |10403 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |296 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |f4f9ebb1e55b41a5a6e470a541e136bc|
ROW |34620 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10403 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |67fa8bb8687b4a36b8d32cda72083966|
ROW |34621 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10403 |External battery packs discovery |battery.packs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |b4a8277fdf6f4e76a641690aaf6e7faa|
ROW |34622 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10403 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |59467725274d4dba8e839d167cabe693|
@@ -3608,9 +3608,9 @@ ROW |34647 |20 |1.3.6.1.2.1.1.2.0
ROW |34648 |20 |1.3.6.1.2.1.1.5.0 |10404 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |e4d9441075954c068b6fd92bbff49cef|
ROW |34649 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10404 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |320221ba30744ca78b8dce03dccd549b|
ROW |34650 |20 |1.3.6.1.2.1.1.6.0 |10404 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |031b9d385cae4641b9ecfb76c4174262|
-ROW |34651 |20 |1.3.6.1.2.1.1.1.0 |10404 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |e0d638ab398f40e8a9555925cd8ba907|
-ROW |34652 |20 |1.3.6.1.2.1.1.4.0 |10404 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |50cc8e7cea0c40948c006623dfa94dae|
-ROW |34653 |17 | |10404 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |d633cd3273e74209a1b0c6b761028e0a|
+ROW |34651 |20 |1.3.6.1.2.1.1.1.0 |10404 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |e0d638ab398f40e8a9555925cd8ba907|
+ROW |34652 |20 |1.3.6.1.2.1.1.4.0 |10404 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |50cc8e7cea0c40948c006623dfa94dae|
+ROW |34653 |17 | |10404 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |d633cd3273e74209a1b0c6b761028e0a|
ROW |34654 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10404 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |bcb28618699448ea8d9d056bad203a0e|
ROW |34655 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10404 |Output load |output.load[upsHighPrecOutputLoad] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current UPS load expressed as percentage&eol;of rated capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |1d9d7ef724ff41eda4fd536df6af93cb|
ROW |34656 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10404 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |7f3b05afa58142d5b8670c40c196baf8|
@@ -3624,7 +3624,7 @@ ROW |34663 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0
ROW |34664 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10404 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |95749270e6234d6cbd1edb0c5e1118e0|
ROW |34665 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10404 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |298 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |44a33eba233e4bd7ac51ca2dcabf2939|
ROW |34666 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10404 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |87b91005f5ff4ba5b0086e25eaa799bd|
-ROW |34667 |5 | |10404 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |302 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |f24fc7ed9ffa4884891a01a0f1565fc4|
+ROW |34667 |5 | |10404 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |302 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |f24fc7ed9ffa4884891a01a0f1565fc4|
ROW |34668 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10404 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |9389b159502e4242b02a11104124bae5|
ROW |34669 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10404 |External battery packs discovery |battery.packs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |ec66331f2ae64801a3ef51d6dec5a00f|
ROW |34670 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10404 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |19379361227740c3bf8bc9852886538d|
@@ -3704,9 +3704,9 @@ ROW |34743 |20 |1.3.6.1.2.1.1.2.0
ROW |34744 |20 |1.3.6.1.2.1.1.5.0 |10406 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |13c26820947442f581c2234c38c052cc|
ROW |34745 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10406 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |57f3c4c2aff04eef83b7a7a53fa9f95c|
ROW |34746 |20 |1.3.6.1.2.1.1.6.0 |10406 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |25aa469a757347089191eb8e364d4df9|
-ROW |34747 |20 |1.3.6.1.2.1.1.1.0 |10406 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |13d3c18413a249d492272a7373ebd772|
-ROW |34748 |20 |1.3.6.1.2.1.1.4.0 |10406 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |e4995e72f6b442bd9b8c90f09eb54f16|
-ROW |34749 |17 | |10406 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |ae4579b14c424c0492acbfcb5aa5dd67|
+ROW |34747 |20 |1.3.6.1.2.1.1.1.0 |10406 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |13d3c18413a249d492272a7373ebd772|
+ROW |34748 |20 |1.3.6.1.2.1.1.4.0 |10406 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |e4995e72f6b442bd9b8c90f09eb54f16|
+ROW |34749 |17 | |10406 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |ae4579b14c424c0492acbfcb5aa5dd67|
ROW |34750 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10406 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |07059c625de94e618925249492982fb7|
ROW |34751 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10406 |Output load |output.load[upsHighPrecOutputLoad] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current UPS load expressed as percentage&eol;of rated capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |0413f6ef89894dc6ba51e42f6a963f94|
ROW |34752 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10406 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |7d7c2b962e9843b8a6cf72c04ff1e479|
@@ -3720,7 +3720,7 @@ ROW |34759 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0
ROW |34760 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10406 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |ae8a19896d21405ca99a5bfbd5de1f95|
ROW |34761 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10406 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |310 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |4cdd4bbff845477194a6d96a31431d23|
ROW |34762 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10406 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |552e030c272d43a0998bc2648f15ae44|
-ROW |34763 |5 | |10406 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |314 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |567996748402435d80aae37818d4125e|
+ROW |34763 |5 | |10406 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |314 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |567996748402435d80aae37818d4125e|
ROW |34764 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10406 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |912994ce460742ebbb91c89d28d87d73|
ROW |34765 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10406 |External battery packs discovery |battery.packs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |abfe041a98dc4023b21ec6d9e829a94a|
ROW |34766 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10406 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |52e5451d8c7a41478ef9dde6a3c16378|
@@ -3758,9 +3758,9 @@ ROW |34797 |20 |1.3.6.1.2.1.1.2.0
ROW |34798 |20 |1.3.6.1.2.1.1.5.0 |10407 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |b15628c68d4c4e8ca761ad9fa7e40a1c|
ROW |34799 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10407 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |64d56d199021432886452fff5a4c6d22|
ROW |34800 |20 |1.3.6.1.2.1.1.6.0 |10407 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |6a06715ef4c44534a0ebc45f4e5adb5b|
-ROW |34801 |20 |1.3.6.1.2.1.1.1.0 |10407 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |e8c576f27f4c49ef9acd1ba7198ffbb6|
-ROW |34802 |20 |1.3.6.1.2.1.1.4.0 |10407 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |8dd800fbbcde431aa421eeb5a33eb798|
-ROW |34803 |17 | |10407 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |102179b315b548e289df3459bc5860c1|
+ROW |34801 |20 |1.3.6.1.2.1.1.1.0 |10407 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |e8c576f27f4c49ef9acd1ba7198ffbb6|
+ROW |34802 |20 |1.3.6.1.2.1.1.4.0 |10407 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |8dd800fbbcde431aa421eeb5a33eb798|
+ROW |34803 |17 | |10407 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |102179b315b548e289df3459bc5860c1|
ROW |34804 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10407 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |9cf495d14fdf4059b6c35e7857d7a18c|
ROW |34805 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10407 |Output load |output.load[upsHighPrecOutputLoad] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current UPS load expressed as percentage&eol;of rated capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |d27e991fc0f64b4f9704fb8183567e8d|
ROW |34806 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10407 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |3fea9d328d5342b5bae6b643a0b45495|
@@ -3774,7 +3774,7 @@ ROW |34813 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0
ROW |34814 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10407 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |8340b775b76f4e8aad6d3984c63632e9|
ROW |34815 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10407 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |317 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |731d350450f742d880d81ff2be69e67e|
ROW |34816 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10407 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |f4bd3a4a637640e29f50ebd36fb510e5|
-ROW |34817 |5 | |10407 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |321 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |9562f60b1cbd4fe08614221e69efd811|
+ROW |34817 |5 | |10407 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |321 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |9562f60b1cbd4fe08614221e69efd811|
ROW |34818 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10407 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |35a885d8f181416db86f2ffe73a30f7f|
ROW |34819 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10407 |External battery packs discovery |battery.packs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |168bfbfc58ca46509caf54ae3562f0bc|
ROW |34820 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10407 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |598521a7c59d425d9deb58c9829e344e|
@@ -3806,9 +3806,9 @@ ROW |34845 |20 |1.3.6.1.2.1.1.2.0
ROW |34846 |20 |1.3.6.1.2.1.1.5.0 |10408 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |155feccece4a4625b98efa206ad5e0b1|
ROW |34847 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10408 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |bd0dc104ded94e4cbba3a8557e642caf|
ROW |34848 |20 |1.3.6.1.2.1.1.6.0 |10408 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |49b8ef5ff3a3400d8f412d4440040461|
-ROW |34849 |20 |1.3.6.1.2.1.1.1.0 |10408 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |251cc61592f543e3929aef3cb46f1b34|
-ROW |34850 |20 |1.3.6.1.2.1.1.4.0 |10408 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |2d22b58a5c9f4fedbd03862398113546|
-ROW |34851 |17 | |10408 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |39dd21c0f2194acaa9fddbdfccde05dd|
+ROW |34849 |20 |1.3.6.1.2.1.1.1.0 |10408 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |251cc61592f543e3929aef3cb46f1b34|
+ROW |34850 |20 |1.3.6.1.2.1.1.4.0 |10408 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |2d22b58a5c9f4fedbd03862398113546|
+ROW |34851 |17 | |10408 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |39dd21c0f2194acaa9fddbdfccde05dd|
ROW |34852 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10408 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |8d93b482d7c549f593c41abb9380ce2f|
ROW |34853 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10408 |Output load |output.load[upsHighPrecOutputLoad] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current UPS load expressed as percentage&eol;of rated capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |0e5240e578d043609fba4024db8c8df1|
ROW |34854 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10408 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |d26227e3d5754d8493ddaa9c3f5f2b5a|
@@ -3822,7 +3822,7 @@ ROW |34861 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0
ROW |34862 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10408 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |80a4e6cf09a147a7b166755aa182fdcd|
ROW |34863 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10408 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |323 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |abb901813d91481baef234496ddece33|
ROW |34864 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10408 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |138afef586634623974c1cefd45281e9|
-ROW |34865 |5 | |10408 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |327 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |d69889a19b564ed384fc96e8a70971a5|
+ROW |34865 |5 | |10408 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |327 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |d69889a19b564ed384fc96e8a70971a5|
ROW |34866 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10408 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |82e8f10c883546ef8196e071fdd8df91|
ROW |34867 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10408 |External battery packs discovery |battery.packs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |b615a0d1ef1e49678daa4de77b47623e|
ROW |34868 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10408 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |3adfddb03546462a9bcfdc5b059a29cc|
@@ -3854,9 +3854,9 @@ ROW |34893 |20 |1.3.6.1.2.1.1.2.0
ROW |34894 |20 |1.3.6.1.2.1.1.5.0 |10409 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |3c521e1e94da4dd2bd71719bf20e14b8|
ROW |34895 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10409 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |5c5b88814e4c4dc9b90ed4a5e49a91ca|
ROW |34896 |20 |1.3.6.1.2.1.1.6.0 |10409 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |be1280a6b2d84393ad001113bf7c80f2|
-ROW |34897 |20 |1.3.6.1.2.1.1.1.0 |10409 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |9bca97c1e308421b82f4769151f5177e|
-ROW |34898 |20 |1.3.6.1.2.1.1.4.0 |10409 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |1de71b45323b4eb5bc1a38315d56ce58|
-ROW |34899 |17 | |10409 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |c892c7f2ddcd4e15b1d5ab907cd70dcf|
+ROW |34897 |20 |1.3.6.1.2.1.1.1.0 |10409 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |9bca97c1e308421b82f4769151f5177e|
+ROW |34898 |20 |1.3.6.1.2.1.1.4.0 |10409 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |1de71b45323b4eb5bc1a38315d56ce58|
+ROW |34899 |17 | |10409 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |c892c7f2ddcd4e15b1d5ab907cd70dcf|
ROW |34900 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10409 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |e7969358cce84f3eb749b1c43d96c583|
ROW |34901 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10409 |Output load |output.load[upsHighPrecOutputLoad] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current UPS load expressed as percentage&eol;of rated capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |3ac052b6b4e241d9af470b70212ab8d3|
ROW |34902 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10409 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |a40074f9db134bc8bc4bd9800906137d|
@@ -3870,7 +3870,7 @@ ROW |34909 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0
ROW |34910 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10409 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |849b9ffa0c0b4dd59e7c5a544a135fa3|
ROW |34911 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10409 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |329 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |810c9cd371c14e44b8670ad3f4e003d5|
ROW |34912 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10409 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |c069bb03f58a47b981448a33a1663463|
-ROW |34913 |5 | |10409 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |333 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |582ff80b2df049b8acf233ad4dbfe1f1|
+ROW |34913 |5 | |10409 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |333 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |582ff80b2df049b8acf233ad4dbfe1f1|
ROW |34914 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10409 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |eddb568fd0e34398bcee7d39a6f76319|
ROW |34915 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10409 |External battery packs discovery |battery.packs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |0c31de1650b94f8cabef339e2ef009e3|
ROW |34916 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10409 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |93941e38fd2d4b48bd8b50179692cb56|
@@ -3981,9 +3981,9 @@ ROW |35020 |20 |1.3.6.1.2.1.1.2.0
ROW |35021 |20 |1.3.6.1.2.1.1.5.0 |10412 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |5778610ee61d472d9dc8c8da94f9e301|
ROW |35022 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10412 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |7e81f54bbbdd41ca8f9e010dbddc485f|
ROW |35023 |20 |1.3.6.1.2.1.1.6.0 |10412 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |a57de4a9da144c2aa880253e4e2b46f9|
-ROW |35024 |20 |1.3.6.1.2.1.1.1.0 |10412 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |0617c89b47454dbd833fcc2b8d570db8|
-ROW |35025 |20 |1.3.6.1.2.1.1.4.0 |10412 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |7485fd42dd2749028a2d67f315888723|
-ROW |35026 |17 | |10412 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |3892c18baef54c598dc78035f5a7540a|
+ROW |35024 |20 |1.3.6.1.2.1.1.1.0 |10412 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |0617c89b47454dbd833fcc2b8d570db8|
+ROW |35025 |20 |1.3.6.1.2.1.1.4.0 |10412 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |7485fd42dd2749028a2d67f315888723|
+ROW |35026 |17 | |10412 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |3892c18baef54c598dc78035f5a7540a|
ROW |35027 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10412 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |998d1322a2274da19abe10cdcb3c52e0|
ROW |35028 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10412 |Output load |output.load[upsHighPrecOutputLoad] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current UPS load expressed as percentage&eol;of rated capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |5427a9b46ea54920b3fcc7d8ca413e0e|
ROW |35029 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10412 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |7652aff14f644896be902fe18f3bb46a|
@@ -3997,7 +3997,7 @@ ROW |35036 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0
ROW |35037 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10412 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |6aacf5a02a824b9d8b3c2676b126b186|
ROW |35038 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10412 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |337 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |f4d790f93a1c4e75a7ebd3d89d0d9d90|
ROW |35039 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10412 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |ee059b1bb6ac486c8c5dd29654899d71|
-ROW |35040 |5 | |10412 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |341 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |63079124c55f479dad013d0c15077577|
+ROW |35040 |5 | |10412 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |341 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |63079124c55f479dad013d0c15077577|
ROW |35041 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10412 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |af4472b543b54699b6e812de51be2419|
ROW |35042 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10412 |External battery packs discovery |battery.packs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |a3716fb0833e4655b63ec4ccc5736950|
ROW |35043 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10412 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |e858b8966abc444a914ef60c1708b835|
@@ -4660,13 +4660,13 @@ ROW |35799 |20 |.1.3.6.1.4.1.890.1.5.8.46.117.1.1.8.{#SNMPINDEX}
ROW |35800 |20 |.1.3.6.1.4.1.890.1.5.8.46.117.1.1.3.{#SNMPINDEX} |10427 |ZYXEL XGS-4728F: SFP {#SNMPINDEX}: Vendor |zyxel.4728f.sfp.vendor[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;Transceiver module vendor name. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |5abb9b467e934873808b4b49bdd74f5f|
ROW |35801 |20 |.1.3.6.1.4.1.890.1.5.8.46.9.2.1.2.{#SNMPINDEX} |10427 |ZYXEL XGS-4728F: Temperature "{#ZYXEL.TEMP.ID}" |zyxel.4728f.temp[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;The current temperature measured at this sensor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |db030cd64cdc471cb5298ceb9973155a|
ROW |35802 |20 |.1.3.6.1.4.1.890.1.5.8.46.9.3.1.2.{#SNMPINDEX} |10427 |ZYXEL XGS-4728F: Nominal "{#ZYXEL.VOLT.NOMINAL}" |zyxel.4728f.volt[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;The current voltage reading. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |2999674cc176471887c1878b881b8422|
-ROW |35803 |20 |1.3.6.1.2.1.1.4.0 |10428 |System contact details |cisco.ucs.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |ad342e11ce9f4f79bf9b0182c3f83488|
-ROW |35804 |20 |1.3.6.1.2.1.1.1.0 |10428 |System description |cisco.ucs.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |286fdb0fa49a4b378a6219a5ed76aac4|
+ROW |35803 |20 |1.3.6.1.2.1.1.4.0 |10428 |System contact details |cisco.ucs.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |ad342e11ce9f4f79bf9b0182c3f83488|
+ROW |35804 |20 |1.3.6.1.2.1.1.1.0 |10428 |System description |cisco.ucs.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |286fdb0fa49a4b378a6219a5ed76aac4|
ROW |35805 |20 |1.3.6.1.2.1.1.6.0 |10428 |System location |cisco.ucs.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |88bd32f8520144858a8ddb03dd200638|
ROW |35806 |20 |1.3.6.1.2.1.1.5.0 |10428 |System name |cisco.ucs.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |8bd3a60e4c70450492432c6abfa7b5f9|
ROW |35807 |20 |1.3.6.1.2.1.1.2.0 |10428 |System object ID |cisco.ucs.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining 'what&eol;kind of box' is being managed. For example, if vendor 'Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its 'Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |10d22e53318347658b2418ff33c26e0d|
ROW |35808 |20 |1.3.6.1.2.1.1.3.0 |10428 |Uptime |cisco.ucs.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time in seconds since the network management&eol;portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |b87e425f1bdf404a8e53ff277c0ff0c0|
-ROW |35809 |17 | |10428 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |5d839f68b6534dc8bd1fb5db7a757f02|
+ROW |35809 |17 | |10428 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |5d839f68b6534dc8bd1fb5db7a757f02|
ROW |35810 |5 | |10428 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |425 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |0926417e279a4e52a7f12587e9422e92|
ROW |35811 |20 |discovery[{#DISKARRAY_CACHE_LOCATION},1.3.6.1.4.1.9.9.719.1.45.11.1.2] |10428 |Array controller cache discovery |cisco.ucs.array.cache.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Array controllers: CISCO-UNIFIED-COMPUTING-STORAGE-MIB::cucsStorageControllerTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |f44bb3e5a8ad4d0c98df56267700b171|
ROW |35812 |20 |discovery[{#DISKARRAY_LOCATION},1.3.6.1.4.1.9.9.719.1.45.1.1.2] |10428 |Array controller discovery |cisco.ucs.array.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Array controllers: CISCO-UNIFIED-COMPUTING-STORAGE-MIB::cucsStorageControllerTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |bd1cf5ecd41f4dc49c6e31f32119787b|
@@ -5577,7 +5577,7 @@ ROW |29398 |18 | |10285 |System local time
ROW |29399 |18 | |10285 |CPU steal time |system.cpu.steal[node_exporter] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of CPU 'stolen' from this virtual machine by the hypervisor for other tasks (such as running another virtual machine). |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |2ee5885c4de646c0926f0c1a48890e68|
ROW |29400 |18 | |10285 |Free swap space |system.swap.free[node_exporter] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in bytes. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |ccc3c4d69fef412aa53c6a7320ef44fb|
ROW |29401 |18 | |10285 |Total swap space |system.swap.total[node_exporter] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The total space of swap volume/file in bytes. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |d0c1ef0a679546d780df30a02a27df44|
-ROW |29402 |18 | |10285 |Available memory |vm.memory.available[node_exporter] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory, in Linux, available = free + buffers + cache. On other platforms calculation may vary. See also: https://www.zabbix.com/documentation/5.4/manual/appendix/items/vm.memory.size_params |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |70a75efafbc84cbebd1bb262ec797523|
+ROW |29402 |18 | |10285 |Available memory |vm.memory.available[node_exporter] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory, in Linux, available = free + buffers + cache. On other platforms calculation may vary. See also Appendixes in Zabbix Documentation about parameters of the vm.memory.size item. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |70a75efafbc84cbebd1bb262ec797523|
ROW |29403 |18 | |10285 |Total memory |vm.memory.total[node_exporter] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total memory in Bytes |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |e3ad296f16084e9caa923b449d8c725f|
ROW |29404 |18 | |10285 |System boot time |system.boottime[node_exporter] |0 |7d |365d |0 |0 | |unixtime| | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |75afcb39d2d7496e9490cd14f1431600|
ROW |29405 |18 | |10285 |Context switches per second |system.cpu.switches[node_exporter] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |b873e0d178d144fca3597d617fc119e7|
@@ -7996,6 +7996,7 @@ ROW |36814 |18 | |10383 |SMART [{#NAME}]: ID {#ID} {#ATTRNAME} raw val
ROW |36815 |18 | |10384 |SMART [{#NAME}]: ID {#ID} {#ATTRNAME} raw value |smart.disk.attr.raw[{#NAME},{#ID}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |33668 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |5c09ba32ad72321bce5042d5f4dc59d2|
ROW |36822 |18 | |10449 |Velocloud: Clear data |velocloud.get.clear_metrics |0 |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Clear metrics for data without errors. |0 |30d |0 | |36821 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |9df4ba5324d94d0fb54d3231311016a6|
ROW |36823 |18 | |10449 |Velocloud: Get data collection errors |velocloud.get.error |0 |7d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Errors of aggregate script item. |0 |30d |0 | |36821 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |8a54309d8abc4fc7816b168329243de4|
+ROW |36881 |18 | |10318 |Container {#NAME}: CPU percent usage |docker.container_stats.cpu_pct_usage["{#NAME}"] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |d54b82d76c7b44ca8995486e4bf46298|
TABLE |items
FIELDS|itemid|type|snmp_oid|hostid|name |key_ |delay|history|trends|status|value_type|trapper_hosts|units |formula|logtimefmt|templateid|valuemapid|params|ipmi_sensor|authtype|username|password|publickey|privatekey|flags|interfaceid|description |inventory_link|lifetime|evaltype|jmx_endpoint|master_itemid|timeout|url |query_fields|posts|status_codes|follow_redirects|post_type|headers|retrieve_mode|request_method|output_format|verify_peer|verify_host|allow_traps|discover|uuid |
@@ -8255,9 +8256,9 @@ ROW |27188 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}
ROW |27189 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10207 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27190 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10207 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27191 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10207 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |59 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27195 |17 | |10207 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27199 |20 |1.3.6.1.2.1.1.5.0 |10207 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27202 |5 | |10207 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27195 |17 | |10207 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27199 |20 |1.3.6.1.2.1.1.5.0 |10207 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27202 |5 | |10207 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27215 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10208 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27216 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10208 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27217 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10208 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -8268,9 +8269,9 @@ ROW |27221 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |27222 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10208 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27223 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10208 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27224 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10208 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27228 |17 | |10208 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27232 |20 |1.3.6.1.2.1.1.5.0 |10208 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27235 |5 | |10208 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27228 |17 | |10208 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27232 |20 |1.3.6.1.2.1.1.5.0 |10208 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27235 |5 | |10208 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27251 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10210 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27252 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10210 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27253 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10210 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -8281,9 +8282,9 @@ ROW |27257 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |27258 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10210 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27259 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10210 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27260 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10210 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27264 |17 | |10210 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27268 |20 |1.3.6.1.2.1.1.5.0 |10210 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27271 |5 | |10210 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27264 |17 | |10210 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27268 |20 |1.3.6.1.2.1.1.5.0 |10210 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27271 |5 | |10210 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27272 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10211 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27273 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10211 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27274 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10211 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -8294,9 +8295,9 @@ ROW |27278 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |27279 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10211 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27280 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10211 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27281 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10211 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27285 |17 | |10211 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27289 |20 |1.3.6.1.2.1.1.5.0 |10211 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27292 |5 | |10211 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27285 |17 | |10211 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27289 |20 |1.3.6.1.2.1.1.5.0 |10211 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27292 |5 | |10211 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27299 |20 |1.3.6.1.4.1.1991.1.1.2.1.52.0 |10210 |CPU utilization |system.cpu.util[snAgGblCpuUtil1MinAvg.0] |1m |7d |365d |0 |0 | |% | | |27294 |NULL | | |0 | | | | |0 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;The statistics collection of 1 minute CPU utilization. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27301 |20 |1.3.6.1.4.1.1991.1.1.2.1.52.0 |10211 |CPU utilization |system.cpu.util[snAgGblCpuUtil1MinAvg.0] |1m |7d |365d |0 |0 | |% | | |27294 |NULL | | |0 | | | | |0 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;The statistics collection of 1 minute CPU utilization. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27321 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10218 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -8311,12 +8312,12 @@ ROW |27329 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}
ROW |27330 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10218 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27331 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10218 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27332 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10218 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |59 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27336 |17 | |10218 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27340 |20 |1.3.6.1.2.1.1.5.0 |10218 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27343 |5 | |10218 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27368 |17 | |10220 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27372 |20 |1.3.6.1.2.1.1.5.0 |10220 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27375 |5 | |10220 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27336 |17 | |10218 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27340 |20 |1.3.6.1.2.1.1.5.0 |10218 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27343 |5 | |10218 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27368 |17 | |10220 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27372 |20 |1.3.6.1.2.1.1.5.0 |10220 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27375 |5 | |10220 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27380 |20 |1.3.6.1.4.1.9.2.1.58 |10220 |CPU utilization |system.cpu.util[avgBusy5] |5m |7d |365d |0 |0 | |% | | |27376 |NULL | | |0 | | | | |0 |NULL |MIB: OLD-CISCO-CPU-MIB&eol;5 minute exponentially-decayed moving average of the CPU busy percentage.&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15215-collect-cpu-util-snmp.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27382 |20 |1.3.6.1.2.1.47.1.1.1.1.11.1 |10220 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |27378 |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27383 |20 |1.3.6.1.2.1.47.1.1.1.1.13.1 |10220 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |27379 |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -8360,9 +8361,9 @@ ROW |27458 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}
ROW |27459 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10221 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27460 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10221 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27461 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10221 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |59 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27465 |17 | |10221 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27469 |20 |1.3.6.1.2.1.1.5.0 |10221 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27472 |5 | |10221 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27465 |17 | |10221 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27469 |20 |1.3.6.1.2.1.1.5.0 |10221 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27472 |5 | |10221 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27486 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10222 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27487 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10222 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27488 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10222 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -8373,9 +8374,9 @@ ROW |27492 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |27493 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10222 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27494 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10222 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27495 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10222 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27499 |17 | |10222 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27503 |20 |1.3.6.1.2.1.1.5.0 |10222 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27506 |5 | |10222 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27499 |17 | |10222 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27503 |20 |1.3.6.1.2.1.1.5.0 |10222 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27506 |5 | |10222 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27520 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10223 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27521 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10223 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27522 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10223 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -8388,9 +8389,9 @@ ROW |27528 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}
ROW |27529 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10223 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27530 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10223 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27531 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10223 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |59 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27535 |17 | |10223 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27539 |20 |1.3.6.1.2.1.1.5.0 |10223 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27542 |5 | |10223 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27535 |17 | |10223 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27539 |20 |1.3.6.1.2.1.1.5.0 |10223 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27542 |5 | |10223 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27556 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10224 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27557 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10224 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27558 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10224 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -8403,9 +8404,9 @@ ROW |27564 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}
ROW |27565 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10224 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27566 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10224 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27567 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10224 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |59 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27571 |17 | |10224 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27575 |20 |1.3.6.1.2.1.1.5.0 |10224 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27578 |5 | |10224 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27571 |17 | |10224 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27575 |20 |1.3.6.1.2.1.1.5.0 |10224 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27578 |5 | |10224 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27619 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFNAME},1.3.6.1.2.1.2.2.1.2,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3] |10226 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27078 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27620 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10226 |Interface {#IFDESCR}: Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27079 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27621 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10226 |Interface {#IFDESCR}: Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27086 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -8418,9 +8419,9 @@ ROW |27627 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}
ROW |27628 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10226 |Interface {#IFDESCR}: Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27080 |66 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27629 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10226 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27630 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10226 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |59 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27634 |17 | |10226 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27638 |20 |1.3.6.1.2.1.1.5.0 |10226 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27641 |5 | |10226 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27634 |17 | |10226 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27638 |20 |1.3.6.1.2.1.1.5.0 |10226 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27641 |5 | |10226 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27642 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10227 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27643 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10227 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27644 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10227 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -8433,9 +8434,9 @@ ROW |27650 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}
ROW |27651 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10227 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27652 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10227 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27653 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10227 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |59 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27657 |17 | |10227 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27661 |20 |1.3.6.1.2.1.1.5.0 |10227 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27664 |5 | |10227 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27657 |17 | |10227 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27661 |20 |1.3.6.1.2.1.1.5.0 |10227 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27664 |5 | |10227 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27722 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10229 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27723 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10229 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27724 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10229 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -8448,9 +8449,9 @@ ROW |27730 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}
ROW |27731 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10229 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27732 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10229 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27733 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10229 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |59 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27737 |17 | |10229 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27741 |20 |1.3.6.1.2.1.1.5.0 |10229 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27744 |5 | |10229 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27737 |17 | |10229 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27741 |20 |1.3.6.1.2.1.1.5.0 |10229 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27744 |5 | |10229 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27756 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10230 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27757 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10230 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27758 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10230 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -8461,9 +8462,9 @@ ROW |27762 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |27763 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10230 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27764 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10230 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27765 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10230 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27769 |17 | |10230 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27773 |20 |1.3.6.1.2.1.1.5.0 |10230 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27776 |5 | |10230 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27769 |17 | |10230 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27773 |20 |1.3.6.1.2.1.1.5.0 |10230 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27776 |5 | |10230 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27788 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10231 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27789 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10231 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27790 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10231 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -8476,9 +8477,9 @@ ROW |27796 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}
ROW |27797 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10231 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27798 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10231 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27799 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10231 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |59 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27803 |17 | |10231 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27807 |20 |1.3.6.1.2.1.1.5.0 |10231 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27810 |5 | |10231 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27803 |17 | |10231 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27807 |20 |1.3.6.1.2.1.1.5.0 |10231 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27810 |5 | |10231 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27872 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10233 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27873 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27874 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -8489,9 +8490,9 @@ ROW |27878 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |27879 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27880 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27881 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27885 |17 | |10233 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27889 |20 |1.3.6.1.2.1.1.5.0 |10233 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27892 |5 | |10233 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27885 |17 | |10233 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27889 |20 |1.3.6.1.2.1.1.5.0 |10233 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27892 |5 | |10233 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27909 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10234 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27910 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10234 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27911 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10234 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -8502,9 +8503,9 @@ ROW |27915 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |27916 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10234 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27917 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10234 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27918 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10234 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27922 |17 | |10234 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27926 |20 |1.3.6.1.2.1.1.5.0 |10234 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27929 |5 | |10234 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27922 |17 | |10234 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27926 |20 |1.3.6.1.2.1.1.5.0 |10234 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27929 |5 | |10234 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27944 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10235 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27945 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10235 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27946 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10235 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -8517,9 +8518,9 @@ ROW |27952 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}
ROW |27953 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10235 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27954 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10235 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27955 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10235 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |59 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27959 |17 | |10235 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27963 |20 |1.3.6.1.2.1.1.5.0 |10235 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27966 |5 | |10235 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27959 |17 | |10235 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27963 |20 |1.3.6.1.2.1.1.5.0 |10235 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27966 |5 | |10235 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27976 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFNAME},1.3.6.1.2.1.2.2.1.2,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3] |10236 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27078 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27977 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10236 |Interface {#IFDESCR}: Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27079 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27978 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10236 |Interface {#IFDESCR}: Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27086 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -8530,9 +8531,9 @@ ROW |27982 |20 |1.3.6.1.2.1.2.2.1.16.{#SNMPINDEX}
ROW |27983 |20 |1.3.6.1.2.1.2.2.1.5.{#SNMPINDEX} |10236 |Interface {#IFDESCR}: Speed |net.if.speed[ifSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27081 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second.&eol;For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made,&eol;this object should contain the nominal bandwidth.&eol;If the bandwidth of the interface is greater than the maximum value reportable by this object then&eol;this object should report its maximum value (4,294,967,295) and ifHighSpeed must be used to report the interace's speed.&eol;For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27984 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10236 |Interface {#IFDESCR}: Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27087 |60 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |27985 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10236 |Interface {#IFDESCR}: Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27080 |66 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27989 |17 | |10236 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27993 |20 |1.3.6.1.2.1.1.5.0 |10236 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |27996 |5 | |10236 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27989 |17 | |10236 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27993 |20 |1.3.6.1.2.1.1.5.0 |10236 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |27996 |5 | |10236 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |28005 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFNAME},1.3.6.1.2.1.2.2.1.2,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3] |10237 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27078 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |28006 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10237 |Interface {#IFDESCR}: Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27079 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |28007 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10237 |Interface {#IFDESCR}: Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27086 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -8543,9 +8544,9 @@ ROW |28011 |20 |1.3.6.1.2.1.2.2.1.16.{#SNMPINDEX}
ROW |28012 |20 |1.3.6.1.2.1.2.2.1.5.{#SNMPINDEX} |10237 |Interface {#IFDESCR}: Speed |net.if.speed[ifSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27081 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second.&eol;For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made,&eol;this object should contain the nominal bandwidth.&eol;If the bandwidth of the interface is greater than the maximum value reportable by this object then&eol;this object should report its maximum value (4,294,967,295) and ifHighSpeed must be used to report the interace's speed.&eol;For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |28013 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10237 |Interface {#IFDESCR}: Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27087 |60 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |28014 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10237 |Interface {#IFDESCR}: Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27080 |66 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |28018 |17 | |10237 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |28022 |20 |1.3.6.1.2.1.1.5.0 |10237 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |28025 |5 | |10237 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |28018 |17 | |10237 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |28022 |20 |1.3.6.1.2.1.1.5.0 |10237 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |28025 |5 | |10237 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |28118 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10250 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |28119 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10250 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |28120 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10250 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -8558,9 +8559,9 @@ ROW |28126 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}
ROW |28127 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10250 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |28128 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10250 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |28129 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10250 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |59 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |28133 |17 | |10250 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |28137 |20 |1.3.6.1.2.1.1.5.0 |10250 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |28140 |5 | |10250 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |28133 |17 | |10250 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |28137 |20 |1.3.6.1.2.1.1.5.0 |10250 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |28140 |5 | |10250 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |28207 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7,{#ENT_SN},1.3.6.1.2.1.47.1.1.1.1.11] |10253 |Entity Serial Numbers Discovery |entity_sn.discovery |1h |90d |0 |0 |4 | | | | |27393 |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |28208 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10253 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[entPhysicalSerialNum.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |27419 |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |28209 |20 |1.3.6.1.2.1.47.1.1.1.1.13.1 |10253 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |27379 |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -8585,17 +8586,17 @@ ROW |28229 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |28230 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10253 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |28231 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10253 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |28232 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10253 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |28236 |17 | |10253 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |28240 |20 |1.3.6.1.2.1.1.5.0 |10253 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |28243 |5 | |10253 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |28236 |17 | |10253 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |28240 |20 |1.3.6.1.2.1.1.5.0 |10253 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |28243 |5 | |10253 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |28245 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.109.1.1.1.1.5] |10253 |CPU Discovery |cpu.discovery |1h |90d |0 |0 |4 | | | | |28244 |NULL | | |0 | | | | |1 |NULL |If your IOS device has several CPUs, you must use CISCO-PROCESS-MIB and its object cpmCPUTotal5minRev from the table called cpmCPUTotalTable ,&eol;indexed with cpmCPUTotalIndex .&eol;This table allows CISCO-PROCESS-MIB to keep CPU statistics for different physical entities in the router,&eol;like different CPU chips, group of CPUs, or CPUs in different modules/cards.&eol;In case of a single CPU, cpmCPUTotalTable has only one entry. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |28247 |20 |1.3.6.1.4.1.9.9.109.1.1.1.1.5.{#SNMPINDEX} |10253 |{#SNMPVALUE}: CPU utilization |system.cpu.util[cpmCPUTotal5min.{#SNMPINDEX}] |5m |7d |365d |0 |0 | |% | | |28246 |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-PROCESS-MIB&eol;The overall CPU busy percentage in the last 5 minute&eol;period. This object deprecates the avgBusy5 object from&eol;the OLD-CISCO-SYSTEM-MIB. This object is deprecated&eol;by cpmCPUTotal5minRev which has the changed range&eol;of value (0..100)&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15215-collect-cpu-util-snmp.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |28249 |5 | |10084 |Zabbix server: Preprocessing queue |zabbix[preprocessing_queue] |1m |1w |365d |0 |3 | | | | |28248 |NULL | | |0 | | | | |0 |NULL |Count of values enqueued in the preprocessing queue. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |28280 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10254 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |28281 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10254 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |59 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |28285 |17 | |10254 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |28289 |20 |1.3.6.1.2.1.1.5.0 |10254 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |28292 |5 | |10254 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |28285 |17 | |10254 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |28289 |20 |1.3.6.1.2.1.1.5.0 |10254 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |28292 |5 | |10254 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |28293 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10254 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |28294 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10254 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |28295 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10254 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -8606,26 +8607,26 @@ ROW |28299 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |28300 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10254 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |28301 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10254 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |28302 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10254 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |28333 |17 | |10255 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |28337 |20 |1.3.6.1.2.1.1.5.0 |10255 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |28340 |5 | |10255 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |28380 |17 | |10256 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |28384 |20 |1.3.6.1.2.1.1.5.0 |10256 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |28387 |5 | |10256 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |28457 |17 | |10258 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |28461 |20 |1.3.6.1.2.1.1.5.0 |10258 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |28464 |5 | |10258 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |28485 |17 | |10259 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |28489 |20 |1.3.6.1.2.1.1.5.0 |10259 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |28492 |5 | |10259 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |28333 |17 | |10255 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |28337 |20 |1.3.6.1.2.1.1.5.0 |10255 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |28340 |5 | |10255 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |28380 |17 | |10256 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |28384 |20 |1.3.6.1.2.1.1.5.0 |10256 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |28387 |5 | |10256 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |28457 |17 | |10258 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |28461 |20 |1.3.6.1.2.1.1.5.0 |10258 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |28464 |5 | |10258 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |28485 |17 | |10259 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |28489 |20 |1.3.6.1.2.1.1.5.0 |10259 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |28492 |5 | |10259 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |28534 |5 | |10084 |Zabbix server: LLD queue |zabbix[lld_queue] |1m |1w |365d |0 |3 | | | | |28533 |NULL | | |0 | | | | |0 |NULL |Count of values enqueued in the low-level discovery processing queue. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |28536 |5 | |10084 |Zabbix server: Utilization of LLD manager internal processes, in % |zabbix[process,lld manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |28535 |NULL | | |0 | | | | |0 |NULL |Average percentage of time lld manager processes have been busy in the last minute |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |28538 |5 | |10084 |Zabbix server: Utilization of LLD worker internal processes, in % |zabbix[process,lld worker,avg,busy] |1m |1w |365d |0 |0 | |% | | |28537 |NULL | | |0 | | | | |0 |NULL |Average percentage of time lld worker processes have been busy in the last minute |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |28955 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10248 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |28956 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10248 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |59 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |28960 |17 | |10248 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |28964 |20 |1.3.6.1.2.1.1.5.0 |10248 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |28967 |5 | |10248 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |28960 |17 | |10248 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |28964 |20 |1.3.6.1.2.1.1.5.0 |10248 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |28967 |5 | |10248 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |28968 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10248 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |28969 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10248 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |28970 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10248 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -8670,9 +8671,9 @@ ROW |29044 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}
ROW |29045 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10248 |{#FSNAME}: Total space |vfs.fs.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |29028 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main storage allocated to a buffer pool might be modified or the amount of disk space allocated to virtual storage might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29046 |15 | |10248 |{#FSNAME}: Space utilization |vfs.fs.pused[storageUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |29029 |NULL |(last(//vfs.fs.used[hrStorageUsed.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100 | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29047 |20 |1.3.6.1.4.1.2021.9.1.10["index","1.3.6.1.4.1.2021.9.1.2", "{#FSNAME}"] |10248 |{#FSNAME}: Free inodes in % |vfs.fs.inode.pfree[dskPercentNode.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |29030 |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;If having problems collecting this item make sure access to UCD-SNMP-MIB is allowed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29053 |17 | |10249 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29057 |20 |1.3.6.1.2.1.1.5.0 |10249 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29060 |5 | |10249 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29053 |17 | |10249 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29057 |20 |1.3.6.1.2.1.1.5.0 |10249 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29060 |5 | |10249 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29077 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10249 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27118 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29078 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10249 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27119 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29079 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10249 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27126 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -8709,7 +8710,7 @@ ROW |29147 |0 |
ROW |29148 |0 | |10001 |System boot time |system.boottime |15m |7d |365d |0 |3 | |unixtime| | |29111 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29149 |0 | |10001 |System local time |system.localtime |1m |7d |365d |0 |3 | |unixtime| | |29112 |NULL | | |0 | | | | |0 |NULL |System local time of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29150 |0 | |10001 |System name |system.hostname |1h |2w |0 |0 |1 | | | | |29113 |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29151 |0 | |10001 |System description |system.uname |1h |2w |0 |0 |1 | | | | |29114 |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29151 |0 | |10001 |System description |system.uname |15m |2w |0 |0 |1 | | | | |29114 |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29152 |0 | |10001 |Number of logged in users |system.users.num |1m |7d |365d |0 |3 | | | | |29115 |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29153 |0 | |10001 |Maximum number of open file descriptors |kernel.maxfiles |1h |7d |365d |0 |3 | | | | |29116 |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29154 |0 | |10001 |Maximum number of processes |kernel.maxproc |1h |7d |365d |0 |3 | | | | |29117 |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -8751,7 +8752,7 @@ ROW |29496 |0 |
ROW |29498 |0 | |10081 |Uptime |system.uptime |30s |2w |0d |0 |3 | |uptime | | |29472 |NULL | | |0 | | | | |0 |NULL |System uptime in 'N days, hh:mm:ss' format. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29499 |0 | |10081 |System local time |system.localtime |1m |7d |365d |0 |3 | |unixtime| | |29473 |NULL | | |0 | | | | |0 |NULL |System local time of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29500 |0 | |10081 |System name |system.hostname |1h |2w |0 |0 |1 | | | | |29474 |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29501 |0 | |10081 |System description |system.uname |1h |2w |0 |0 |1 | | | | |29475 |NULL | | |0 | | | | |0 |NULL |System description of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29501 |0 | |10081 |System description |system.uname |15m |2w |0 |0 |1 | | | | |29475 |NULL | | |0 | | | | |0 |NULL |System description of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29502 |0 | |10081 |Number of processes |proc.num[] |1m |7d |365d |0 |3 | | | | |29476 |NULL | | |0 | | | | |0 |NULL |The number of processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29503 |0 | |10081 |Number of threads |perf_counter_en["\System\Threads"] |1m |7d |365d |0 |3 | | | | |29477 |NULL | | |0 | | | | |0 |NULL |The number of threads used by all running processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29504 |0 | |10081 |Operating system architecture |system.sw.arch |1h |2w |0 |0 |1 | | | | |29478 |NULL | | |0 | | | | |0 |NULL |Operating system architecture of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -8769,158 +8770,158 @@ ROW |29554 |5 |
ROW |29555 |5 | |10081 |Zabbix agent availability |zabbix[host,agent,available] |1m |7d |365d |0 |3 | | | | |29544 |70 | | |0 | | | | |0 |NULL |Monitoring agent availability status |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29823 |5 | |10084 |Zabbix server: Utilization of alert syncer internal processes, in % |zabbix[process,alert syncer,avg,busy] |1m |1w |365d |0 |0 | |% | | |29822 |NULL | | |0 | | | | |0 |NULL |Average percentage of time alert syncer processes have been busy in the last minute |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29834 |20 |1.3.6.1.2.1.1.3.0 |10237 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29835 |20 |1.3.6.1.2.1.1.6.0 |10237 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29836 |20 |1.3.6.1.2.1.1.4.0 |10237 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29835 |20 |1.3.6.1.2.1.1.6.0 |10237 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29836 |20 |1.3.6.1.2.1.1.4.0 |10237 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29837 |20 |1.3.6.1.2.1.1.2.0 |10237 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29838 |20 |1.3.6.1.2.1.1.1.0 |10237 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29838 |20 |1.3.6.1.2.1.1.1.0 |10237 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29849 |20 |1.3.6.1.2.1.1.3.0 |10207 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29850 |20 |1.3.6.1.2.1.1.6.0 |10207 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29851 |20 |1.3.6.1.2.1.1.4.0 |10207 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29850 |20 |1.3.6.1.2.1.1.6.0 |10207 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29851 |20 |1.3.6.1.2.1.1.4.0 |10207 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29852 |20 |1.3.6.1.2.1.1.2.0 |10207 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29853 |20 |1.3.6.1.2.1.1.1.0 |10207 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29853 |20 |1.3.6.1.2.1.1.1.0 |10207 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29854 |20 |1.3.6.1.2.1.1.3.0 |10208 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29855 |20 |1.3.6.1.2.1.1.6.0 |10208 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29856 |20 |1.3.6.1.2.1.1.4.0 |10208 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29855 |20 |1.3.6.1.2.1.1.6.0 |10208 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29856 |20 |1.3.6.1.2.1.1.4.0 |10208 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29857 |20 |1.3.6.1.2.1.1.2.0 |10208 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29858 |20 |1.3.6.1.2.1.1.1.0 |10208 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29858 |20 |1.3.6.1.2.1.1.1.0 |10208 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29859 |20 |1.3.6.1.2.1.1.3.0 |10210 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29860 |20 |1.3.6.1.2.1.1.6.0 |10210 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29861 |20 |1.3.6.1.2.1.1.4.0 |10210 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29860 |20 |1.3.6.1.2.1.1.6.0 |10210 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29861 |20 |1.3.6.1.2.1.1.4.0 |10210 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29862 |20 |1.3.6.1.2.1.1.2.0 |10210 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29863 |20 |1.3.6.1.2.1.1.1.0 |10210 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29863 |20 |1.3.6.1.2.1.1.1.0 |10210 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29864 |20 |1.3.6.1.2.1.1.3.0 |10211 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29865 |20 |1.3.6.1.2.1.1.6.0 |10211 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29866 |20 |1.3.6.1.2.1.1.4.0 |10211 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29865 |20 |1.3.6.1.2.1.1.6.0 |10211 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29866 |20 |1.3.6.1.2.1.1.4.0 |10211 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29867 |20 |1.3.6.1.2.1.1.2.0 |10211 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29868 |20 |1.3.6.1.2.1.1.1.0 |10211 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29868 |20 |1.3.6.1.2.1.1.1.0 |10211 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29869 |20 |1.3.6.1.2.1.1.3.0 |10218 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29870 |20 |1.3.6.1.2.1.1.6.0 |10218 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29871 |20 |1.3.6.1.2.1.1.4.0 |10218 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29870 |20 |1.3.6.1.2.1.1.6.0 |10218 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29871 |20 |1.3.6.1.2.1.1.4.0 |10218 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29872 |20 |1.3.6.1.2.1.1.2.0 |10218 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29873 |20 |1.3.6.1.2.1.1.1.0 |10218 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29873 |20 |1.3.6.1.2.1.1.1.0 |10218 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29874 |20 |1.3.6.1.2.1.1.3.0 |10220 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29875 |20 |1.3.6.1.2.1.1.6.0 |10220 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29876 |20 |1.3.6.1.2.1.1.4.0 |10220 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29875 |20 |1.3.6.1.2.1.1.6.0 |10220 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29876 |20 |1.3.6.1.2.1.1.4.0 |10220 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29877 |20 |1.3.6.1.2.1.1.2.0 |10220 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29878 |20 |1.3.6.1.2.1.1.1.0 |10220 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29878 |20 |1.3.6.1.2.1.1.1.0 |10220 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29879 |20 |1.3.6.1.2.1.1.3.0 |10221 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29880 |20 |1.3.6.1.2.1.1.6.0 |10221 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29881 |20 |1.3.6.1.2.1.1.4.0 |10221 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29880 |20 |1.3.6.1.2.1.1.6.0 |10221 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29881 |20 |1.3.6.1.2.1.1.4.0 |10221 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29882 |20 |1.3.6.1.2.1.1.2.0 |10221 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29883 |20 |1.3.6.1.2.1.1.1.0 |10221 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29883 |20 |1.3.6.1.2.1.1.1.0 |10221 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29884 |20 |1.3.6.1.2.1.1.3.0 |10222 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29885 |20 |1.3.6.1.2.1.1.6.0 |10222 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29886 |20 |1.3.6.1.2.1.1.4.0 |10222 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29885 |20 |1.3.6.1.2.1.1.6.0 |10222 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29886 |20 |1.3.6.1.2.1.1.4.0 |10222 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29887 |20 |1.3.6.1.2.1.1.2.0 |10222 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29888 |20 |1.3.6.1.2.1.1.1.0 |10222 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29888 |20 |1.3.6.1.2.1.1.1.0 |10222 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29889 |20 |1.3.6.1.2.1.1.3.0 |10223 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29890 |20 |1.3.6.1.2.1.1.6.0 |10223 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29891 |20 |1.3.6.1.2.1.1.4.0 |10223 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29890 |20 |1.3.6.1.2.1.1.6.0 |10223 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29891 |20 |1.3.6.1.2.1.1.4.0 |10223 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29892 |20 |1.3.6.1.2.1.1.2.0 |10223 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29893 |20 |1.3.6.1.2.1.1.1.0 |10223 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29893 |20 |1.3.6.1.2.1.1.1.0 |10223 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29894 |20 |1.3.6.1.2.1.1.3.0 |10224 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29895 |20 |1.3.6.1.2.1.1.6.0 |10224 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29896 |20 |1.3.6.1.2.1.1.4.0 |10224 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29895 |20 |1.3.6.1.2.1.1.6.0 |10224 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29896 |20 |1.3.6.1.2.1.1.4.0 |10224 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29897 |20 |1.3.6.1.2.1.1.2.0 |10224 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29898 |20 |1.3.6.1.2.1.1.1.0 |10224 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29898 |20 |1.3.6.1.2.1.1.1.0 |10224 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29899 |20 |1.3.6.1.2.1.1.3.0 |10226 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29900 |20 |1.3.6.1.2.1.1.6.0 |10226 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29901 |20 |1.3.6.1.2.1.1.4.0 |10226 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29900 |20 |1.3.6.1.2.1.1.6.0 |10226 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29901 |20 |1.3.6.1.2.1.1.4.0 |10226 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29902 |20 |1.3.6.1.2.1.1.2.0 |10226 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29903 |20 |1.3.6.1.2.1.1.1.0 |10226 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29903 |20 |1.3.6.1.2.1.1.1.0 |10226 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29904 |20 |1.3.6.1.2.1.1.3.0 |10227 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29905 |20 |1.3.6.1.2.1.1.6.0 |10227 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29906 |20 |1.3.6.1.2.1.1.4.0 |10227 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29905 |20 |1.3.6.1.2.1.1.6.0 |10227 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29906 |20 |1.3.6.1.2.1.1.4.0 |10227 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29907 |20 |1.3.6.1.2.1.1.2.0 |10227 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29908 |20 |1.3.6.1.2.1.1.1.0 |10227 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29908 |20 |1.3.6.1.2.1.1.1.0 |10227 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29909 |20 |1.3.6.1.2.1.1.3.0 |10229 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29910 |20 |1.3.6.1.2.1.1.6.0 |10229 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29911 |20 |1.3.6.1.2.1.1.4.0 |10229 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29910 |20 |1.3.6.1.2.1.1.6.0 |10229 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29911 |20 |1.3.6.1.2.1.1.4.0 |10229 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29912 |20 |1.3.6.1.2.1.1.2.0 |10229 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29913 |20 |1.3.6.1.2.1.1.1.0 |10229 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29913 |20 |1.3.6.1.2.1.1.1.0 |10229 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29914 |20 |1.3.6.1.2.1.1.3.0 |10230 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29915 |20 |1.3.6.1.2.1.1.6.0 |10230 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29916 |20 |1.3.6.1.2.1.1.4.0 |10230 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29915 |20 |1.3.6.1.2.1.1.6.0 |10230 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29916 |20 |1.3.6.1.2.1.1.4.0 |10230 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29917 |20 |1.3.6.1.2.1.1.2.0 |10230 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29918 |20 |1.3.6.1.2.1.1.1.0 |10230 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29918 |20 |1.3.6.1.2.1.1.1.0 |10230 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29919 |20 |1.3.6.1.2.1.1.3.0 |10231 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29920 |20 |1.3.6.1.2.1.1.6.0 |10231 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29921 |20 |1.3.6.1.2.1.1.4.0 |10231 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29920 |20 |1.3.6.1.2.1.1.6.0 |10231 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29921 |20 |1.3.6.1.2.1.1.4.0 |10231 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29922 |20 |1.3.6.1.2.1.1.2.0 |10231 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29923 |20 |1.3.6.1.2.1.1.1.0 |10231 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29923 |20 |1.3.6.1.2.1.1.1.0 |10231 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29924 |20 |1.3.6.1.2.1.1.3.0 |10233 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29925 |20 |1.3.6.1.2.1.1.6.0 |10233 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29926 |20 |1.3.6.1.2.1.1.4.0 |10233 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29925 |20 |1.3.6.1.2.1.1.6.0 |10233 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29926 |20 |1.3.6.1.2.1.1.4.0 |10233 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29927 |20 |1.3.6.1.2.1.1.2.0 |10233 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29928 |20 |1.3.6.1.2.1.1.1.0 |10233 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29928 |20 |1.3.6.1.2.1.1.1.0 |10233 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29929 |20 |1.3.6.1.2.1.1.3.0 |10234 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29930 |20 |1.3.6.1.2.1.1.6.0 |10234 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29931 |20 |1.3.6.1.2.1.1.4.0 |10234 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29930 |20 |1.3.6.1.2.1.1.6.0 |10234 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29931 |20 |1.3.6.1.2.1.1.4.0 |10234 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29932 |20 |1.3.6.1.2.1.1.2.0 |10234 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29933 |20 |1.3.6.1.2.1.1.1.0 |10234 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29933 |20 |1.3.6.1.2.1.1.1.0 |10234 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29934 |20 |1.3.6.1.2.1.1.3.0 |10235 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29935 |20 |1.3.6.1.2.1.1.6.0 |10235 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29936 |20 |1.3.6.1.2.1.1.4.0 |10235 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29935 |20 |1.3.6.1.2.1.1.6.0 |10235 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29936 |20 |1.3.6.1.2.1.1.4.0 |10235 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29937 |20 |1.3.6.1.2.1.1.2.0 |10235 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29938 |20 |1.3.6.1.2.1.1.1.0 |10235 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29938 |20 |1.3.6.1.2.1.1.1.0 |10235 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29939 |20 |1.3.6.1.2.1.1.3.0 |10236 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29940 |20 |1.3.6.1.2.1.1.6.0 |10236 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29941 |20 |1.3.6.1.2.1.1.4.0 |10236 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29940 |20 |1.3.6.1.2.1.1.6.0 |10236 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29941 |20 |1.3.6.1.2.1.1.4.0 |10236 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29942 |20 |1.3.6.1.2.1.1.2.0 |10236 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29943 |20 |1.3.6.1.2.1.1.1.0 |10236 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29943 |20 |1.3.6.1.2.1.1.1.0 |10236 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29944 |20 |1.3.6.1.2.1.1.3.0 |10250 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29945 |20 |1.3.6.1.2.1.1.6.0 |10250 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29946 |20 |1.3.6.1.2.1.1.4.0 |10250 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29945 |20 |1.3.6.1.2.1.1.6.0 |10250 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29946 |20 |1.3.6.1.2.1.1.4.0 |10250 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29947 |20 |1.3.6.1.2.1.1.2.0 |10250 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29948 |20 |1.3.6.1.2.1.1.1.0 |10250 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29948 |20 |1.3.6.1.2.1.1.1.0 |10250 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29954 |20 |1.3.6.1.2.1.1.3.0 |10253 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29955 |20 |1.3.6.1.2.1.1.6.0 |10253 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29956 |20 |1.3.6.1.2.1.1.4.0 |10253 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29955 |20 |1.3.6.1.2.1.1.6.0 |10253 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29956 |20 |1.3.6.1.2.1.1.4.0 |10253 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29957 |20 |1.3.6.1.2.1.1.2.0 |10253 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29958 |20 |1.3.6.1.2.1.1.1.0 |10253 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29958 |20 |1.3.6.1.2.1.1.1.0 |10253 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29959 |20 |1.3.6.1.2.1.1.3.0 |10254 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29960 |20 |1.3.6.1.2.1.1.6.0 |10254 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29961 |20 |1.3.6.1.2.1.1.4.0 |10254 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29960 |20 |1.3.6.1.2.1.1.6.0 |10254 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29961 |20 |1.3.6.1.2.1.1.4.0 |10254 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29962 |20 |1.3.6.1.2.1.1.2.0 |10254 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29963 |20 |1.3.6.1.2.1.1.1.0 |10254 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29963 |20 |1.3.6.1.2.1.1.1.0 |10254 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29964 |20 |1.3.6.1.2.1.1.3.0 |10255 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29965 |20 |1.3.6.1.2.1.1.6.0 |10255 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29966 |20 |1.3.6.1.2.1.1.4.0 |10255 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29965 |20 |1.3.6.1.2.1.1.6.0 |10255 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29966 |20 |1.3.6.1.2.1.1.4.0 |10255 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29967 |20 |1.3.6.1.2.1.1.2.0 |10255 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29968 |20 |1.3.6.1.2.1.1.1.0 |10255 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29968 |20 |1.3.6.1.2.1.1.1.0 |10255 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29969 |20 |1.3.6.1.2.1.1.3.0 |10256 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29970 |20 |1.3.6.1.2.1.1.6.0 |10256 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29971 |20 |1.3.6.1.2.1.1.4.0 |10256 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29970 |20 |1.3.6.1.2.1.1.6.0 |10256 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29971 |20 |1.3.6.1.2.1.1.4.0 |10256 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29972 |20 |1.3.6.1.2.1.1.2.0 |10256 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29973 |20 |1.3.6.1.2.1.1.1.0 |10256 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29973 |20 |1.3.6.1.2.1.1.1.0 |10256 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29974 |20 |1.3.6.1.2.1.1.3.0 |10258 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29975 |20 |1.3.6.1.2.1.1.6.0 |10258 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29976 |20 |1.3.6.1.2.1.1.4.0 |10258 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29975 |20 |1.3.6.1.2.1.1.6.0 |10258 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29976 |20 |1.3.6.1.2.1.1.4.0 |10258 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29977 |20 |1.3.6.1.2.1.1.2.0 |10258 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29978 |20 |1.3.6.1.2.1.1.1.0 |10258 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29978 |20 |1.3.6.1.2.1.1.1.0 |10258 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29979 |20 |1.3.6.1.2.1.1.3.0 |10259 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29980 |20 |1.3.6.1.2.1.1.6.0 |10259 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29981 |20 |1.3.6.1.2.1.1.4.0 |10259 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29980 |20 |1.3.6.1.2.1.1.6.0 |10259 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29981 |20 |1.3.6.1.2.1.1.4.0 |10259 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29982 |20 |1.3.6.1.2.1.1.2.0 |10259 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29983 |20 |1.3.6.1.2.1.1.1.0 |10259 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29983 |20 |1.3.6.1.2.1.1.1.0 |10259 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29984 |20 |1.3.6.1.2.1.1.3.0 |10248 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29985 |20 |1.3.6.1.2.1.1.6.0 |10248 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29986 |20 |1.3.6.1.2.1.1.4.0 |10248 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29985 |20 |1.3.6.1.2.1.1.6.0 |10248 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29986 |20 |1.3.6.1.2.1.1.4.0 |10248 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29987 |20 |1.3.6.1.2.1.1.2.0 |10248 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29988 |20 |1.3.6.1.2.1.1.1.0 |10248 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29988 |20 |1.3.6.1.2.1.1.1.0 |10248 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29989 |20 |1.3.6.1.2.1.1.3.0 |10249 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29990 |20 |1.3.6.1.2.1.1.6.0 |10249 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29991 |20 |1.3.6.1.2.1.1.4.0 |10249 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29990 |20 |1.3.6.1.2.1.1.6.0 |10249 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29991 |20 |1.3.6.1.2.1.1.4.0 |10249 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29992 |20 |1.3.6.1.2.1.1.2.0 |10249 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29993 |20 |1.3.6.1.2.1.1.1.0 |10249 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |30049 |17 | |10304 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |30050 |20 |1.3.6.1.2.1.1.4.0 |10304 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |30051 |20 |1.3.6.1.2.1.1.1.0 |10304 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |30052 |20 |1.3.6.1.2.1.1.6.0 |10304 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |30053 |20 |1.3.6.1.2.1.1.5.0 |10304 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29993 |20 |1.3.6.1.2.1.1.1.0 |10249 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |30049 |17 | |10304 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |30050 |20 |1.3.6.1.2.1.1.4.0 |10304 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |30051 |20 |1.3.6.1.2.1.1.1.0 |10304 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |30052 |20 |1.3.6.1.2.1.1.6.0 |10304 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |30053 |20 |1.3.6.1.2.1.1.5.0 |10304 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |30054 |20 |1.3.6.1.2.1.1.2.0 |10304 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |30055 |20 |1.3.6.1.2.1.1.3.0 |10304 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |30056 |5 | |10304 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |30056 |5 | |10304 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |30095 |20 |1.3.6.1.4.1.1991.1.1.2.1.53.0 |10210 |Memory utilization |vm.memory.util[snAgGblDynMemUtil.0] |1m |7d |365d |0 |0 | |% | | |30094 |NULL | | |0 | | | | |0 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;The system dynamic memory utilization, in unit of percentage.&eol;Deprecated: Refer to snAgSystemDRAMUtil.&eol;For NI platforms, refer to snAgentBrdMemoryUtil100thPercent |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |30096 |20 |1.3.6.1.4.1.1991.1.1.2.1.53.0 |10211 |Memory utilization |vm.memory.util[snAgGblDynMemUtil.0] |1m |7d |365d |0 |0 | |% | | |30094 |NULL | | |0 | | | | |0 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;The system dynamic memory utilization, in unit of percentage.&eol;Deprecated: Refer to snAgSystemDRAMUtil.&eol;For NI platforms, refer to snAgentBrdMemoryUtil100thPercent |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |30098 |20 |1.3.6.1.2.1.1.1.0 |10218 |Operating system |system.sw.os[sysDescr.0] |1h |2w |0 |0 |1 | | | | |30097 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -8950,7 +8951,7 @@ ROW |31424 |0 |
ROW |31425 |15 | |10081 |Free swap space |system.swap.free |1m |7d |365d |0 |3 | |B | | |31421 |NULL |last(//system.swap.size[,total]) - last(//system.swap.size[,total]) / 100 * last(//perf_counter_en["\Paging file(_Total)\% Usage"]) | |0 | | | | |0 |NULL |The free space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |31426 |0 | |10081 |Network interfaces WMI get |wmi.getall[root\cimv2,"select Name,Description,NetConnectionID,Speed,AdapterTypeId,NetConnectionStatus,GUID from win32_networkadapter where PhysicalAdapter=True and NetConnectionStatus>0"]|1m |0 |0 |0 |4 | | | | |31422 |NULL | | |0 | | | | |0 |NULL |Raw data of win32_networkadapter. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |31431 |0 | |10081 |Physical disks discovery |perf_instance_en.discovery[PhysicalDisk] |1h |90d |0 |0 |4 | | | | |31430 |NULL | | |0 | | | | |1 |NULL |Discovery of installed physical disks. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |31443 |0 | |10081 |{#DEVNAME}: Disk utilization |perf_counter_en["\PhysicalDisk({#DEVNAME})\% Disk Time",60] |1m |7d |365d |0 |0 | |% | | |31439 |NULL | | |0 | | | | |2 |NULL |This item is the percentage of elapsed time that the selected disk drive was busy servicing read or writes requests. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |31443 |0 | |10081 |{#DEVNAME}: Disk utilization by idle time |perf_counter_en["\PhysicalDisk({#DEVNAME})\% Idle Time",60] |1m |7d |365d |0 |0 | |% | | |31439 |NULL | | |0 | | | | |2 |NULL |This item is the percentage of elapsed time that the selected disk drive was busy servicing read or writes requests based on idle time. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |31444 |0 | |10081 |{#DEVNAME}: Disk average queue size (avgqu-sz) |perf_counter_en["\PhysicalDisk({#DEVNAME})\Current Disk Queue Length",60] |1m |7d |365d |0 |0 | | | | |31440 |NULL | | |0 | | | | |2 |NULL |Current average disk queue, the number of requests outstanding on the disk at the time the performance data is collected. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |31445 |0 | |10081 |{#DEVNAME}: Disk read rate |perf_counter_en["\PhysicalDisk({#DEVNAME})\Disk Reads/sec",60] |1m |7d |365d |0 |0 | |!r/s | | |31441 |NULL | | |0 | | | | |2 |NULL |Rate of read operations on the disk. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |31446 |0 | |10081 |{#DEVNAME}: Disk write rate |perf_counter_en["\PhysicalDisk({#DEVNAME})\Disk Writes/sec",60] |1m |7d |365d |0 |0 | |!w/s | | |31442 |NULL | | |0 | | | | |2 |NULL |Rate of write operations on the disk. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -8986,7 +8987,7 @@ ROW |31878 |0 |
ROW |31879 |7 | |10343 |Operating system architecture |system.sw.arch |1h |2w |0 |0 |1 | | | | |31843 |NULL | | |0 | | | | |0 |NULL |Operating system architecture of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |31880 |7 | |10343 |Operating system |system.sw.os |1h |2w |0 |0 |1 | | | | |31844 |NULL | | |0 | | | | |0 |NULL | |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |31881 |7 | |10343 |Software installed |system.sw.packages |1h |2w |0 |0 |4 | | | | |31845 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |31882 |7 | |10343 |System description |system.uname |1h |2w |0 |0 |1 | | | | |31846 |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |31882 |7 | |10343 |System description |system.uname |15m |2w |0 |0 |1 | | | | |31846 |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |31883 |7 | |10343 |System uptime |system.uptime |30s |2w |0d |0 |3 | |uptime | | |31847 |NULL | | |0 | | | | |0 |NULL |System uptime in 'N days, hh:mm:ss' format. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |31884 |7 | |10343 |Number of logged in users |system.users.num |1m |7d |365d |0 |3 | | | | |31848 |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |31885 |7 | |10343 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd] |15m |7d |0 |0 |1 | | | | |31849 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -9027,7 +9028,7 @@ ROW |31984 |7 |
ROW |31985 |7 | |10351 |System name |system.hostname |1h |2w |0 |0 |1 | | | | |31958 |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |31986 |0 | |10351 |System local time |system.localtime |1m |7d |365d |1 |3 | |unixtime| | |31959 |NULL | | |0 | | | | |0 |NULL |System local time of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |31987 |7 | |10351 |Operating system architecture |system.sw.arch |1h |2w |0 |0 |1 | | | | |31960 |NULL | | |0 | | | | |0 |NULL |Operating system architecture of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |31988 |7 | |10351 |System description |system.uname |1h |2w |0 |0 |1 | | | | |31961 |NULL | | |0 | | | | |0 |NULL |System description of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |31988 |7 | |10351 |System description |system.uname |15m |2w |0 |0 |1 | | | | |31961 |NULL | | |0 | | | | |0 |NULL |System description of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |31989 |7 | |10351 |Uptime |system.uptime |30s |2w |0d |0 |3 | |uptime | | |31962 |NULL | | |0 | | | | |0 |NULL |System uptime in 'N days, hh:mm:ss' format. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |31990 |7 | |10351 |Cache bytes |perf_counter_en["\Memory\Cache Bytes"] |1m |7d |365d |0 |3 | |B | | |31963 |NULL | | |0 | | | | |0 |NULL |Cache Bytes is the sum of the Memory\\System Cache Resident Bytes, Memory\\System Driver Resident Bytes, &eol;Memory\\System Code Resident Bytes, and Memory\\Pool Paged Resident Bytes counters. This counter displays &eol;the last observed value only; it is not an average. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |31991 |7 | |10351 |Free system page table entries |perf_counter_en["\Memory\Free System Page Table Entries"] |1m |7d |365d |0 |3 | | | | |31964 |NULL | | |0 | | | | |0 |NULL |This indicates the number of page table entries not currently in use by the system. If the number is less &eol;than 5,000, there may well be a memory leak or you running out of memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -9053,7 +9054,7 @@ ROW |32031 |7 |
ROW |32032 |7 | |10351 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out["{#IFGUID}",dropped] |3m |7d |365d |0 |3 | | | | |32018 |NULL | | |0 | | | | |2 |NULL |The number of outgoing packets dropped on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |32033 |7 | |10351 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out["{#IFGUID}",errors] |3m |7d |365d |0 |3 | | | | |32019 |NULL | | |0 | | | | |2 |NULL |The number of outgoing packets with errors on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |32034 |7 | |10351 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out["{#IFGUID}"] |3m |7d |365d |0 |3 | |bps | | |32020 |NULL | | |0 | | | | |2 |NULL |Outgoing traffic on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |32035 |7 | |10351 |{#DEVNAME}: Disk utilization |perf_counter_en["\PhysicalDisk({#DEVNAME})\% Disk Time",60] |1m |7d |365d |0 |0 | |% | | |32021 |NULL | | |0 | | | | |2 |NULL |This item is the percentage of elapsed time that the selected disk drive was busy servicing read or writes requests. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |32035 |7 | |10351 |{#DEVNAME}: Disk utilization by idle time |perf_counter_en["\PhysicalDisk({#DEVNAME})\% Idle Time",60] |1m |7d |365d |0 |0 | |% | | |32021 |NULL | | |0 | | | | |2 |NULL |This item is the percentage of elapsed time that the selected disk drive was busy servicing read or writes requests based on idle time. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |32036 |7 | |10351 |{#DEVNAME}: Disk average queue size (avgqu-sz) |perf_counter_en["\PhysicalDisk({#DEVNAME})\Current Disk Queue Length",60] |1m |7d |365d |0 |0 | | | | |32022 |NULL | | |0 | | | | |2 |NULL |Current average disk queue, the number of requests outstanding on the disk at the time the performance data is collected. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |32037 |7 | |10351 |{#DEVNAME}: Disk read rate |perf_counter_en["\PhysicalDisk({#DEVNAME})\Disk Reads/sec",60] |1m |7d |365d |0 |0 | |!r/s | | |32023 |NULL | | |0 | | | | |2 |NULL |Rate of read operations on the disk. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |32038 |7 | |10351 |{#DEVNAME}: Disk write rate |perf_counter_en["\PhysicalDisk({#DEVNAME})\Disk Writes/sec",60] |1m |7d |365d |0 |0 | |!w/s | | |32024 |NULL | | |0 | | | | |2 |NULL |Rate of write operations on the disk. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -9070,22 +9071,22 @@ ROW |33333 |7 |
ROW |33334 |7 | |10351 |{#DEVNAME}: Disk read request avg waiting time |perf_counter_en["\PhysicalDisk({#DEVNAME})\Avg. Disk sec/Read",60] |1m |7d |365d |0 |0 | |s | | |33330 |NULL | | |0 | | | | |2 |NULL |The average time for read requests issued to the device to be served. This includes the time spent by the requests in queue and the time spent servicing them. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |33335 |7 | |10351 |{#DEVNAME}: Disk write request avg waiting time |perf_counter_en["\PhysicalDisk({#DEVNAME})\Avg. Disk sec/Write",60] |1m |7d |365d |0 |0 | |s | | |33331 |NULL | | |0 | | | | |2 |NULL |The average time for write requests issued to the device to be served. This includes the time spent by the requests in queue and the time spent servicing them. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |33336 |7 | |10351 |{#DEVNAME}: Average disk write queue length |perf_counter_en["\PhysicalDisk({#DEVNAME})\Avg. Disk Write Queue Length",60] |1m |7d |365d |0 |0 | | | | |33332 |NULL | | |0 | | | | |2 |NULL |Average disk write queue, the number of requests outstanding on the disk at the time the performance data is collected. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |33340 |17 | |10378 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |33341 |20 |1.3.6.1.2.1.1.4.0 |10378 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |33342 |20 |1.3.6.1.2.1.1.1.0 |10378 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |33343 |20 |1.3.6.1.2.1.1.6.0 |10378 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |33344 |20 |1.3.6.1.2.1.1.5.0 |10378 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |33340 |17 | |10378 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |33341 |20 |1.3.6.1.2.1.1.4.0 |10378 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |33342 |20 |1.3.6.1.2.1.1.1.0 |10378 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |33343 |20 |1.3.6.1.2.1.1.6.0 |10378 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |33344 |20 |1.3.6.1.2.1.1.5.0 |10378 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |33345 |20 |1.3.6.1.2.1.1.2.0 |10378 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |33346 |20 |1.3.6.1.2.1.1.3.0 |10378 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |33347 |5 | |10378 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |33683 |17 | |10385 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |33684 |20 |1.3.6.1.2.1.1.4.0 |10385 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |33685 |20 |1.3.6.1.2.1.1.1.0 |10385 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |33686 |20 |1.3.6.1.2.1.1.6.0 |10385 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |33687 |20 |1.3.6.1.2.1.1.5.0 |10385 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |33347 |5 | |10378 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |33683 |17 | |10385 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |33684 |20 |1.3.6.1.2.1.1.4.0 |10385 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |33685 |20 |1.3.6.1.2.1.1.1.0 |10385 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |33686 |20 |1.3.6.1.2.1.1.6.0 |10385 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |33687 |20 |1.3.6.1.2.1.1.5.0 |10385 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |33688 |20 |1.3.6.1.2.1.1.2.0 |10385 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |33689 |20 |1.3.6.1.2.1.1.3.0 |10385 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |33690 |5 | |10385 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |33690 |5 | |10385 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |34318 |5 | |10084 |Zabbix server: Utilization of report writer internal processes, in % |zabbix[process,report writer,avg,busy] |1m |1w |365d |0 |0 | |% | | |34316 |NULL | | |0 | | | | |0 |NULL |Average percentage of time report writer processes have been busy in the last minute |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |34319 |5 | |10084 |Zabbix server: Utilization of report manager internal processes, in % |zabbix[process,report manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |34317 |NULL | | |0 | | | | |0 |NULL |Average percentage of time report manager processes have been busy in the last minute |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |35174 |5 | |10084 |Zabbix server: Version |zabbix[version] |1m |1w |0 |0 |1 | | | | |35173 |NULL | | |0 | | | | |0 |NULL |Version of Zabbix server. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -9245,7 +9246,7 @@ ROW |29184 |0 |
ROW |29185 |0 | |10084 |System boot time |system.boottime |15m |7d |365d |0 |3 | |unixtime| | |29148 |NULL | | |0 | | | | |0 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29186 |0 | |10084 |System local time |system.localtime |1m |7d |365d |0 |3 | |unixtime| | |29149 |NULL | | |0 | | | | |0 |1 |System local time of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29187 |0 | |10084 |System name |system.hostname |1h |2w |0 |0 |1 | | | | |29150 |NULL | | |0 | | | | |0 |1 |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
-ROW |29188 |0 | |10084 |System description |system.uname |1h |2w |0 |0 |1 | | | | |29151 |NULL | | |0 | | | | |0 |1 |The information as normally returned by 'uname -a'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
+ROW |29188 |0 | |10084 |System description |system.uname |15m |2w |0 |0 |1 | | | | |29151 |NULL | | |0 | | | | |0 |1 |The information as normally returned by 'uname -a'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29189 |0 | |10084 |Number of logged in users |system.users.num |1m |7d |365d |0 |3 | | | | |29152 |NULL | | |0 | | | | |0 |1 |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29190 |0 | |10084 |Maximum number of open file descriptors |kernel.maxfiles |1h |7d |365d |0 |3 | | | | |29153 |NULL | | |0 | | | | |0 |1 |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
ROW |29191 |0 | |10084 |Maximum number of processes |kernel.maxproc |1h |7d |365d |0 |3 | | | | |29154 |NULL | | |0 | | | | |0 |1 |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 | |
@@ -11157,8 +11158,8 @@ ROW |18438 |{22191}<10m
ROW |18439 |{22192}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 | |6e476399963a414a847c4c514055bf43|
ROW |18440 |{22193}=1 |{#SENSOR_INFO}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 | |de81ef4f2c3f4f44a745a1fa1f179784|
ROW |18441 |{22194}<0 and {22195}>0&eol;and (&eol;{22196}=6 or&eol;{22196}=7 or&eol;{22196}=11 or&eol;{22196}=62 or&eol;{22196}=69 or&eol;{22196}=117&eol;)&eol;and&eol;({22197}<>2) |Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before | |0 |1 |This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close. |NULL |0 |2 |1 |({22194}>0 and {22198}>0) or&eol;({22197}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |0 | |2dc62fe3cd624e2ba99caa9ff94273f6|
-ROW |18442 |({22199}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{22200} or&eol;{22201}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{22200}) and&eol;{22200}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |NULL |0 |2 |1 |{22199}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{22200} and&eol;{22201}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{22200}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |0 | |20e8f28ebc304ba185d475dbba51c4b8|
-ROW |18443 |{22202}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {22203}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{22204}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {22205}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |0 | |6740479821cd49c199c345dd736a11f7|
+ROW |18442 |({22199}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{22200} or&eol;{22201}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{22200}) and&eol;{22200}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |NULL |0 |2 |1 |{22199}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{22200} and&eol;{22201}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{22200}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |0 | |20e8f28ebc304ba185d475dbba51c4b8|
+ROW |18443 |{22202}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {22203}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{22204}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {22205}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |0 | |6740479821cd49c199c345dd736a11f7|
ROW |18444 |{$IFCONTROL:"{#IFNAME}"}=1 and {24767}=2 and ({24768}<>{24769}) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |NULL |0 |2 |1 |{24767}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 | |46918cfc713a4b1da7eed32cead0070b|
ROW |18445 |{22208}=1 |{#ENT_NAME}: Power supply is in critical state | |0 |3 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 | |5d2d688ad68343ff8884c11e9d233b98|
ROW |18446 |{22209}>{$TEMP.MAX.WARN:"{#SENSOR_INFO}"}&eol;or&eol;{22210}={$TEMP.STATUS.WARN} |{#SENSOR_INFO}: Temperature is above warning threshold: >{$TEMP.MAX.WARN:"{#SENSOR_INFO}"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{22211}<{$TEMP.MAX.WARN:"{#SENSOR_INFO}"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 | |352650536eef4858be1437a720712932|
@@ -11166,13 +11167,13 @@ ROW |18447 |{22212}>{$TEMP.MAX.CRIT:"{#SENSOR_INFO}"}
ROW |18448 |{22214}<{$TEMP.MIN.CRIT:"{#SENSOR_INFO}"} |{#SENSOR_INFO}: Temperature is too low: <{$TEMP.MIN.CRIT:"{#SENSOR_INFO}"} | |0 |3 | |NULL |0 |2 |1 |{22215}>{$TEMP.MIN.CRIT:"{#SENSOR_INFO}"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 | |7bfa2bd0177940f4aff8dc95867ceb44|
ROW |18449 |{22216}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({22217}-{22218})<5G or {22219}<1d) |{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%) | |0 |3 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 5G.&eol; - The disk will be full in less than 24 hours. |NULL |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |0 | |f1eb2ddb27d24cd99d8aba4485dfeeb9|
ROW |18450 |{22220}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and&eol;(({22221}-{22222})<10G or {22223}<1d) |{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%) | |0 |2 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 10G.&eol; - The disk will be full in less than 24 hours. |NULL |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |0 | |b2e084f280434a3a8291e5dc691dfd7b|
-ROW |18451 |{22224}>{$MEMORY.UTIL.MAX} |{#MEMNAME}: High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |2 |0 | |0 | |0 | |0 | |912430a103414c6eb9c8e55c45246f48|
+ROW |18451 |{22224}>{$MEMORY.UTIL.MAX} |{#MEMNAME}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |2 |0 | |0 | |0 | |0 | |912430a103414c6eb9c8e55c45246f48|
ROW |18452 |{22225}<{$MEMORY.AVAILABLE.MIN} and {22226}>0 |Lack of available memory (<{$MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2}) | |0 |3 | |NULL |0 |0 |0 | |0 | |0 |Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |0 | |3800877e8b474aa2aa83c1ecc0523db6|
ROW |18455 |{22231}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {22232}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}: High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{22233}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {22234}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |0 | |b4da7325b41647ab997cf6906a9cba23|
ROW |18458 |{22243}<{$MEMORY.AVAILABLE.MIN} and {22244}>0 |Lack of available memory (<{$MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2}) | |0 |3 | |NULL |0 |0 |0 | |0 | |0 |Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |0 | |1ba414b62eef4ca6b198f00a4cdd2bde|
ROW |18460 |{22247}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {22248}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}: High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{22249}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {22250}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |0 | |b0b3cce08e924447845859391bdf9045|
ROW |18462 |{22255}<{$MEMORY.AVAILABLE.MIN} and {22256}>0 |Lack of available memory (<{$MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2}) | |0 |3 | |NULL |0 |0 |0 | |0 | |0 |Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |0 | |f78ed17586964a46a9de0c4f183984f6|
-ROW |18463 |({22257}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{22258} or&eol;{22259}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{22258}) and&eol;{22258}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |NULL |0 |2 |1 |{22257}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{22258} and&eol;{22259}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{22258}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |0 | |11e2c8023463482da878cdad5bb7de76|
+ROW |18463 |({22257}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{22258} or&eol;{22259}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{22258}) and&eol;{22258}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |NULL |0 |2 |1 |{22257}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{22258} and&eol;{22259}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{22258}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |0 | |11e2c8023463482da878cdad5bb7de76|
ROW |18464 |{22260}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {22261}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{22262}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {22263}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |0 | |6e8269b2260e42de97aec08043a768df|
ROW |18465 |({22264}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{22265} or&eol;{22266}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{22265}) and&eol;{22265}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |NULL |0 |2 |1 |{22264}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{22265} and&eol;{22266}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{22265}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |0 | |c0e8e89730f04d92b26dd5da215894e1|
ROW |18466 |{22267}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {22268}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{22269}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {22270}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |0 | |2a59eec0032a41e48e2443507cbd173d|
@@ -12901,960 +12902,960 @@ ROW |18457 |{22239}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {22240}>{$IF.ERROR
TABLE |trigger_depends
FIELDS|triggerdepid|triggerid_down|triggerid_up|
ROW |25229 |18761 |18762 |
-ROW |35229 |17412 |17411 |
-ROW |35230 |17414 |17413 |
-ROW |35231 |17416 |17415 |
-ROW |35232 |15944 |15947 |
-ROW |35233 |15944 |15943 |
-ROW |35234 |15943 |15947 |
-ROW |35235 |16888 |15947 |
-ROW |35236 |16888 |15943 |
-ROW |35237 |15948 |15949 |
-ROW |35238 |15950 |15949 |
-ROW |35239 |17429 |17428 |
-ROW |35240 |17431 |17430 |
-ROW |35241 |17433 |17432 |
-ROW |35242 |17355 |17354 |
-ROW |35243 |17358 |17357 |
-ROW |35244 |19632 |19634 |
-ROW |35245 |16743 |16744 |
-ROW |35246 |16784 |16785 |
-ROW |35247 |16790 |16791 |
-ROW |35248 |16892 |16900 |
-ROW |35249 |16894 |16900 |
-ROW |35250 |17459 |17458 |
-ROW |35251 |17463 |17458 |
-ROW |35252 |17471 |17480 |
-ROW |35253 |17476 |17481 |
-ROW |35254 |17478 |17480 |
-ROW |35255 |17479 |17481 |
-ROW |35256 |17483 |17482 |
-ROW |35257 |17486 |17485 |
-ROW |35258 |16646 |16647 |
-ROW |35259 |19637 |16660 |
-ROW |35260 |16809 |16810 |
-ROW |35261 |19638 |16677 |
-ROW |35262 |16902 |16904 |
-ROW |35263 |16904 |16905 |
-ROW |35264 |16909 |16906 |
-ROW |35265 |16910 |16912 |
-ROW |35266 |16912 |16913 |
-ROW |35267 |16917 |16914 |
-ROW |35268 |17962 |17963 |
-ROW |35269 |17962 |17958 |
-ROW |35270 |16752 |16753 |
-ROW |35271 |15955 |15957 |
-ROW |35272 |15955 |15954 |
-ROW |35273 |15954 |15957 |
-ROW |35274 |15956 |15957 |
-ROW |35275 |15956 |15954 |
-ROW |35276 |16678 |15957 |
-ROW |35277 |16678 |15954 |
-ROW |35278 |15961 |15960 |
-ROW |35279 |15962 |15960 |
-ROW |35280 |16679 |15960 |
-ROW |35281 |17090 |17096 |
-ROW |35282 |17093 |17096 |
-ROW |35283 |17101 |17098 |
-ROW |35284 |16257 |16255 |
-ROW |35285 |16257 |16256 |
-ROW |35286 |16256 |16255 |
-ROW |35287 |16251 |16255 |
-ROW |35288 |16251 |16256 |
-ROW |35289 |16443 |16255 |
-ROW |35290 |16443 |16256 |
-ROW |35291 |16270 |16269 |
-ROW |35292 |16448 |16269 |
-ROW |35293 |16265 |16269 |
-ROW |35294 |17503 |17505 |
-ROW |35295 |17512 |17511 |
-ROW |35296 |17513 |17505 |
-ROW |35302 |17516 |17518 |
-ROW |35303 |17517 |17516 |
-ROW |35304 |17517 |17518 |
-ROW |35305 |17517 |17519 |
-ROW |35306 |17519 |17518 |
-ROW |35307 |18918 |18917 |
-ROW |35308 |17973 |17965 |
-ROW |35309 |17974 |17966 |
-ROW |35310 |17141 |17151 |
-ROW |35311 |17142 |17141 |
-ROW |35312 |17142 |17151 |
-ROW |35313 |17143 |17151 |
-ROW |35314 |17144 |17143 |
-ROW |35315 |17144 |17151 |
-ROW |35316 |17146 |17145 |
-ROW |35317 |17147 |17151 |
-ROW |35318 |17148 |17147 |
-ROW |35319 |17148 |17151 |
-ROW |35320 |17150 |17149 |
-ROW |35321 |17152 |17168 |
-ROW |35322 |17153 |17152 |
-ROW |35323 |17153 |17168 |
-ROW |35324 |17154 |17168 |
-ROW |35325 |17155 |17154 |
-ROW |35326 |17155 |17168 |
-ROW |35327 |17156 |17168 |
-ROW |35328 |17157 |17156 |
-ROW |35329 |17157 |17168 |
-ROW |35330 |17158 |17168 |
-ROW |35331 |17159 |17158 |
-ROW |35332 |17159 |17168 |
-ROW |35333 |17160 |17168 |
-ROW |35334 |17161 |17160 |
-ROW |35335 |17161 |17168 |
-ROW |35336 |17163 |17162 |
-ROW |35337 |17164 |17168 |
-ROW |35338 |17165 |17164 |
-ROW |35339 |17165 |17168 |
-ROW |35340 |17166 |17168 |
-ROW |35341 |17167 |17166 |
-ROW |35342 |17167 |17168 |
-ROW |35343 |17169 |17168 |
-ROW |35344 |17170 |17168 |
-ROW |35345 |17170 |17169 |
-ROW |35346 |17171 |17168 |
-ROW |35347 |17172 |17168 |
-ROW |35348 |17172 |17171 |
-ROW |35349 |17540 |17541 |
-ROW |35350 |16833 |16920 |
-ROW |35351 |16920 |16921 |
-ROW |35352 |19597 |19596 |
-ROW |35353 |19599 |19598 |
-ROW |35354 |19603 |19602 |
-ROW |35355 |19604 |19602 |
-ROW |35356 |19619 |19620 |
-ROW |35357 |17978 |17977 |
-ROW |35358 |17980 |17979 |
-ROW |35359 |17984 |17983 |
-ROW |35360 |17985 |17983 |
-ROW |35361 |18000 |18001 |
-ROW |35362 |18225 |18224 |
-ROW |35363 |18237 |18236 |
-ROW |35364 |16929 |16928 |
-ROW |35365 |16940 |17084 |
-ROW |35366 |18537 |18536 |
-ROW |35367 |18539 |18538 |
-ROW |35368 |18541 |18540 |
-ROW |35369 |16719 |16721 |
-ROW |35370 |16975 |16723 |
-ROW |35371 |16729 |16728 |
-ROW |35372 |16730 |16728 |
-ROW |35373 |16756 |16758 |
-ROW |35374 |16979 |16759 |
-ROW |35375 |16765 |16764 |
-ROW |35376 |16766 |16764 |
-ROW |35377 |16734 |16736 |
-ROW |35378 |16983 |16732 |
-ROW |35379 |16741 |16740 |
-ROW |35380 |16742 |16740 |
-ROW |35381 |17192 |17191 |
-ROW |35382 |17194 |17195 |
-ROW |35383 |17199 |17198 |
-ROW |35384 |17546 |17545 |
-ROW |35385 |17547 |17548 |
-ROW |35386 |16997 |16984 |
-ROW |35387 |17002 |17003 |
-ROW |35388 |17006 |17005 |
-ROW |35389 |17011 |17010 |
-ROW |35390 |17550 |17549 |
-ROW |35391 |17551 |17552 |
-ROW |35392 |17391 |17396 |
-ROW |35393 |17395 |17396 |
-ROW |35394 |16683 |16687 |
-ROW |35395 |14252 |14251 |
-ROW |35396 |14294 |14293 |
-ROW |35397 |14312 |14311 |
-ROW |35398 |14328 |14327 |
-ROW |35399 |14348 |14347 |
-ROW |35400 |14357 |14356 |
-ROW |35401 |14390 |14389 |
-ROW |35402 |14404 |14403 |
-ROW |35403 |14452 |14451 |
-ROW |35404 |14469 |14468 |
-ROW |35405 |14487 |14486 |
-ROW |35406 |14506 |14505 |
-ROW |35407 |14535 |14534 |
-ROW |35408 |14545 |14544 |
-ROW |35409 |14583 |14582 |
-ROW |35410 |14599 |14598 |
-ROW |35411 |14616 |14615 |
-ROW |35412 |14653 |14652 |
-ROW |35413 |14674 |14673 |
-ROW |35414 |14692 |14691 |
-ROW |35415 |14705 |14704 |
-ROW |35416 |14718 |14717 |
-ROW |35417 |14907 |14906 |
-ROW |35418 |15221 |15220 |
-ROW |35419 |15702 |15701 |
-ROW |35420 |15724 |15723 |
-ROW |35421 |15756 |15755 |
-ROW |35422 |15820 |15819 |
-ROW |35423 |15841 |15840 |
-ROW |35424 |15991 |15990 |
-ROW |35425 |16018 |16017 |
-ROW |35426 |16454 |16453 |
-ROW |35427 |17924 |17923 |
-ROW |35428 |18178 |18177 |
-ROW |35429 |14253 |14252 |
-ROW |35430 |14295 |14294 |
-ROW |35431 |14313 |14312 |
-ROW |35432 |14329 |14328 |
-ROW |35433 |14349 |14348 |
-ROW |35434 |14358 |14357 |
-ROW |35435 |14391 |14390 |
-ROW |35436 |14405 |14404 |
-ROW |35437 |14453 |14452 |
-ROW |35438 |14470 |14469 |
-ROW |35439 |14488 |14487 |
-ROW |35440 |14507 |14506 |
-ROW |35441 |14536 |14535 |
-ROW |35442 |14546 |14545 |
-ROW |35443 |14584 |14583 |
-ROW |35444 |14600 |14599 |
-ROW |35445 |14617 |14616 |
-ROW |35446 |14654 |14653 |
-ROW |35447 |14675 |14674 |
-ROW |35448 |14693 |14692 |
-ROW |35449 |14706 |14705 |
-ROW |35450 |14719 |14718 |
-ROW |35451 |14908 |14907 |
-ROW |35452 |15222 |15221 |
-ROW |35453 |15703 |15702 |
-ROW |35454 |15725 |15724 |
-ROW |35455 |15757 |15756 |
-ROW |35456 |15821 |15820 |
-ROW |35457 |15842 |15841 |
-ROW |35458 |15992 |15991 |
-ROW |35459 |16019 |16018 |
-ROW |35460 |16455 |16454 |
-ROW |35461 |17925 |17924 |
-ROW |35462 |18179 |18178 |
-ROW |35463 |14253 |14251 |
-ROW |35464 |14295 |14293 |
-ROW |35465 |14313 |14311 |
-ROW |35466 |14329 |14327 |
-ROW |35467 |14349 |14347 |
-ROW |35468 |14358 |14356 |
-ROW |35469 |14391 |14389 |
-ROW |35470 |14405 |14403 |
-ROW |35471 |14453 |14451 |
-ROW |35472 |14470 |14468 |
-ROW |35473 |14488 |14486 |
-ROW |35474 |14507 |14505 |
-ROW |35475 |14536 |14534 |
-ROW |35476 |14546 |14544 |
-ROW |35477 |14584 |14582 |
-ROW |35478 |14600 |14598 |
-ROW |35479 |14617 |14615 |
-ROW |35480 |14654 |14652 |
-ROW |35481 |14675 |14673 |
-ROW |35482 |14693 |14691 |
-ROW |35483 |14706 |14704 |
-ROW |35484 |14719 |14717 |
-ROW |35485 |14908 |14906 |
-ROW |35486 |15222 |15220 |
-ROW |35487 |15703 |15701 |
-ROW |35488 |15725 |15723 |
-ROW |35489 |15757 |15755 |
-ROW |35490 |15821 |15819 |
-ROW |35491 |15842 |15840 |
-ROW |35492 |15992 |15990 |
-ROW |35493 |16019 |16017 |
-ROW |35494 |16455 |16453 |
-ROW |35495 |17925 |17923 |
-ROW |35496 |18179 |18177 |
-ROW |35497 |16287 |16289 |
-ROW |35498 |16279 |16285 |
-ROW |35499 |16290 |16348 |
-ROW |35500 |16291 |16349 |
-ROW |35501 |16292 |16350 |
-ROW |35502 |16293 |16351 |
-ROW |35503 |16294 |16352 |
-ROW |35504 |16295 |16353 |
-ROW |35505 |16296 |16354 |
-ROW |35506 |16297 |16355 |
-ROW |35507 |16298 |16356 |
-ROW |35508 |16299 |16357 |
-ROW |35509 |16300 |16358 |
-ROW |35510 |16301 |16359 |
-ROW |35511 |16302 |16360 |
-ROW |35512 |16303 |16361 |
-ROW |35513 |16304 |16362 |
-ROW |35514 |16305 |16363 |
-ROW |35515 |16306 |16364 |
-ROW |35516 |16307 |16365 |
-ROW |35517 |16308 |16366 |
-ROW |35518 |16309 |16367 |
-ROW |35519 |16311 |16369 |
-ROW |35520 |16312 |16370 |
-ROW |35521 |16313 |16371 |
-ROW |35522 |16314 |16372 |
-ROW |35523 |16315 |16373 |
-ROW |35524 |16316 |16374 |
-ROW |35525 |16317 |16375 |
-ROW |35526 |16318 |16376 |
-ROW |35527 |16457 |16458 |
-ROW |35528 |17927 |17928 |
-ROW |35529 |18181 |18182 |
-ROW |35530 |16289 |14293 |
-ROW |35531 |16285 |14717 |
-ROW |35532 |16348 |14311 |
-ROW |35533 |16349 |14327 |
-ROW |35534 |16350 |14347 |
-ROW |35535 |16351 |14356 |
-ROW |35536 |16352 |14389 |
-ROW |35537 |16353 |14403 |
-ROW |35538 |16354 |14451 |
-ROW |35539 |16355 |14468 |
-ROW |35540 |16356 |14486 |
-ROW |35541 |16357 |14505 |
-ROW |35542 |16358 |14534 |
-ROW |35543 |16359 |14544 |
-ROW |35544 |16360 |14582 |
-ROW |35545 |16361 |14598 |
-ROW |35546 |16362 |14615 |
-ROW |35547 |16363 |14652 |
-ROW |35548 |16364 |14673 |
-ROW |35549 |16365 |14691 |
-ROW |35550 |16366 |14704 |
-ROW |35551 |16367 |14906 |
-ROW |35552 |16369 |15220 |
-ROW |35553 |16370 |15701 |
-ROW |35554 |16371 |15723 |
-ROW |35555 |16372 |15755 |
-ROW |35556 |16373 |15819 |
-ROW |35557 |16374 |15840 |
-ROW |35558 |16375 |15990 |
-ROW |35559 |16376 |16017 |
-ROW |35560 |16458 |16453 |
-ROW |35561 |17928 |17923 |
-ROW |35562 |18182 |18177 |
-ROW |35563 |16631 |16630 |
-ROW |35564 |16640 |16636 |
-ROW |35565 |16642 |16638 |
-ROW |35566 |16643 |16639 |
-ROW |35567 |15695 |16863 |
-ROW |35568 |18242 |16863 |
-ROW |35569 |18243 |16863 |
-ROW |35570 |15694 |16868 |
-ROW |35571 |15696 |16864 |
-ROW |35572 |15697 |16865 |
-ROW |35573 |18244 |16864 |
-ROW |35574 |18245 |16865 |
-ROW |35575 |18246 |16868 |
-ROW |35576 |18247 |16864 |
-ROW |35577 |18248 |16865 |
-ROW |35578 |18249 |16868 |
-ROW |35579 |15671 |16841 |
-ROW |35580 |18250 |16841 |
-ROW |35581 |18251 |16841 |
-ROW |35582 |15672 |16842 |
-ROW |35583 |15673 |16843 |
-ROW |35584 |15674 |16844 |
-ROW |35585 |15675 |16845 |
-ROW |35586 |15676 |16846 |
-ROW |35587 |15677 |16847 |
-ROW |35588 |15678 |16848 |
-ROW |35589 |15679 |16849 |
-ROW |35590 |15680 |16850 |
-ROW |35591 |15681 |16851 |
-ROW |35592 |15682 |16852 |
-ROW |35593 |15683 |16853 |
-ROW |35594 |15684 |16854 |
-ROW |35595 |15685 |16855 |
-ROW |35596 |15686 |16856 |
-ROW |35597 |15687 |16857 |
-ROW |35598 |15689 |16858 |
-ROW |35599 |15691 |16860 |
-ROW |35600 |15708 |16861 |
-ROW |35601 |15997 |16862 |
-ROW |35602 |18252 |16842 |
-ROW |35603 |18253 |16843 |
-ROW |35604 |18254 |16844 |
-ROW |35605 |18255 |16845 |
-ROW |35606 |18256 |16846 |
-ROW |35607 |18257 |16847 |
-ROW |35608 |18258 |16848 |
-ROW |35609 |18259 |16849 |
-ROW |35610 |18260 |16850 |
-ROW |35611 |18261 |16851 |
-ROW |35612 |18262 |16852 |
-ROW |35613 |18263 |16853 |
-ROW |35614 |18264 |16854 |
-ROW |35615 |18265 |16855 |
-ROW |35616 |18266 |16856 |
-ROW |35617 |18267 |16857 |
-ROW |35618 |18268 |16858 |
-ROW |35619 |18270 |16860 |
-ROW |35620 |18271 |16861 |
-ROW |35621 |18272 |16862 |
-ROW |35622 |18273 |16842 |
-ROW |35623 |18274 |16843 |
-ROW |35624 |18275 |16844 |
-ROW |35625 |18276 |16845 |
-ROW |35626 |18277 |16846 |
-ROW |35627 |18278 |16847 |
-ROW |35628 |18279 |16848 |
-ROW |35629 |18280 |16849 |
-ROW |35630 |18281 |16850 |
-ROW |35631 |18282 |16851 |
-ROW |35632 |18283 |16852 |
-ROW |35633 |18284 |16853 |
-ROW |35634 |18285 |16854 |
-ROW |35635 |18286 |16855 |
-ROW |35636 |18287 |16856 |
-ROW |35637 |18288 |16857 |
-ROW |35638 |18289 |16858 |
-ROW |35639 |18291 |16860 |
-ROW |35640 |18292 |16861 |
-ROW |35641 |18293 |16862 |
-ROW |35642 |15698 |16866 |
-ROW |35643 |18294 |16866 |
-ROW |35644 |18295 |16866 |
-ROW |35645 |16028 |16867 |
-ROW |35646 |18296 |16867 |
-ROW |35647 |18297 |16867 |
-ROW |35648 |18100 |18099 |
-ROW |35649 |18106 |18105 |
-ROW |35650 |14318 |14319 |
-ROW |35651 |17554 |15717 |
-ROW |35652 |17555 |15717 |
-ROW |35653 |17555 |17554 |
-ROW |35654 |17556 |15717 |
-ROW |35655 |17557 |15717 |
-ROW |35656 |17557 |17556 |
-ROW |35657 |17559 |17558 |
-ROW |35658 |17561 |17560 |
-ROW |35659 |17563 |17562 |
-ROW |35660 |17565 |17564 |
-ROW |35661 |15721 |15720 |
-ROW |35662 |15394 |15393 |
-ROW |35663 |15392 |15391 |
-ROW |35664 |17322 |14339 |
-ROW |35665 |15382 |15381 |
-ROW |35666 |15380 |15379 |
-ROW |35667 |16504 |16505 |
-ROW |35668 |14372 |14373 |
-ROW |35669 |15386 |15385 |
-ROW |35670 |15384 |15383 |
-ROW |35671 |14380 |14381 |
-ROW |35672 |18299 |18298 |
-ROW |35673 |18300 |18299 |
-ROW |35674 |18300 |18298 |
-ROW |35675 |18303 |18302 |
-ROW |35676 |18309 |18308 |
-ROW |35677 |18311 |18316 |
-ROW |35678 |18312 |18316 |
-ROW |35679 |18313 |18316 |
-ROW |35680 |18314 |18316 |
-ROW |35681 |18315 |18316 |
-ROW |35682 |18319 |18318 |
-ROW |35683 |18321 |18320 |
-ROW |35684 |18323 |18322 |
-ROW |35685 |18326 |18325 |
-ROW |35686 |18327 |18326 |
-ROW |35687 |18327 |18325 |
-ROW |35688 |18330 |18329 |
-ROW |35689 |18336 |18335 |
-ROW |35690 |18338 |18343 |
-ROW |35691 |18339 |18343 |
-ROW |35692 |18340 |18343 |
-ROW |35693 |18341 |18343 |
-ROW |35694 |18342 |18343 |
-ROW |35695 |18346 |18345 |
-ROW |35696 |18348 |18347 |
-ROW |35697 |18350 |18349 |
-ROW |35698 |18353 |18352 |
-ROW |35699 |18354 |18353 |
-ROW |35700 |18354 |18352 |
-ROW |35701 |18357 |18356 |
-ROW |35702 |18363 |18362 |
-ROW |35703 |18365 |18370 |
-ROW |35704 |18366 |18370 |
-ROW |35705 |18367 |18370 |
-ROW |35706 |18368 |18370 |
-ROW |35707 |18369 |18370 |
-ROW |35708 |18373 |18372 |
-ROW |35709 |18375 |18374 |
-ROW |35710 |18377 |18376 |
-ROW |35711 |18380 |18379 |
-ROW |35712 |18381 |18380 |
-ROW |35713 |18381 |18379 |
-ROW |35714 |18384 |18383 |
-ROW |35715 |18390 |18389 |
-ROW |35716 |18392 |18397 |
-ROW |35717 |18393 |18397 |
-ROW |35718 |18394 |18397 |
-ROW |35719 |18395 |18397 |
-ROW |35720 |18396 |18397 |
-ROW |35721 |18400 |18399 |
-ROW |35722 |18402 |18401 |
-ROW |35723 |18404 |18403 |
-ROW |35724 |18407 |18406 |
-ROW |35725 |18408 |18407 |
-ROW |35726 |18408 |18406 |
-ROW |35727 |18411 |18410 |
-ROW |35728 |18417 |18416 |
-ROW |35729 |18419 |18424 |
-ROW |35730 |18420 |18424 |
-ROW |35731 |18421 |18424 |
-ROW |35732 |18422 |18424 |
-ROW |35733 |18423 |18424 |
-ROW |35734 |18427 |18426 |
-ROW |35735 |18429 |18428 |
-ROW |35736 |18431 |18430 |
-ROW |35737 |15347 |15346 |
-ROW |35738 |15345 |15344 |
-ROW |35739 |17567 |17566 |
-ROW |35740 |15363 |15360 |
-ROW |35741 |15364 |15361 |
-ROW |35742 |15365 |15362 |
-ROW |35743 |15357 |15354 |
-ROW |35744 |15358 |15355 |
-ROW |35745 |15359 |15356 |
-ROW |35746 |17571 |17568 |
-ROW |35747 |17572 |17569 |
-ROW |35748 |17573 |17570 |
-ROW |35749 |15334 |15333 |
-ROW |35750 |15332 |15331 |
-ROW |35751 |14460 |14461 |
-ROW |35752 |14476 |14477 |
-ROW |35753 |14495 |14496 |
-ROW |35754 |14511 |17574 |
-ROW |35755 |19660 |19659 |
-ROW |35756 |19661 |19662 |
-ROW |35757 |14551 |14552 |
-ROW |35758 |15374 |15373 |
-ROW |35759 |15376 |15375 |
-ROW |35760 |14914 |14915 |
-ROW |35761 |14589 |14590 |
-ROW |35762 |15338 |15337 |
-ROW |35763 |17333 |17332 |
-ROW |35764 |14624 |14625 |
-ROW |35765 |18434 |18433 |
-ROW |35766 |18435 |18434 |
-ROW |35767 |18435 |18433 |
-ROW |35768 |18438 |18439 |
-ROW |35769 |18439 |18433 |
-ROW |35770 |18441 |18444 |
-ROW |35771 |18442 |18444 |
-ROW |35772 |18443 |18444 |
-ROW |35773 |18446 |18447 |
-ROW |35774 |18450 |18449 |
-ROW |35775 |14664 |14665 |
-ROW |35776 |17085 |17086 |
-ROW |35777 |16547 |16546 |
-ROW |35778 |17576 |17575 |
-ROW |35779 |17578 |17577 |
-ROW |35780 |17628 |17626 |
-ROW |35781 |17629 |17627 |
-ROW |35782 |17632 |17630 |
-ROW |35783 |17633 |17631 |
-ROW |35784 |17635 |17634 |
-ROW |35785 |17637 |17636 |
-ROW |35786 |17686 |17684 |
-ROW |35787 |17687 |17685 |
-ROW |35788 |17690 |17688 |
-ROW |35789 |17691 |17689 |
-ROW |35790 |17693 |17692 |
-ROW |35791 |17695 |17694 |
-ROW |35792 |17730 |17728 |
-ROW |35793 |17731 |17729 |
-ROW |35794 |17734 |17732 |
-ROW |35795 |17735 |17733 |
-ROW |35796 |17737 |17736 |
-ROW |35797 |17754 |17752 |
-ROW |35798 |17755 |17753 |
-ROW |35799 |17757 |17756 |
-ROW |35800 |17819 |17817 |
-ROW |35801 |17820 |17818 |
-ROW |35802 |17823 |17821 |
-ROW |35803 |17824 |17822 |
-ROW |35804 |17826 |17825 |
-ROW |35805 |17860 |17858 |
-ROW |35806 |17861 |17859 |
-ROW |35807 |17864 |17862 |
-ROW |35808 |17865 |17863 |
-ROW |35809 |17899 |17897 |
-ROW |35810 |17900 |17898 |
-ROW |35811 |17903 |17901 |
-ROW |35812 |17904 |17902 |
-ROW |35813 |17906 |17905 |
-ROW |35814 |17908 |17907 |
-ROW |35815 |17910 |17909 |
-ROW |35816 |16551 |16552 |
-ROW |35817 |16031 |16563 |
-ROW |35818 |16045 |16564 |
-ROW |35819 |16046 |16565 |
-ROW |35820 |16039 |16040 |
-ROW |35821 |16061 |16063 |
-ROW |35822 |16062 |16064 |
-ROW |35823 |16042 |16579 |
-ROW |35824 |16067 |16580 |
-ROW |35825 |16068 |16581 |
-ROW |35826 |16041 |16042 |
-ROW |35827 |16065 |16067 |
-ROW |35828 |16066 |16068 |
-ROW |35829 |16041 |16579 |
-ROW |35830 |16065 |16580 |
-ROW |35831 |16066 |16581 |
-ROW |35832 |18132 |18452 |
-ROW |35833 |18135 |18453 |
-ROW |35834 |18138 |18454 |
-ROW |35835 |18130 |18132 |
-ROW |35836 |18133 |18135 |
-ROW |35837 |18136 |18138 |
-ROW |35838 |18130 |18452 |
-ROW |35839 |18133 |18453 |
-ROW |35840 |18136 |18454 |
-ROW |35841 |16070 |16069 |
-ROW |35842 |16072 |16071 |
-ROW |35843 |16076 |17024 |
-ROW |35844 |18455 |17024 |
-ROW |35845 |16079 |16077 |
-ROW |35846 |16080 |16078 |
-ROW |35847 |16083 |16081 |
-ROW |35848 |16084 |16082 |
-ROW |35849 |16091 |17026 |
-ROW |35850 |16092 |17028 |
-ROW |35851 |18456 |17026 |
-ROW |35852 |18457 |17028 |
-ROW |35853 |17244 |17243 |
-ROW |35854 |17257 |17256 |
-ROW |35855 |17246 |17240 |
-ROW |35856 |17259 |17253 |
-ROW |35857 |17249 |17247 |
-ROW |35858 |17262 |17260 |
-ROW |35859 |17251 |17249 |
-ROW |35860 |17264 |17262 |
-ROW |35861 |17251 |17247 |
-ROW |35862 |17264 |17260 |
-ROW |35863 |18144 |18458 |
-ROW |35864 |18147 |18459 |
-ROW |35865 |18142 |18144 |
-ROW |35866 |18145 |18147 |
-ROW |35867 |18142 |18458 |
-ROW |35868 |18145 |18459 |
-ROW |35869 |17268 |17267 |
-ROW |35870 |17270 |17269 |
-ROW |35871 |17271 |17273 |
-ROW |35872 |18460 |17273 |
-ROW |35873 |17276 |17275 |
-ROW |35874 |17278 |17277 |
-ROW |35875 |17279 |17281 |
-ROW |35876 |18461 |17281 |
-ROW |35877 |16141 |16142 |
-ROW |35878 |16146 |16573 |
-ROW |35879 |16143 |16584 |
-ROW |35880 |18152 |18462 |
-ROW |35881 |18150 |18152 |
-ROW |35882 |18150 |18462 |
-ROW |35883 |16152 |16883 |
-ROW |35884 |16153 |16883 |
-ROW |35885 |18463 |16883 |
-ROW |35886 |18464 |16883 |
-ROW |35887 |16156 |16155 |
-ROW |35888 |16158 |16157 |
-ROW |35889 |18157 |18156 |
-ROW |35890 |18160 |18159 |
-ROW |35891 |18155 |18157 |
-ROW |35892 |18158 |18160 |
-ROW |35893 |18155 |18156 |
-ROW |35894 |18158 |18159 |
-ROW |35895 |16009 |16008 |
-ROW |35896 |16011 |16010 |
-ROW |35897 |16014 |16013 |
-ROW |35898 |16016 |16015 |
-ROW |35899 |16161 |16160 |
-ROW |35900 |16172 |16171 |
-ROW |35901 |16162 |16161 |
-ROW |35902 |16173 |16172 |
-ROW |35903 |16162 |16160 |
-ROW |35904 |16173 |16171 |
-ROW |35905 |16166 |18162 |
-ROW |35906 |16177 |18164 |
-ROW |35907 |16167 |18162 |
-ROW |35908 |16178 |18164 |
-ROW |35909 |17035 |16160 |
-ROW |35910 |17037 |16171 |
-ROW |35911 |18161 |18162 |
-ROW |35912 |18163 |18164 |
-ROW |35913 |16183 |16182 |
-ROW |35914 |17911 |17042 |
-ROW |35915 |18465 |17042 |
-ROW |35916 |18466 |17042 |
-ROW |35917 |17043 |17912 |
-ROW |35918 |17043 |17913 |
-ROW |35919 |16190 |16189 |
-ROW |35920 |17914 |17047 |
-ROW |35921 |18467 |17047 |
-ROW |35922 |18468 |17047 |
-ROW |35923 |17048 |17915 |
-ROW |35924 |17048 |17916 |
-ROW |35925 |17285 |17287 |
-ROW |35926 |17296 |17298 |
-ROW |35927 |17286 |17285 |
-ROW |35928 |17297 |17296 |
-ROW |35929 |17286 |17287 |
-ROW |35930 |17297 |17298 |
-ROW |35931 |17291 |18170 |
-ROW |35932 |17302 |18172 |
-ROW |35933 |17292 |18170 |
-ROW |35934 |17303 |18172 |
-ROW |35935 |17283 |17287 |
-ROW |35936 |17294 |17298 |
-ROW |35937 |18169 |18170 |
-ROW |35938 |18171 |18172 |
-ROW |35939 |17306 |17305 |
-ROW |35940 |17917 |17310 |
-ROW |35941 |18469 |17310 |
-ROW |35942 |18470 |17310 |
-ROW |35943 |17311 |17918 |
-ROW |35944 |17311 |17919 |
-ROW |35945 |17314 |17313 |
-ROW |35946 |17920 |17318 |
-ROW |35947 |18471 |17318 |
-ROW |35948 |18472 |17318 |
-ROW |35949 |17319 |17921 |
-ROW |35950 |17319 |17922 |
-ROW |35951 |18596 |18597 |
-ROW |35952 |18629 |18630 |
-ROW |35953 |18662 |18663 |
-ROW |35954 |18695 |18696 |
-ROW |35955 |18728 |18729 |
-ROW |35956 |18947 |18948 |
-ROW |35957 |18794 |18795 |
-ROW |35958 |18495 |18496 |
-ROW |35959 |18831 |18832 |
-ROW |35960 |18864 |18865 |
-ROW |35961 |18897 |18898 |
-ROW |35962 |16772 |16773 |
-ROW |35963 |16771 |16772 |
-ROW |35964 |16771 |16773 |
-ROW |35965 |16769 |16770 |
-ROW |35966 |16768 |16769 |
-ROW |35967 |16768 |16770 |
-ROW |35968 |19173 |19174 |
-ROW |35969 |19176 |19175 |
-ROW |35970 |19178 |19177 |
-ROW |35971 |19179 |19177 |
-ROW |35972 |19179 |19178 |
-ROW |35973 |19181 |19180 |
-ROW |35974 |19182 |19183 |
-ROW |35975 |19185 |19186 |
-ROW |35976 |19188 |19187 |
-ROW |35977 |19190 |19189 |
-ROW |35978 |19192 |19193 |
-ROW |35979 |19192 |19195 |
-ROW |35980 |19192 |19191 |
-ROW |35981 |19192 |19197 |
-ROW |35982 |19194 |19193 |
-ROW |35983 |19194 |19195 |
-ROW |35984 |19194 |19191 |
-ROW |35985 |19194 |19197 |
-ROW |35986 |19196 |19193 |
-ROW |35987 |19196 |19195 |
-ROW |35988 |19196 |19191 |
-ROW |35989 |19196 |19197 |
-ROW |35990 |19198 |19193 |
-ROW |35991 |19198 |19195 |
-ROW |35992 |19198 |19191 |
-ROW |35993 |19198 |19197 |
-ROW |35994 |19201 |19200 |
-ROW |35995 |16488 |16487 |
-ROW |35996 |16485 |16484 |
-ROW |35997 |16486 |16484 |
-ROW |35998 |16486 |16485 |
-ROW |35999 |16480 |16479 |
-ROW |36000 |16482 |16481 |
-ROW |36001 |16475 |16474 |
-ROW |36002 |16471 |16472 |
-ROW |36003 |16468 |16469 |
-ROW |36004 |16459 |16460 |
-ROW |36005 |16462 |16463 |
-ROW |36006 |16465 |16466 |
-ROW |36007 |16477 |16476 |
-ROW |36008 |19393 |19392 |
-ROW |36009 |19396 |19395 |
-ROW |36010 |19398 |19397 |
-ROW |36011 |19400 |19399 |
-ROW |36012 |19402 |19401 |
-ROW |36013 |19406 |19405 |
-ROW |36014 |19408 |19407 |
-ROW |36015 |19410 |19409 |
-ROW |36016 |19412 |19411 |
-ROW |36017 |19418 |19417 |
-ROW |36018 |19423 |19422 |
-ROW |36019 |19424 |19422 |
-ROW |36020 |19424 |19423 |
-ROW |36021 |19425 |19426 |
-ROW |36022 |19427 |19425 |
-ROW |36023 |19427 |19426 |
-ROW |36024 |19429 |19428 |
-ROW |36025 |19431 |19432 |
-ROW |36026 |19433 |19432 |
-ROW |36027 |19435 |19434 |
-ROW |36028 |19437 |19436 |
-ROW |36029 |19438 |19436 |
-ROW |36030 |19438 |19437 |
-ROW |36031 |19440 |19439 |
-ROW |36032 |19444 |19443 |
-ROW |36033 |19447 |19446 |
-ROW |36034 |19449 |19448 |
-ROW |36035 |19451 |19450 |
-ROW |36036 |19453 |19452 |
-ROW |36037 |19457 |19456 |
-ROW |36038 |19459 |19458 |
-ROW |36039 |19461 |19460 |
-ROW |36040 |19463 |19462 |
-ROW |36041 |19469 |19468 |
-ROW |36042 |19474 |19473 |
-ROW |36043 |19475 |19473 |
-ROW |36044 |19475 |19474 |
-ROW |36045 |19476 |19477 |
-ROW |36046 |19478 |19476 |
-ROW |36047 |19478 |19477 |
-ROW |36048 |19480 |19479 |
-ROW |36049 |19482 |19483 |
-ROW |36050 |19484 |19483 |
-ROW |36051 |19486 |19485 |
-ROW |36052 |19488 |19487 |
-ROW |36053 |19489 |19487 |
-ROW |36054 |19489 |19488 |
-ROW |36055 |19491 |19490 |
-ROW |36056 |19495 |19494 |
-ROW |36057 |19498 |19497 |
-ROW |36058 |19500 |19499 |
-ROW |36059 |19502 |19501 |
-ROW |36060 |19504 |19503 |
-ROW |36061 |19508 |19507 |
-ROW |36062 |19510 |19509 |
-ROW |36063 |19512 |19511 |
-ROW |36064 |19514 |19513 |
-ROW |36065 |19520 |19519 |
-ROW |36066 |19525 |19524 |
-ROW |36067 |19526 |19524 |
-ROW |36068 |19526 |19525 |
-ROW |36069 |19527 |19528 |
-ROW |36070 |19529 |19527 |
-ROW |36071 |19529 |19528 |
-ROW |36072 |19531 |19530 |
-ROW |36073 |19533 |19534 |
-ROW |36074 |19535 |19534 |
-ROW |36075 |19537 |19536 |
-ROW |36076 |19539 |19538 |
-ROW |36077 |19540 |19538 |
-ROW |36078 |19540 |19539 |
-ROW |36079 |19542 |19541 |
-ROW |36080 |19546 |19545 |
-ROW |36081 |19549 |19548 |
-ROW |36082 |19551 |19550 |
-ROW |36083 |19553 |19552 |
-ROW |36084 |19555 |19554 |
-ROW |36085 |19559 |19558 |
-ROW |36086 |19561 |19560 |
-ROW |36087 |19563 |19562 |
-ROW |36088 |19565 |19564 |
-ROW |36089 |19571 |19570 |
-ROW |36090 |19576 |19575 |
-ROW |36091 |19577 |19575 |
-ROW |36092 |19577 |19576 |
-ROW |36093 |19578 |19579 |
-ROW |36094 |19580 |19578 |
-ROW |36095 |19580 |19579 |
-ROW |36096 |19582 |19581 |
-ROW |36097 |19584 |19585 |
-ROW |36098 |19586 |19585 |
-ROW |36099 |19588 |19587 |
-ROW |36100 |19590 |19589 |
-ROW |36101 |19591 |19589 |
-ROW |36102 |19591 |19590 |
-ROW |36103 |19593 |19592 |
-ROW |36104 |15729 |15728 |
-ROW |36105 |15730 |15728 |
-ROW |36106 |15730 |15729 |
-ROW |36107 |15752 |15754 |
-ROW |36108 |15753 |15754 |
-ROW |36109 |15753 |15752 |
-ROW |36110 |15742 |15741 |
-ROW |36111 |15750 |15749 |
-ROW |36112 |15751 |15750 |
-ROW |36113 |15751 |15749 |
-ROW |36114 |15746 |15743 |
-ROW |36115 |15744 |15743 |
-ROW |36116 |15740 |15739 |
-ROW |36117 |17946 |17945 |
-ROW |36118 |17948 |17947 |
-ROW |36119 |15748 |15747 |
-ROW |36120 |19206 |19205 |
-ROW |36121 |19210 |19209 |
-ROW |36122 |19212 |19211 |
-ROW |36123 |19213 |19211 |
-ROW |36124 |19213 |19212 |
-ROW |36125 |19215 |19214 |
-ROW |36126 |19217 |19216 |
-ROW |36127 |19219 |19218 |
-ROW |36128 |19221 |19222 |
-ROW |36129 |19223 |19222 |
-ROW |36130 |19225 |19224 |
-ROW |36131 |19248 |19247 |
-ROW |36132 |19252 |19251 |
-ROW |36133 |19256 |19255 |
-ROW |36134 |19258 |19257 |
-ROW |36135 |19259 |19257 |
-ROW |36136 |19259 |19258 |
-ROW |36137 |19261 |19260 |
-ROW |36138 |19263 |19262 |
-ROW |36139 |19265 |19264 |
-ROW |36140 |19267 |19268 |
-ROW |36141 |19269 |19268 |
-ROW |36142 |19271 |19270 |
-ROW |36143 |19294 |19293 |
-ROW |36144 |19298 |19297 |
-ROW |36145 |19302 |19301 |
-ROW |36146 |19304 |19303 |
-ROW |36147 |19305 |19303 |
-ROW |36148 |19305 |19304 |
-ROW |36149 |19307 |19306 |
-ROW |36150 |19309 |19308 |
-ROW |36151 |19311 |19310 |
-ROW |36152 |19313 |19314 |
-ROW |36153 |19315 |19314 |
-ROW |36154 |19317 |19316 |
-ROW |36155 |19340 |19339 |
-ROW |36156 |19344 |19343 |
-ROW |36157 |19348 |19347 |
-ROW |36158 |19350 |19349 |
-ROW |36159 |19351 |19349 |
-ROW |36160 |19351 |19350 |
-ROW |36161 |19353 |19352 |
-ROW |36162 |19355 |19354 |
-ROW |36163 |19357 |19356 |
-ROW |36164 |19359 |19360 |
-ROW |36165 |19361 |19360 |
-ROW |36166 |19363 |19362 |
-ROW |36167 |19386 |19385 |
-ROW |36168 |16440 |16439 |
-ROW |36169 |18003 |15790 |
-ROW |36170 |18004 |15787 |
-ROW |36171 |18005 |15787 |
-ROW |36172 |18005 |18004 |
-ROW |36173 |15786 |15785 |
-ROW |36174 |15784 |15783 |
-ROW |36175 |15794 |15792 |
-ROW |36176 |15793 |15792 |
-ROW |36177 |15782 |15781 |
-ROW |36178 |15797 |15796 |
-ROW |36179 |15825 |15824 |
-ROW |36180 |15826 |15824 |
-ROW |36181 |15826 |15825 |
-ROW |36182 |15828 |15829 |
-ROW |36183 |15831 |15832 |
-ROW |36184 |15834 |15835 |
-ROW |36185 |15845 |15846 |
-ROW |36186 |17223 |17227 |
-ROW |36187 |17226 |17227 |
+ROW |36188 |17412 |17411 |
+ROW |36189 |17414 |17413 |
+ROW |36190 |17416 |17415 |
+ROW |36191 |15944 |15947 |
+ROW |36192 |15944 |15943 |
+ROW |36193 |15943 |15947 |
+ROW |36194 |16888 |15947 |
+ROW |36195 |16888 |15943 |
+ROW |36196 |15948 |15949 |
+ROW |36197 |15950 |15949 |
+ROW |36198 |17429 |17428 |
+ROW |36199 |17431 |17430 |
+ROW |36200 |17433 |17432 |
+ROW |36201 |17355 |17354 |
+ROW |36202 |17358 |17357 |
+ROW |36203 |19632 |19634 |
+ROW |36204 |16743 |16744 |
+ROW |36205 |16784 |16785 |
+ROW |36206 |16790 |16791 |
+ROW |36207 |16892 |16900 |
+ROW |36208 |16894 |16900 |
+ROW |36209 |17459 |17458 |
+ROW |36210 |17463 |17458 |
+ROW |36211 |17471 |17480 |
+ROW |36212 |17476 |17481 |
+ROW |36213 |17478 |17480 |
+ROW |36214 |17479 |17481 |
+ROW |36215 |17483 |17482 |
+ROW |36216 |17486 |17485 |
+ROW |36217 |16646 |16647 |
+ROW |36218 |19637 |16660 |
+ROW |36219 |16809 |16810 |
+ROW |36220 |19638 |16677 |
+ROW |36221 |16902 |16904 |
+ROW |36222 |16904 |16905 |
+ROW |36223 |16909 |16906 |
+ROW |36224 |16910 |16912 |
+ROW |36225 |16912 |16913 |
+ROW |36226 |16917 |16914 |
+ROW |36227 |17962 |17963 |
+ROW |36228 |17962 |17958 |
+ROW |36229 |16752 |16753 |
+ROW |36230 |15955 |15957 |
+ROW |36231 |15955 |15954 |
+ROW |36232 |15954 |15957 |
+ROW |36233 |15956 |15957 |
+ROW |36234 |15956 |15954 |
+ROW |36235 |16678 |15957 |
+ROW |36236 |16678 |15954 |
+ROW |36237 |15961 |15960 |
+ROW |36238 |15962 |15960 |
+ROW |36239 |16679 |15960 |
+ROW |36240 |17090 |17096 |
+ROW |36241 |17093 |17096 |
+ROW |36242 |17101 |17098 |
+ROW |36243 |16257 |16255 |
+ROW |36244 |16257 |16256 |
+ROW |36245 |16256 |16255 |
+ROW |36246 |16251 |16255 |
+ROW |36247 |16251 |16256 |
+ROW |36248 |16443 |16255 |
+ROW |36249 |16443 |16256 |
+ROW |36250 |16270 |16269 |
+ROW |36251 |16448 |16269 |
+ROW |36252 |16265 |16269 |
+ROW |36253 |17503 |17505 |
+ROW |36254 |17512 |17511 |
+ROW |36255 |17513 |17505 |
+ROW |36261 |17516 |17518 |
+ROW |36262 |17517 |17516 |
+ROW |36263 |17517 |17518 |
+ROW |36264 |17517 |17519 |
+ROW |36265 |17519 |17518 |
+ROW |36266 |18918 |18917 |
+ROW |36267 |17973 |17965 |
+ROW |36268 |17974 |17966 |
+ROW |36269 |17141 |17151 |
+ROW |36270 |17142 |17141 |
+ROW |36271 |17142 |17151 |
+ROW |36272 |17143 |17151 |
+ROW |36273 |17144 |17143 |
+ROW |36274 |17144 |17151 |
+ROW |36275 |17146 |17145 |
+ROW |36276 |17147 |17151 |
+ROW |36277 |17148 |17147 |
+ROW |36278 |17148 |17151 |
+ROW |36279 |17150 |17149 |
+ROW |36280 |17152 |17168 |
+ROW |36281 |17153 |17152 |
+ROW |36282 |17153 |17168 |
+ROW |36283 |17154 |17168 |
+ROW |36284 |17155 |17154 |
+ROW |36285 |17155 |17168 |
+ROW |36286 |17156 |17168 |
+ROW |36287 |17157 |17156 |
+ROW |36288 |17157 |17168 |
+ROW |36289 |17158 |17168 |
+ROW |36290 |17159 |17158 |
+ROW |36291 |17159 |17168 |
+ROW |36292 |17160 |17168 |
+ROW |36293 |17161 |17160 |
+ROW |36294 |17161 |17168 |
+ROW |36295 |17163 |17162 |
+ROW |36296 |17164 |17168 |
+ROW |36297 |17165 |17164 |
+ROW |36298 |17165 |17168 |
+ROW |36299 |17166 |17168 |
+ROW |36300 |17167 |17166 |
+ROW |36301 |17167 |17168 |
+ROW |36302 |17169 |17168 |
+ROW |36303 |17170 |17168 |
+ROW |36304 |17170 |17169 |
+ROW |36305 |17171 |17168 |
+ROW |36306 |17172 |17168 |
+ROW |36307 |17172 |17171 |
+ROW |36308 |17540 |17541 |
+ROW |36309 |16833 |16920 |
+ROW |36310 |16920 |16921 |
+ROW |36311 |19597 |19596 |
+ROW |36312 |19599 |19598 |
+ROW |36313 |19603 |19602 |
+ROW |36314 |19604 |19602 |
+ROW |36315 |19619 |19620 |
+ROW |36316 |17978 |17977 |
+ROW |36317 |17980 |17979 |
+ROW |36318 |17984 |17983 |
+ROW |36319 |17985 |17983 |
+ROW |36320 |18000 |18001 |
+ROW |36321 |18225 |18224 |
+ROW |36322 |18237 |18236 |
+ROW |36323 |16929 |16928 |
+ROW |36324 |16940 |17084 |
+ROW |36325 |18537 |18536 |
+ROW |36326 |18539 |18538 |
+ROW |36327 |18541 |18540 |
+ROW |36328 |16719 |16721 |
+ROW |36329 |16975 |16723 |
+ROW |36330 |16729 |16728 |
+ROW |36331 |16730 |16728 |
+ROW |36332 |16756 |16758 |
+ROW |36333 |16979 |16759 |
+ROW |36334 |16765 |16764 |
+ROW |36335 |16766 |16764 |
+ROW |36336 |16734 |16736 |
+ROW |36337 |16983 |16732 |
+ROW |36338 |16741 |16740 |
+ROW |36339 |16742 |16740 |
+ROW |36340 |17192 |17191 |
+ROW |36341 |17194 |17195 |
+ROW |36342 |17199 |17198 |
+ROW |36343 |17546 |17545 |
+ROW |36344 |17547 |17548 |
+ROW |36345 |16997 |16984 |
+ROW |36346 |17002 |17003 |
+ROW |36347 |17006 |17005 |
+ROW |36348 |17011 |17010 |
+ROW |36349 |17550 |17549 |
+ROW |36350 |17551 |17552 |
+ROW |36351 |17391 |17396 |
+ROW |36352 |17395 |17396 |
+ROW |36353 |16683 |16687 |
+ROW |36354 |14252 |14251 |
+ROW |36355 |14294 |14293 |
+ROW |36356 |14312 |14311 |
+ROW |36357 |14328 |14327 |
+ROW |36358 |14348 |14347 |
+ROW |36359 |14357 |14356 |
+ROW |36360 |14390 |14389 |
+ROW |36361 |14404 |14403 |
+ROW |36362 |14452 |14451 |
+ROW |36363 |14469 |14468 |
+ROW |36364 |14487 |14486 |
+ROW |36365 |14506 |14505 |
+ROW |36366 |14535 |14534 |
+ROW |36367 |14545 |14544 |
+ROW |36368 |14583 |14582 |
+ROW |36369 |14599 |14598 |
+ROW |36370 |14616 |14615 |
+ROW |36371 |14653 |14652 |
+ROW |36372 |14674 |14673 |
+ROW |36373 |14692 |14691 |
+ROW |36374 |14705 |14704 |
+ROW |36375 |14718 |14717 |
+ROW |36376 |14907 |14906 |
+ROW |36377 |15221 |15220 |
+ROW |36378 |15702 |15701 |
+ROW |36379 |15724 |15723 |
+ROW |36380 |15756 |15755 |
+ROW |36381 |15820 |15819 |
+ROW |36382 |15841 |15840 |
+ROW |36383 |15991 |15990 |
+ROW |36384 |16018 |16017 |
+ROW |36385 |16454 |16453 |
+ROW |36386 |17924 |17923 |
+ROW |36387 |18178 |18177 |
+ROW |36388 |14253 |14252 |
+ROW |36389 |14295 |14294 |
+ROW |36390 |14313 |14312 |
+ROW |36391 |14329 |14328 |
+ROW |36392 |14349 |14348 |
+ROW |36393 |14358 |14357 |
+ROW |36394 |14391 |14390 |
+ROW |36395 |14405 |14404 |
+ROW |36396 |14453 |14452 |
+ROW |36397 |14470 |14469 |
+ROW |36398 |14488 |14487 |
+ROW |36399 |14507 |14506 |
+ROW |36400 |14536 |14535 |
+ROW |36401 |14546 |14545 |
+ROW |36402 |14584 |14583 |
+ROW |36403 |14600 |14599 |
+ROW |36404 |14617 |14616 |
+ROW |36405 |14654 |14653 |
+ROW |36406 |14675 |14674 |
+ROW |36407 |14693 |14692 |
+ROW |36408 |14706 |14705 |
+ROW |36409 |14719 |14718 |
+ROW |36410 |14908 |14907 |
+ROW |36411 |15222 |15221 |
+ROW |36412 |15703 |15702 |
+ROW |36413 |15725 |15724 |
+ROW |36414 |15757 |15756 |
+ROW |36415 |15821 |15820 |
+ROW |36416 |15842 |15841 |
+ROW |36417 |15992 |15991 |
+ROW |36418 |16019 |16018 |
+ROW |36419 |16455 |16454 |
+ROW |36420 |17925 |17924 |
+ROW |36421 |18179 |18178 |
+ROW |36422 |14253 |14251 |
+ROW |36423 |14295 |14293 |
+ROW |36424 |14313 |14311 |
+ROW |36425 |14329 |14327 |
+ROW |36426 |14349 |14347 |
+ROW |36427 |14358 |14356 |
+ROW |36428 |14391 |14389 |
+ROW |36429 |14405 |14403 |
+ROW |36430 |14453 |14451 |
+ROW |36431 |14470 |14468 |
+ROW |36432 |14488 |14486 |
+ROW |36433 |14507 |14505 |
+ROW |36434 |14536 |14534 |
+ROW |36435 |14546 |14544 |
+ROW |36436 |14584 |14582 |
+ROW |36437 |14600 |14598 |
+ROW |36438 |14617 |14615 |
+ROW |36439 |14654 |14652 |
+ROW |36440 |14675 |14673 |
+ROW |36441 |14693 |14691 |
+ROW |36442 |14706 |14704 |
+ROW |36443 |14719 |14717 |
+ROW |36444 |14908 |14906 |
+ROW |36445 |15222 |15220 |
+ROW |36446 |15703 |15701 |
+ROW |36447 |15725 |15723 |
+ROW |36448 |15757 |15755 |
+ROW |36449 |15821 |15819 |
+ROW |36450 |15842 |15840 |
+ROW |36451 |15992 |15990 |
+ROW |36452 |16019 |16017 |
+ROW |36453 |16455 |16453 |
+ROW |36454 |17925 |17923 |
+ROW |36455 |18179 |18177 |
+ROW |36456 |16287 |16289 |
+ROW |36457 |16279 |16285 |
+ROW |36458 |16290 |16348 |
+ROW |36459 |16291 |16349 |
+ROW |36460 |16292 |16350 |
+ROW |36461 |16293 |16351 |
+ROW |36462 |16294 |16352 |
+ROW |36463 |16295 |16353 |
+ROW |36464 |16296 |16354 |
+ROW |36465 |16297 |16355 |
+ROW |36466 |16298 |16356 |
+ROW |36467 |16299 |16357 |
+ROW |36468 |16300 |16358 |
+ROW |36469 |16301 |16359 |
+ROW |36470 |16302 |16360 |
+ROW |36471 |16303 |16361 |
+ROW |36472 |16304 |16362 |
+ROW |36473 |16305 |16363 |
+ROW |36474 |16306 |16364 |
+ROW |36475 |16307 |16365 |
+ROW |36476 |16308 |16366 |
+ROW |36477 |16309 |16367 |
+ROW |36478 |16311 |16369 |
+ROW |36479 |16312 |16370 |
+ROW |36480 |16313 |16371 |
+ROW |36481 |16314 |16372 |
+ROW |36482 |16315 |16373 |
+ROW |36483 |16316 |16374 |
+ROW |36484 |16317 |16375 |
+ROW |36485 |16318 |16376 |
+ROW |36486 |16457 |16458 |
+ROW |36487 |17927 |17928 |
+ROW |36488 |18181 |18182 |
+ROW |36489 |16289 |14293 |
+ROW |36490 |16285 |14717 |
+ROW |36491 |16348 |14311 |
+ROW |36492 |16349 |14327 |
+ROW |36493 |16350 |14347 |
+ROW |36494 |16351 |14356 |
+ROW |36495 |16352 |14389 |
+ROW |36496 |16353 |14403 |
+ROW |36497 |16354 |14451 |
+ROW |36498 |16355 |14468 |
+ROW |36499 |16356 |14486 |
+ROW |36500 |16357 |14505 |
+ROW |36501 |16358 |14534 |
+ROW |36502 |16359 |14544 |
+ROW |36503 |16360 |14582 |
+ROW |36504 |16361 |14598 |
+ROW |36505 |16362 |14615 |
+ROW |36506 |16363 |14652 |
+ROW |36507 |16364 |14673 |
+ROW |36508 |16365 |14691 |
+ROW |36509 |16366 |14704 |
+ROW |36510 |16367 |14906 |
+ROW |36511 |16369 |15220 |
+ROW |36512 |16370 |15701 |
+ROW |36513 |16371 |15723 |
+ROW |36514 |16372 |15755 |
+ROW |36515 |16373 |15819 |
+ROW |36516 |16374 |15840 |
+ROW |36517 |16375 |15990 |
+ROW |36518 |16376 |16017 |
+ROW |36519 |16458 |16453 |
+ROW |36520 |17928 |17923 |
+ROW |36521 |18182 |18177 |
+ROW |36522 |16631 |16630 |
+ROW |36523 |16640 |16636 |
+ROW |36524 |16642 |16638 |
+ROW |36525 |16643 |16639 |
+ROW |36526 |15695 |16863 |
+ROW |36527 |18242 |16863 |
+ROW |36528 |18243 |16863 |
+ROW |36529 |15694 |16868 |
+ROW |36530 |15696 |16864 |
+ROW |36531 |15697 |16865 |
+ROW |36532 |18244 |16864 |
+ROW |36533 |18245 |16865 |
+ROW |36534 |18246 |16868 |
+ROW |36535 |18247 |16864 |
+ROW |36536 |18248 |16865 |
+ROW |36537 |18249 |16868 |
+ROW |36538 |15671 |16841 |
+ROW |36539 |18250 |16841 |
+ROW |36540 |18251 |16841 |
+ROW |36541 |15672 |16842 |
+ROW |36542 |15673 |16843 |
+ROW |36543 |15674 |16844 |
+ROW |36544 |15675 |16845 |
+ROW |36545 |15676 |16846 |
+ROW |36546 |15677 |16847 |
+ROW |36547 |15678 |16848 |
+ROW |36548 |15679 |16849 |
+ROW |36549 |15680 |16850 |
+ROW |36550 |15681 |16851 |
+ROW |36551 |15682 |16852 |
+ROW |36552 |15683 |16853 |
+ROW |36553 |15684 |16854 |
+ROW |36554 |15685 |16855 |
+ROW |36555 |15686 |16856 |
+ROW |36556 |15687 |16857 |
+ROW |36557 |15689 |16858 |
+ROW |36558 |15691 |16860 |
+ROW |36559 |15708 |16861 |
+ROW |36560 |15997 |16862 |
+ROW |36561 |18252 |16842 |
+ROW |36562 |18253 |16843 |
+ROW |36563 |18254 |16844 |
+ROW |36564 |18255 |16845 |
+ROW |36565 |18256 |16846 |
+ROW |36566 |18257 |16847 |
+ROW |36567 |18258 |16848 |
+ROW |36568 |18259 |16849 |
+ROW |36569 |18260 |16850 |
+ROW |36570 |18261 |16851 |
+ROW |36571 |18262 |16852 |
+ROW |36572 |18263 |16853 |
+ROW |36573 |18264 |16854 |
+ROW |36574 |18265 |16855 |
+ROW |36575 |18266 |16856 |
+ROW |36576 |18267 |16857 |
+ROW |36577 |18268 |16858 |
+ROW |36578 |18270 |16860 |
+ROW |36579 |18271 |16861 |
+ROW |36580 |18272 |16862 |
+ROW |36581 |18273 |16842 |
+ROW |36582 |18274 |16843 |
+ROW |36583 |18275 |16844 |
+ROW |36584 |18276 |16845 |
+ROW |36585 |18277 |16846 |
+ROW |36586 |18278 |16847 |
+ROW |36587 |18279 |16848 |
+ROW |36588 |18280 |16849 |
+ROW |36589 |18281 |16850 |
+ROW |36590 |18282 |16851 |
+ROW |36591 |18283 |16852 |
+ROW |36592 |18284 |16853 |
+ROW |36593 |18285 |16854 |
+ROW |36594 |18286 |16855 |
+ROW |36595 |18287 |16856 |
+ROW |36596 |18288 |16857 |
+ROW |36597 |18289 |16858 |
+ROW |36598 |18291 |16860 |
+ROW |36599 |18292 |16861 |
+ROW |36600 |18293 |16862 |
+ROW |36601 |15698 |16866 |
+ROW |36602 |18294 |16866 |
+ROW |36603 |18295 |16866 |
+ROW |36604 |16028 |16867 |
+ROW |36605 |18296 |16867 |
+ROW |36606 |18297 |16867 |
+ROW |36607 |18100 |18099 |
+ROW |36608 |18106 |18105 |
+ROW |36609 |14318 |14319 |
+ROW |36610 |17554 |15717 |
+ROW |36611 |17555 |15717 |
+ROW |36612 |17555 |17554 |
+ROW |36613 |17556 |15717 |
+ROW |36614 |17557 |15717 |
+ROW |36615 |17557 |17556 |
+ROW |36616 |17559 |17558 |
+ROW |36617 |17561 |17560 |
+ROW |36618 |17563 |17562 |
+ROW |36619 |17565 |17564 |
+ROW |36620 |15721 |15720 |
+ROW |36621 |15394 |15393 |
+ROW |36622 |15392 |15391 |
+ROW |36623 |17322 |14339 |
+ROW |36624 |15382 |15381 |
+ROW |36625 |15380 |15379 |
+ROW |36626 |16504 |16505 |
+ROW |36627 |14372 |14373 |
+ROW |36628 |15386 |15385 |
+ROW |36629 |15384 |15383 |
+ROW |36630 |14380 |14381 |
+ROW |36631 |18299 |18298 |
+ROW |36632 |18300 |18299 |
+ROW |36633 |18300 |18298 |
+ROW |36634 |18303 |18302 |
+ROW |36635 |18309 |18308 |
+ROW |36636 |18311 |18316 |
+ROW |36637 |18312 |18316 |
+ROW |36638 |18313 |18316 |
+ROW |36639 |18314 |18316 |
+ROW |36640 |18315 |18316 |
+ROW |36641 |18319 |18318 |
+ROW |36642 |18321 |18320 |
+ROW |36643 |18323 |18322 |
+ROW |36644 |18326 |18325 |
+ROW |36645 |18327 |18326 |
+ROW |36646 |18327 |18325 |
+ROW |36647 |18330 |18329 |
+ROW |36648 |18336 |18335 |
+ROW |36649 |18338 |18343 |
+ROW |36650 |18339 |18343 |
+ROW |36651 |18340 |18343 |
+ROW |36652 |18341 |18343 |
+ROW |36653 |18342 |18343 |
+ROW |36654 |18346 |18345 |
+ROW |36655 |18348 |18347 |
+ROW |36656 |18350 |18349 |
+ROW |36657 |18353 |18352 |
+ROW |36658 |18354 |18353 |
+ROW |36659 |18354 |18352 |
+ROW |36660 |18357 |18356 |
+ROW |36661 |18363 |18362 |
+ROW |36662 |18365 |18370 |
+ROW |36663 |18366 |18370 |
+ROW |36664 |18367 |18370 |
+ROW |36665 |18368 |18370 |
+ROW |36666 |18369 |18370 |
+ROW |36667 |18373 |18372 |
+ROW |36668 |18375 |18374 |
+ROW |36669 |18377 |18376 |
+ROW |36670 |18380 |18379 |
+ROW |36671 |18381 |18380 |
+ROW |36672 |18381 |18379 |
+ROW |36673 |18384 |18383 |
+ROW |36674 |18390 |18389 |
+ROW |36675 |18392 |18397 |
+ROW |36676 |18393 |18397 |
+ROW |36677 |18394 |18397 |
+ROW |36678 |18395 |18397 |
+ROW |36679 |18396 |18397 |
+ROW |36680 |18400 |18399 |
+ROW |36681 |18402 |18401 |
+ROW |36682 |18404 |18403 |
+ROW |36683 |18407 |18406 |
+ROW |36684 |18408 |18407 |
+ROW |36685 |18408 |18406 |
+ROW |36686 |18411 |18410 |
+ROW |36687 |18417 |18416 |
+ROW |36688 |18419 |18424 |
+ROW |36689 |18420 |18424 |
+ROW |36690 |18421 |18424 |
+ROW |36691 |18422 |18424 |
+ROW |36692 |18423 |18424 |
+ROW |36693 |18427 |18426 |
+ROW |36694 |18429 |18428 |
+ROW |36695 |18431 |18430 |
+ROW |36696 |15347 |15346 |
+ROW |36697 |15345 |15344 |
+ROW |36698 |17567 |17566 |
+ROW |36699 |15363 |15360 |
+ROW |36700 |15364 |15361 |
+ROW |36701 |15365 |15362 |
+ROW |36702 |15357 |15354 |
+ROW |36703 |15358 |15355 |
+ROW |36704 |15359 |15356 |
+ROW |36705 |17571 |17568 |
+ROW |36706 |17572 |17569 |
+ROW |36707 |17573 |17570 |
+ROW |36708 |15334 |15333 |
+ROW |36709 |15332 |15331 |
+ROW |36710 |14460 |14461 |
+ROW |36711 |14476 |14477 |
+ROW |36712 |14495 |14496 |
+ROW |36713 |14511 |17574 |
+ROW |36714 |19660 |19659 |
+ROW |36715 |19661 |19662 |
+ROW |36716 |14551 |14552 |
+ROW |36717 |15374 |15373 |
+ROW |36718 |15376 |15375 |
+ROW |36719 |14914 |14915 |
+ROW |36720 |14589 |14590 |
+ROW |36721 |15338 |15337 |
+ROW |36722 |17333 |17332 |
+ROW |36723 |14624 |14625 |
+ROW |36724 |18434 |18433 |
+ROW |36725 |18435 |18434 |
+ROW |36726 |18435 |18433 |
+ROW |36727 |18438 |18439 |
+ROW |36728 |18439 |18433 |
+ROW |36729 |18441 |18444 |
+ROW |36730 |18442 |18444 |
+ROW |36731 |18443 |18444 |
+ROW |36732 |18446 |18447 |
+ROW |36733 |18450 |18449 |
+ROW |36734 |14664 |14665 |
+ROW |36735 |17085 |17086 |
+ROW |36736 |16547 |16546 |
+ROW |36737 |17576 |17575 |
+ROW |36738 |17578 |17577 |
+ROW |36739 |17628 |17626 |
+ROW |36740 |17629 |17627 |
+ROW |36741 |17632 |17630 |
+ROW |36742 |17633 |17631 |
+ROW |36743 |17635 |17634 |
+ROW |36744 |17637 |17636 |
+ROW |36745 |17686 |17684 |
+ROW |36746 |17687 |17685 |
+ROW |36747 |17690 |17688 |
+ROW |36748 |17691 |17689 |
+ROW |36749 |17693 |17692 |
+ROW |36750 |17695 |17694 |
+ROW |36751 |17730 |17728 |
+ROW |36752 |17731 |17729 |
+ROW |36753 |17734 |17732 |
+ROW |36754 |17735 |17733 |
+ROW |36755 |17737 |17736 |
+ROW |36756 |17754 |17752 |
+ROW |36757 |17755 |17753 |
+ROW |36758 |17757 |17756 |
+ROW |36759 |17819 |17817 |
+ROW |36760 |17820 |17818 |
+ROW |36761 |17823 |17821 |
+ROW |36762 |17824 |17822 |
+ROW |36763 |17826 |17825 |
+ROW |36764 |17860 |17858 |
+ROW |36765 |17861 |17859 |
+ROW |36766 |17864 |17862 |
+ROW |36767 |17865 |17863 |
+ROW |36768 |17899 |17897 |
+ROW |36769 |17900 |17898 |
+ROW |36770 |17903 |17901 |
+ROW |36771 |17904 |17902 |
+ROW |36772 |17906 |17905 |
+ROW |36773 |17908 |17907 |
+ROW |36774 |17910 |17909 |
+ROW |36775 |16551 |16552 |
+ROW |36776 |16031 |16563 |
+ROW |36777 |16045 |16564 |
+ROW |36778 |16046 |16565 |
+ROW |36779 |16039 |16040 |
+ROW |36780 |16061 |16063 |
+ROW |36781 |16062 |16064 |
+ROW |36782 |16042 |16579 |
+ROW |36783 |16067 |16580 |
+ROW |36784 |16068 |16581 |
+ROW |36785 |16041 |16042 |
+ROW |36786 |16065 |16067 |
+ROW |36787 |16066 |16068 |
+ROW |36788 |16041 |16579 |
+ROW |36789 |16065 |16580 |
+ROW |36790 |16066 |16581 |
+ROW |36791 |18132 |18452 |
+ROW |36792 |18135 |18453 |
+ROW |36793 |18138 |18454 |
+ROW |36794 |18130 |18132 |
+ROW |36795 |18133 |18135 |
+ROW |36796 |18136 |18138 |
+ROW |36797 |18130 |18452 |
+ROW |36798 |18133 |18453 |
+ROW |36799 |18136 |18454 |
+ROW |36800 |16070 |16069 |
+ROW |36801 |16072 |16071 |
+ROW |36802 |16076 |17024 |
+ROW |36803 |18455 |17024 |
+ROW |36804 |16079 |16077 |
+ROW |36805 |16080 |16078 |
+ROW |36806 |16083 |16081 |
+ROW |36807 |16084 |16082 |
+ROW |36808 |16091 |17026 |
+ROW |36809 |16092 |17028 |
+ROW |36810 |18456 |17026 |
+ROW |36811 |18457 |17028 |
+ROW |36812 |17244 |17243 |
+ROW |36813 |17257 |17256 |
+ROW |36814 |17246 |17240 |
+ROW |36815 |17259 |17253 |
+ROW |36816 |17249 |17247 |
+ROW |36817 |17262 |17260 |
+ROW |36818 |17251 |17249 |
+ROW |36819 |17264 |17262 |
+ROW |36820 |17251 |17247 |
+ROW |36821 |17264 |17260 |
+ROW |36822 |18144 |18458 |
+ROW |36823 |18147 |18459 |
+ROW |36824 |18142 |18144 |
+ROW |36825 |18145 |18147 |
+ROW |36826 |18142 |18458 |
+ROW |36827 |18145 |18459 |
+ROW |36828 |17268 |17267 |
+ROW |36829 |17270 |17269 |
+ROW |36830 |17271 |17273 |
+ROW |36831 |18460 |17273 |
+ROW |36832 |17276 |17275 |
+ROW |36833 |17278 |17277 |
+ROW |36834 |17279 |17281 |
+ROW |36835 |18461 |17281 |
+ROW |36836 |16141 |16142 |
+ROW |36837 |16146 |16573 |
+ROW |36838 |16143 |16584 |
+ROW |36839 |18152 |18462 |
+ROW |36840 |18150 |18152 |
+ROW |36841 |18150 |18462 |
+ROW |36842 |16152 |16883 |
+ROW |36843 |16153 |16883 |
+ROW |36844 |18463 |16883 |
+ROW |36845 |18464 |16883 |
+ROW |36846 |16156 |16155 |
+ROW |36847 |16158 |16157 |
+ROW |36848 |18157 |18156 |
+ROW |36849 |18160 |18159 |
+ROW |36850 |18155 |18157 |
+ROW |36851 |18158 |18160 |
+ROW |36852 |18155 |18156 |
+ROW |36853 |18158 |18159 |
+ROW |36854 |16009 |16008 |
+ROW |36855 |16011 |16010 |
+ROW |36856 |16014 |16013 |
+ROW |36857 |16016 |16015 |
+ROW |36858 |16161 |16160 |
+ROW |36859 |16172 |16171 |
+ROW |36860 |16162 |16161 |
+ROW |36861 |16173 |16172 |
+ROW |36862 |16162 |16160 |
+ROW |36863 |16173 |16171 |
+ROW |36864 |16166 |18162 |
+ROW |36865 |16177 |18164 |
+ROW |36866 |16167 |18162 |
+ROW |36867 |16178 |18164 |
+ROW |36868 |17035 |16160 |
+ROW |36869 |17037 |16171 |
+ROW |36870 |18161 |18162 |
+ROW |36871 |18163 |18164 |
+ROW |36872 |16183 |16182 |
+ROW |36873 |17911 |17042 |
+ROW |36874 |18465 |17042 |
+ROW |36875 |18466 |17042 |
+ROW |36876 |17043 |17912 |
+ROW |36877 |17043 |17913 |
+ROW |36878 |16190 |16189 |
+ROW |36879 |17914 |17047 |
+ROW |36880 |18467 |17047 |
+ROW |36881 |18468 |17047 |
+ROW |36882 |17048 |17915 |
+ROW |36883 |17048 |17916 |
+ROW |36884 |17285 |17287 |
+ROW |36885 |17296 |17298 |
+ROW |36886 |17286 |17285 |
+ROW |36887 |17297 |17296 |
+ROW |36888 |17286 |17287 |
+ROW |36889 |17297 |17298 |
+ROW |36890 |17291 |18170 |
+ROW |36891 |17302 |18172 |
+ROW |36892 |17292 |18170 |
+ROW |36893 |17303 |18172 |
+ROW |36894 |17283 |17287 |
+ROW |36895 |17294 |17298 |
+ROW |36896 |18169 |18170 |
+ROW |36897 |18171 |18172 |
+ROW |36898 |17306 |17305 |
+ROW |36899 |17917 |17310 |
+ROW |36900 |18469 |17310 |
+ROW |36901 |18470 |17310 |
+ROW |36902 |17311 |17918 |
+ROW |36903 |17311 |17919 |
+ROW |36904 |17314 |17313 |
+ROW |36905 |17920 |17318 |
+ROW |36906 |18471 |17318 |
+ROW |36907 |18472 |17318 |
+ROW |36908 |17319 |17921 |
+ROW |36909 |17319 |17922 |
+ROW |36910 |18596 |18597 |
+ROW |36911 |18629 |18630 |
+ROW |36912 |18662 |18663 |
+ROW |36913 |18695 |18696 |
+ROW |36914 |18728 |18729 |
+ROW |36915 |18947 |18948 |
+ROW |36916 |18794 |18795 |
+ROW |36917 |18495 |18496 |
+ROW |36918 |18831 |18832 |
+ROW |36919 |18864 |18865 |
+ROW |36920 |18897 |18898 |
+ROW |36921 |16772 |16773 |
+ROW |36922 |16771 |16772 |
+ROW |36923 |16771 |16773 |
+ROW |36924 |16769 |16770 |
+ROW |36925 |16768 |16769 |
+ROW |36926 |16768 |16770 |
+ROW |36927 |19173 |19174 |
+ROW |36928 |19176 |19175 |
+ROW |36929 |19178 |19177 |
+ROW |36930 |19179 |19177 |
+ROW |36931 |19179 |19178 |
+ROW |36932 |19181 |19180 |
+ROW |36933 |19182 |19183 |
+ROW |36934 |19185 |19186 |
+ROW |36935 |19188 |19187 |
+ROW |36936 |19190 |19189 |
+ROW |36937 |19192 |19193 |
+ROW |36938 |19192 |19195 |
+ROW |36939 |19192 |19191 |
+ROW |36940 |19192 |19197 |
+ROW |36941 |19194 |19193 |
+ROW |36942 |19194 |19195 |
+ROW |36943 |19194 |19191 |
+ROW |36944 |19194 |19197 |
+ROW |36945 |19196 |19193 |
+ROW |36946 |19196 |19195 |
+ROW |36947 |19196 |19191 |
+ROW |36948 |19196 |19197 |
+ROW |36949 |19198 |19193 |
+ROW |36950 |19198 |19195 |
+ROW |36951 |19198 |19191 |
+ROW |36952 |19198 |19197 |
+ROW |36953 |19201 |19200 |
+ROW |36954 |16488 |16487 |
+ROW |36955 |16485 |16484 |
+ROW |36956 |16486 |16484 |
+ROW |36957 |16486 |16485 |
+ROW |36958 |16480 |16479 |
+ROW |36959 |16482 |16481 |
+ROW |36960 |16475 |16474 |
+ROW |36961 |16471 |16472 |
+ROW |36962 |16468 |16469 |
+ROW |36963 |16459 |16460 |
+ROW |36964 |16462 |16463 |
+ROW |36965 |16465 |16466 |
+ROW |36966 |16477 |16476 |
+ROW |36967 |19393 |19392 |
+ROW |36968 |19396 |19395 |
+ROW |36969 |19398 |19397 |
+ROW |36970 |19400 |19399 |
+ROW |36971 |19402 |19401 |
+ROW |36972 |19406 |19405 |
+ROW |36973 |19408 |19407 |
+ROW |36974 |19410 |19409 |
+ROW |36975 |19412 |19411 |
+ROW |36976 |19418 |19417 |
+ROW |36977 |19423 |19422 |
+ROW |36978 |19424 |19422 |
+ROW |36979 |19424 |19423 |
+ROW |36980 |19425 |19426 |
+ROW |36981 |19427 |19425 |
+ROW |36982 |19427 |19426 |
+ROW |36983 |19429 |19428 |
+ROW |36984 |19431 |19432 |
+ROW |36985 |19433 |19432 |
+ROW |36986 |19435 |19434 |
+ROW |36987 |19437 |19436 |
+ROW |36988 |19438 |19436 |
+ROW |36989 |19438 |19437 |
+ROW |36990 |19440 |19439 |
+ROW |36991 |19444 |19443 |
+ROW |36992 |19447 |19446 |
+ROW |36993 |19449 |19448 |
+ROW |36994 |19451 |19450 |
+ROW |36995 |19453 |19452 |
+ROW |36996 |19457 |19456 |
+ROW |36997 |19459 |19458 |
+ROW |36998 |19461 |19460 |
+ROW |36999 |19463 |19462 |
+ROW |37000 |19469 |19468 |
+ROW |37001 |19474 |19473 |
+ROW |37002 |19475 |19473 |
+ROW |37003 |19475 |19474 |
+ROW |37004 |19476 |19477 |
+ROW |37005 |19478 |19476 |
+ROW |37006 |19478 |19477 |
+ROW |37007 |19480 |19479 |
+ROW |37008 |19482 |19483 |
+ROW |37009 |19484 |19483 |
+ROW |37010 |19486 |19485 |
+ROW |37011 |19488 |19487 |
+ROW |37012 |19489 |19487 |
+ROW |37013 |19489 |19488 |
+ROW |37014 |19491 |19490 |
+ROW |37015 |19495 |19494 |
+ROW |37016 |19498 |19497 |
+ROW |37017 |19500 |19499 |
+ROW |37018 |19502 |19501 |
+ROW |37019 |19504 |19503 |
+ROW |37020 |19508 |19507 |
+ROW |37021 |19510 |19509 |
+ROW |37022 |19512 |19511 |
+ROW |37023 |19514 |19513 |
+ROW |37024 |19520 |19519 |
+ROW |37025 |19525 |19524 |
+ROW |37026 |19526 |19524 |
+ROW |37027 |19526 |19525 |
+ROW |37028 |19527 |19528 |
+ROW |37029 |19529 |19527 |
+ROW |37030 |19529 |19528 |
+ROW |37031 |19531 |19530 |
+ROW |37032 |19533 |19534 |
+ROW |37033 |19535 |19534 |
+ROW |37034 |19537 |19536 |
+ROW |37035 |19539 |19538 |
+ROW |37036 |19540 |19538 |
+ROW |37037 |19540 |19539 |
+ROW |37038 |19542 |19541 |
+ROW |37039 |19546 |19545 |
+ROW |37040 |19549 |19548 |
+ROW |37041 |19551 |19550 |
+ROW |37042 |19553 |19552 |
+ROW |37043 |19555 |19554 |
+ROW |37044 |19559 |19558 |
+ROW |37045 |19561 |19560 |
+ROW |37046 |19563 |19562 |
+ROW |37047 |19565 |19564 |
+ROW |37048 |19571 |19570 |
+ROW |37049 |19576 |19575 |
+ROW |37050 |19577 |19575 |
+ROW |37051 |19577 |19576 |
+ROW |37052 |19578 |19579 |
+ROW |37053 |19580 |19578 |
+ROW |37054 |19580 |19579 |
+ROW |37055 |19582 |19581 |
+ROW |37056 |19584 |19585 |
+ROW |37057 |19586 |19585 |
+ROW |37058 |19588 |19587 |
+ROW |37059 |19590 |19589 |
+ROW |37060 |19591 |19589 |
+ROW |37061 |19591 |19590 |
+ROW |37062 |19593 |19592 |
+ROW |37063 |15729 |15728 |
+ROW |37064 |15730 |15728 |
+ROW |37065 |15730 |15729 |
+ROW |37066 |15752 |15754 |
+ROW |37067 |15753 |15754 |
+ROW |37068 |15753 |15752 |
+ROW |37069 |15742 |15741 |
+ROW |37070 |15750 |15749 |
+ROW |37071 |15751 |15750 |
+ROW |37072 |15751 |15749 |
+ROW |37073 |15746 |15743 |
+ROW |37074 |15744 |15743 |
+ROW |37075 |15740 |15739 |
+ROW |37076 |17946 |17945 |
+ROW |37077 |17948 |17947 |
+ROW |37078 |15748 |15747 |
+ROW |37079 |19206 |19205 |
+ROW |37080 |19210 |19209 |
+ROW |37081 |19212 |19211 |
+ROW |37082 |19213 |19211 |
+ROW |37083 |19213 |19212 |
+ROW |37084 |19215 |19214 |
+ROW |37085 |19217 |19216 |
+ROW |37086 |19219 |19218 |
+ROW |37087 |19221 |19222 |
+ROW |37088 |19223 |19222 |
+ROW |37089 |19225 |19224 |
+ROW |37090 |19248 |19247 |
+ROW |37091 |19252 |19251 |
+ROW |37092 |19256 |19255 |
+ROW |37093 |19258 |19257 |
+ROW |37094 |19259 |19257 |
+ROW |37095 |19259 |19258 |
+ROW |37096 |19261 |19260 |
+ROW |37097 |19263 |19262 |
+ROW |37098 |19265 |19264 |
+ROW |37099 |19267 |19268 |
+ROW |37100 |19269 |19268 |
+ROW |37101 |19271 |19270 |
+ROW |37102 |19294 |19293 |
+ROW |37103 |19298 |19297 |
+ROW |37104 |19302 |19301 |
+ROW |37105 |19304 |19303 |
+ROW |37106 |19305 |19303 |
+ROW |37107 |19305 |19304 |
+ROW |37108 |19307 |19306 |
+ROW |37109 |19309 |19308 |
+ROW |37110 |19311 |19310 |
+ROW |37111 |19313 |19314 |
+ROW |37112 |19315 |19314 |
+ROW |37113 |19317 |19316 |
+ROW |37114 |19340 |19339 |
+ROW |37115 |19344 |19343 |
+ROW |37116 |19348 |19347 |
+ROW |37117 |19350 |19349 |
+ROW |37118 |19351 |19349 |
+ROW |37119 |19351 |19350 |
+ROW |37120 |19353 |19352 |
+ROW |37121 |19355 |19354 |
+ROW |37122 |19357 |19356 |
+ROW |37123 |19359 |19360 |
+ROW |37124 |19361 |19360 |
+ROW |37125 |19363 |19362 |
+ROW |37126 |19386 |19385 |
+ROW |37127 |16440 |16439 |
+ROW |37128 |18003 |15790 |
+ROW |37129 |18004 |15787 |
+ROW |37130 |18005 |15787 |
+ROW |37131 |18005 |18004 |
+ROW |37132 |15786 |15785 |
+ROW |37133 |15784 |15783 |
+ROW |37134 |15794 |15792 |
+ROW |37135 |15793 |15792 |
+ROW |37136 |15782 |15781 |
+ROW |37137 |15797 |15796 |
+ROW |37138 |15825 |15824 |
+ROW |37139 |15826 |15824 |
+ROW |37140 |15826 |15825 |
+ROW |37141 |15828 |15829 |
+ROW |37142 |15831 |15832 |
+ROW |37143 |15834 |15835 |
+ROW |37144 |15845 |15846 |
+ROW |37145 |17223 |17227 |
+ROW |37146 |17226 |17227 |
TABLE |functions
FIELDS|functionid|itemid|triggerid|name |parameter |
@@ -20528,2282 +20529,2282 @@ ROW |75935 |1318 |31981 |5 |0 |1A7C11|0 |2 |0 |
ROW |75937 |1320 |32000 |5 |0 |1A7C11|0 |2 |0 |
ROW |75940 |1322 |31996 |0 |0 |1A7C11|0 |2 |0 |
ROW |75941 |1322 |31997 |0 |1 |2774A4|0 |2 |0 |
-ROW |82826 |1397 |32451 |5 |0 |1A7C11|0 |2 |0 |
-ROW |82827 |1397 |32450 |5 |1 |2774A4|0 |2 |0 |
-ROW |82828 |1398 |32452 |5 |0 |1A7C11|0 |2 |0 |
-ROW |82829 |1398 |32449 |5 |1 |2774A4|0 |2 |0 |
-ROW |82830 |1399 |32444 |5 |0 |1A7C11|0 |2 |0 |
-ROW |82831 |1399 |32446 |5 |1 |2774A4|0 |2 |0 |
-ROW |82832 |1399 |32448 |5 |2 |F63100|0 |2 |0 |
-ROW |82833 |1400 |32460 |5 |0 |1A7C11|0 |2 |0 |
-ROW |82834 |1401 |32458 |5 |0 |1A7C11|0 |2 |0 |
-ROW |82835 |1401 |32457 |5 |1 |2774A4|0 |2 |0 |
-ROW |82836 |1402 |32461 |5 |0 |1A7C11|0 |2 |0 |
-ROW |82837 |1402 |32456 |5 |1 |2774A4|0 |2 |0 |
-ROW |82838 |1172 |30918 |0 |0 |1A7C11|0 |2 |0 |
-ROW |82839 |1172 |30919 |0 |1 |2774A4|0 |2 |0 |
-ROW |82840 |1172 |30920 |0 |2 |F63100|0 |2 |0 |
-ROW |82841 |1172 |30921 |2 |3 |A54F10|0 |2 |0 |
-ROW |82842 |1173 |30922 |5 |0 |1A7C11|0 |2 |0 |
-ROW |82843 |835 |28744 |0 |0 |1A7C11|0 |2 |0 |
-ROW |82844 |835 |28745 |0 |1 |2774A4|0 |2 |0 |
-ROW |82845 |1174 |30913 |5 |0 |1A7C11|0 |2 |0 |
-ROW |82846 |1175 |30906 |0 |0 |1A7C11|0 |2 |0 |
-ROW |82847 |1175 |30908 |0 |1 |2774A4|0 |2 |0 |
-ROW |82848 |1175 |30915 |0 |2 |F63100|0 |2 |0 |
-ROW |82849 |1175 |30897 |0 |3 |A54F10|0 |2 |0 |
-ROW |82850 |1175 |30901 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |82851 |1175 |30899 |0 |5 |6C59DC|0 |2 |0 |
-ROW |82852 |1175 |30907 |0 |6 |AC8C14|0 |2 |0 |
-ROW |82853 |1175 |30905 |0 |7 |611F27|0 |2 |0 |
-ROW |82854 |1175 |30904 |0 |8 |F230E0|0 |2 |0 |
-ROW |82855 |1175 |30900 |0 |9 |FFAD40|0 |2 |0 |
-ROW |82856 |1175 |30898 |0 |10 |40CDFF|0 |2 |0 |
-ROW |82857 |1176 |30910 |0 |0 |1A7C11|0 |2 |0 |
-ROW |82858 |1176 |30909 |0 |1 |2774A4|0 |2 |0 |
-ROW |82859 |836 |28798 |0 |0 |1A7C11|0 |2 |0 |
-ROW |82860 |836 |28799 |0 |1 |2774A4|0 |2 |0 |
-ROW |82861 |836 |28800 |0 |2 |F63100|0 |2 |0 |
-ROW |82862 |836 |28801 |2 |3 |A54F10|0 |2 |0 |
-ROW |82863 |837 |28803 |5 |0 |1A7C11|0 |2 |0 |
-ROW |82864 |838 |28793 |5 |0 |1A7C11|0 |2 |0 |
-ROW |82865 |840 |28787 |0 |0 |1A7C11|0 |2 |0 |
-ROW |82866 |840 |28784 |0 |1 |2774A4|0 |2 |0 |
-ROW |82867 |840 |28782 |0 |2 |F63100|0 |2 |0 |
-ROW |82868 |840 |28781 |0 |3 |A54F10|0 |2 |0 |
-ROW |82869 |840 |28780 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |82870 |840 |28778 |0 |5 |6C59DC|0 |2 |0 |
-ROW |82871 |840 |28786 |0 |6 |AC8C14|0 |2 |0 |
-ROW |82872 |840 |28785 |0 |7 |611F27|0 |2 |0 |
-ROW |82873 |840 |28783 |0 |8 |F230E0|0 |2 |0 |
-ROW |82874 |840 |28779 |0 |9 |FFAD40|0 |2 |0 |
-ROW |82875 |840 |28796 |0 |10 |40CDFF|0 |2 |0 |
-ROW |82876 |839 |28789 |0 |0 |1A7C11|0 |2 |0 |
-ROW |82877 |839 |28788 |0 |1 |2774A4|0 |2 |0 |
-ROW |82878 |1339 |32172 |0 |0 |1A7C11|0 |2 |0 |
-ROW |82879 |1339 |32173 |0 |1 |2774A4|0 |2 |0 |
-ROW |82880 |1403 |32511 |0 |0 |1A7C11|0 |2 |0 |
-ROW |82881 |1403 |32514 |0 |1 |2774A4|0 |2 |0 |
-ROW |82882 |1404 |32512 |0 |0 |1A7C11|0 |2 |0 |
-ROW |82883 |1404 |32515 |0 |1 |2774A4|0 |2 |0 |
-ROW |82884 |1405 |32507 |0 |0 |1A7C11|0 |2 |0 |
-ROW |82885 |1405 |32508 |0 |1 |2774A4|0 |2 |0 |
-ROW |82886 |1405 |32513 |0 |2 |F63100|0 |2 |0 |
-ROW |82887 |1343 |32135 |0 |0 |1A7C11|0 |2 |0 |
-ROW |82888 |1343 |32142 |0 |1 |2774A4|0 |2 |0 |
-ROW |82889 |1344 |32167 |0 |0 |1A7C11|0 |2 |0 |
-ROW |82890 |1344 |32136 |0 |1 |2774A4|0 |2 |0 |
-ROW |82891 |1345 |32141 |1 |0 |1A7C11|0 |2 |0 |
-ROW |82892 |1345 |32138 |1 |1 |2774A4|0 |2 |0 |
-ROW |82893 |1346 |32156 |2 |0 |1A7C11|0 |2 |0 |
-ROW |82894 |1346 |32158 |0 |1 |2774A4|0 |2 |0 |
-ROW |82895 |1346 |32159 |0 |2 |F63100|0 |2 |0 |
-ROW |82896 |1346 |32154 |2 |3 |A54F10|0 |2 |0 |
-ROW |82897 |1346 |32155 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |82898 |1346 |32146 |0 |5 |6C59DC|0 |2 |0 |
-ROW |82899 |1347 |32150 |2 |0 |1A7C11|0 |2 |0 |
-ROW |82900 |1347 |32151 |0 |1 |2774A4|0 |2 |0 |
-ROW |82901 |1347 |32152 |0 |2 |F63100|0 |2 |0 |
-ROW |82902 |1785 |36643 |0 |0 |1A7C11|0 |2 |0 |
-ROW |82903 |1785 |36656 |0 |1 |2774A4|0 |2 |0 |
-ROW |82904 |1785 |36663 |0 |2 |F63100|0 |2 |0 |
-ROW |82905 |1785 |36665 |0 |3 |A54F10|0 |2 |0 |
-ROW |82906 |1785 |36664 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |82907 |1786 |36655 |0 |0 |1A7C11|0 |2 |0 |
-ROW |82908 |1786 |36666 |0 |1 |2774A4|0 |2 |0 |
-ROW |82909 |1787 |36662 |0 |0 |1A7C11|0 |2 |0 |
-ROW |82910 |1787 |36661 |0 |1 |2774A4|0 |2 |0 |
-ROW |82911 |1787 |36660 |0 |2 |F63100|0 |2 |0 |
-ROW |82912 |1788 |36654 |0 |0 |1A7C11|0 |2 |0 |
-ROW |82913 |1788 |36653 |0 |1 |2774A4|0 |2 |0 |
-ROW |82914 |1788 |36652 |0 |2 |F63100|0 |2 |0 |
-ROW |82915 |1788 |36651 |0 |3 |A54F10|0 |2 |0 |
-ROW |82916 |1788 |36650 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |82917 |1789 |36644 |0 |0 |1A7C11|0 |2 |0 |
-ROW |82918 |1789 |36647 |0 |1 |2774A4|0 |2 |0 |
-ROW |82919 |1790 |36645 |0 |0 |1A7C11|0 |2 |0 |
-ROW |82920 |1790 |36667 |0 |1 |2774A4|0 |2 |0 |
-ROW |82921 |1791 |36658 |0 |0 |1A7C11|0 |2 |0 |
-ROW |82922 |1791 |36657 |0 |1 |2774A4|0 |2 |0 |
-ROW |82923 |1791 |36646 |0 |2 |F63100|0 |2 |0 |
-ROW |82924 |1791 |36649 |0 |3 |A54F10|0 |2 |0 |
-ROW |82925 |1791 |36648 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |82926 |1121 |30606 |5 |0 |1A7C11|0 |2 |0 |
-ROW |82927 |1121 |30590 |5 |1 |2774A4|0 |2 |0 |
-ROW |82928 |1121 |30582 |5 |2 |F63100|0 |2 |0 |
-ROW |82929 |1122 |30580 |5 |0 |1A7C11|0 |2 |0 |
-ROW |82930 |1122 |30578 |5 |1 |2774A4|0 |2 |0 |
-ROW |82931 |1123 |30586 |2 |0 |1A7C11|0 |2 |0 |
-ROW |82932 |1123 |30608 |2 |1 |2774A4|0 |2 |0 |
-ROW |82933 |1123 |30585 |2 |2 |F63100|0 |2 |0 |
-ROW |82934 |1123 |30589 |2 |3 |A54F10|0 |2 |0 |
-ROW |82935 |1123 |30584 |2 |4 |FC6EA3|0 |2 |0 |
-ROW |82936 |1123 |30588 |2 |5 |6C59DC|0 |2 |0 |
-ROW |82937 |1124 |30583 |2 |0 |1A7C11|0 |2 |0 |
-ROW |82938 |1124 |30587 |2 |1 |2774A4|0 |2 |0 |
-ROW |82939 |1125 |30555 |5 |0 |1A7C11|0 |2 |0 |
-ROW |82940 |1125 |30554 |2 |1 |2774A4|0 |2 |0 |
-ROW |82941 |1125 |30556 |2 |2 |F63100|0 |2 |0 |
-ROW |82942 |1125 |30557 |2 |3 |A54F10|0 |2 |0 |
-ROW |82943 |1126 |30565 |5 |0 |1A7C11|0 |2 |0 |
-ROW |82944 |1127 |30567 |2 |0 |1A7C11|0 |2 |0 |
-ROW |82945 |1127 |30568 |2 |1 |2774A4|0 |2 |0 |
-ROW |82946 |1128 |30536 |2 |0 |1A7C11|0 |2 |0 |
-ROW |82947 |1129 |30566 |2 |0 |1A7C11|0 |2 |0 |
-ROW |82948 |1129 |30549 |2 |1 |2774A4|0 |2 |0 |
-ROW |82949 |1129 |30553 |2 |2 |F63100|0 |2 |0 |
-ROW |82950 |1129 |30570 |2 |3 |A54F10|0 |2 |0 |
-ROW |82951 |1143 |30714 |0 |0 |1A7C11|0 |2 |0 |
-ROW |82952 |1143 |30716 |0 |1 |2774A4|0 |2 |0 |
-ROW |82953 |1143 |30717 |0 |2 |F63100|0 |2 |0 |
-ROW |82954 |1143 |30715 |0 |3 |A54F10|0 |2 |0 |
-ROW |82955 |1144 |30753 |0 |0 |1A7C11|0 |2 |0 |
-ROW |82956 |1144 |30738 |0 |1 |2774A4|0 |2 |0 |
-ROW |82957 |1145 |30718 |0 |0 |1A7C11|0 |2 |0 |
-ROW |82958 |1145 |30737 |0 |1 |2774A4|0 |2 |0 |
-ROW |82959 |1145 |30727 |0 |2 |F63100|0 |2 |0 |
-ROW |82960 |1145 |30729 |0 |3 |A54F10|0 |2 |0 |
-ROW |82961 |1146 |30730 |0 |0 |1A7C11|0 |2 |0 |
-ROW |82962 |1146 |30732 |0 |1 |2774A4|0 |2 |0 |
-ROW |82963 |1146 |30731 |0 |2 |F63100|0 |2 |0 |
-ROW |82964 |1146 |30733 |0 |3 |A54F10|0 |2 |0 |
-ROW |82965 |1147 |30734 |0 |0 |1A7C11|0 |2 |0 |
-ROW |82966 |1147 |30736 |0 |1 |2774A4|0 |2 |0 |
-ROW |82967 |1147 |30735 |0 |2 |F63100|0 |2 |0 |
-ROW |82968 |1147 |30758 |0 |3 |A54F10|0 |2 |0 |
-ROW |82969 |1148 |30711 |0 |0 |1A7C11|0 |2 |0 |
-ROW |82970 |1148 |30706 |0 |1 |2774A4|0 |2 |0 |
-ROW |82971 |1148 |30710 |0 |2 |F63100|0 |2 |0 |
-ROW |82972 |1148 |30712 |0 |3 |A54F10|0 |2 |0 |
-ROW |82973 |1148 |30702 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |82974 |1148 |30707 |0 |5 |6C59DC|0 |2 |0 |
-ROW |82975 |1148 |30704 |0 |6 |AC8C14|0 |2 |0 |
-ROW |82976 |1177 |30927 |5 |0 |1A7C11|0 |2 |0 |
-ROW |82977 |1177 |30944 |2 |1 |2774A4|0 |2 |0 |
-ROW |82978 |1178 |30935 |0 |0 |1A7C11|0 |2 |0 |
-ROW |82979 |1178 |30942 |0 |1 |2774A4|0 |2 |0 |
-ROW |82980 |1179 |30949 |0 |0 |1A7C11|0 |2 |0 |
-ROW |82981 |1179 |30950 |0 |1 |2774A4|0 |2 |0 |
-ROW |82982 |1179 |30951 |0 |2 |F63100|0 |2 |0 |
-ROW |82983 |1180 |30952 |0 |0 |1A7C11|0 |2 |0 |
-ROW |82984 |1180 |30954 |0 |1 |2774A4|0 |2 |0 |
-ROW |82985 |1180 |30955 |0 |2 |F63100|0 |2 |0 |
-ROW |82986 |1181 |30936 |5 |0 |1A7C11|0 |2 |0 |
-ROW |82987 |1181 |30940 |5 |1 |2774A4|0 |2 |0 |
-ROW |82988 |1182 |30930 |0 |0 |1A7C11|0 |2 |0 |
-ROW |82989 |1182 |30929 |0 |1 |2774A4|0 |2 |0 |
-ROW |82990 |1182 |30928 |0 |2 |F63100|0 |2 |0 |
-ROW |82991 |1182 |30931 |2 |3 |A54F10|1 |2 |0 |
-ROW |82992 |1183 |30934 |0 |0 |1A7C11|0 |2 |0 |
-ROW |82993 |1183 |30941 |0 |1 |2774A4|0 |2 |0 |
-ROW |82994 |1406 |32532 |0 |0 |1A7C11|1 |2 |0 |
-ROW |82995 |1406 |32535 |0 |1 |2774A4|1 |2 |0 |
-ROW |82996 |1406 |32533 |0 |2 |F63100|0 |2 |0 |
-ROW |82997 |1406 |32534 |0 |3 |A54F10|0 |2 |0 |
-ROW |82998 |1406 |32536 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |82999 |1406 |32537 |0 |5 |6C59DC|0 |2 |0 |
-ROW |83000 |1407 |32543 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83001 |1407 |32544 |0 |1 |2774A4|0 |2 |0 |
-ROW |83002 |1408 |32518 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83003 |1408 |32521 |0 |1 |2774A4|0 |2 |0 |
-ROW |83004 |1408 |32523 |0 |2 |F63100|0 |2 |0 |
-ROW |83005 |1408 |32524 |0 |3 |A54F10|0 |2 |0 |
-ROW |83006 |1409 |32562 |0 |0 |1A7C11|1 |2 |0 |
-ROW |83007 |1409 |32565 |0 |1 |2774A4|1 |2 |0 |
-ROW |83008 |1409 |32563 |0 |2 |F63100|0 |2 |0 |
-ROW |83009 |1409 |32564 |0 |3 |A54F10|0 |2 |0 |
-ROW |83010 |1409 |32566 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |83011 |1409 |32567 |0 |5 |6C59DC|0 |2 |0 |
-ROW |83012 |1410 |32573 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83013 |1410 |32574 |0 |1 |2774A4|0 |2 |0 |
-ROW |83014 |1411 |32548 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83015 |1411 |32551 |0 |1 |2774A4|0 |2 |0 |
-ROW |83016 |1411 |32553 |0 |2 |F63100|0 |2 |0 |
-ROW |83017 |1411 |32554 |0 |3 |A54F10|0 |2 |0 |
-ROW |83018 |1250 |31527 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83019 |1250 |31529 |0 |1 |2774A4|0 |2 |0 |
-ROW |83020 |1250 |31499 |0 |2 |F63100|0 |2 |0 |
-ROW |83021 |1251 |31532 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83022 |1251 |31534 |0 |1 |2774A4|0 |2 |0 |
-ROW |83023 |1251 |31538 |0 |2 |F63100|0 |2 |0 |
-ROW |83024 |1251 |31536 |0 |3 |A54F10|0 |2 |0 |
-ROW |83025 |1251 |31528 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |83026 |1251 |31542 |0 |5 |6C59DC|0 |2 |0 |
-ROW |83027 |1252 |31552 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83028 |1252 |31551 |0 |1 |2774A4|0 |2 |0 |
-ROW |83029 |1252 |31541 |0 |2 |F63100|0 |2 |0 |
-ROW |83030 |1253 |31513 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83031 |1253 |31526 |0 |1 |2774A4|0 |2 |0 |
-ROW |83032 |1253 |31525 |0 |2 |F63100|0 |2 |0 |
-ROW |83033 |1254 |31502 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83034 |1254 |31501 |0 |1 |2774A4|0 |2 |0 |
-ROW |83035 |1254 |31503 |0 |2 |F63100|0 |2 |0 |
-ROW |83036 |1255 |31505 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83037 |1255 |31504 |0 |1 |2774A4|0 |2 |0 |
-ROW |83038 |1255 |31506 |0 |2 |F63100|0 |2 |0 |
-ROW |83039 |1256 |31508 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83040 |1256 |31507 |0 |1 |2774A4|0 |2 |0 |
-ROW |83041 |1256 |31509 |0 |2 |F63100|0 |2 |0 |
-ROW |83042 |1257 |31511 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83043 |1257 |31510 |0 |1 |2774A4|0 |2 |0 |
-ROW |83044 |1257 |31500 |0 |2 |F63100|0 |2 |0 |
-ROW |83045 |1258 |31514 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83046 |1258 |31512 |0 |1 |2774A4|0 |2 |0 |
-ROW |83047 |1258 |31515 |0 |2 |F63100|0 |2 |0 |
-ROW |83048 |1259 |31516 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83049 |1259 |31517 |0 |1 |2774A4|0 |2 |0 |
-ROW |83050 |1260 |31523 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83051 |1260 |31522 |0 |1 |2774A4|0 |2 |0 |
-ROW |83052 |1260 |31524 |0 |2 |F63100|0 |2 |0 |
-ROW |83053 |1412 |32601 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83054 |1412 |32602 |0 |1 |2774A4|0 |2 |0 |
-ROW |83055 |1412 |32603 |0 |2 |F63100|0 |2 |0 |
-ROW |83056 |1412 |32604 |0 |3 |A54F10|0 |2 |0 |
-ROW |83057 |1412 |32606 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |83058 |1412 |32606 |2 |5 |6C59DC|0 |2 |0 |
-ROW |83059 |1413 |32608 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83060 |1413 |32610 |0 |1 |2774A4|0 |2 |0 |
-ROW |83061 |1413 |32611 |0 |2 |F63100|0 |2 |0 |
-ROW |83062 |1414 |32582 |2 |0 |1A7C11|0 |2 |0 |
-ROW |83063 |1414 |32580 |2 |1 |2774A4|0 |2 |0 |
-ROW |83064 |1414 |32581 |2 |2 |F63100|0 |2 |0 |
-ROW |83065 |1414 |32597 |0 |3 |A54F10|1 |2 |0 |
-ROW |83066 |1414 |32599 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |83067 |1414 |32588 |0 |5 |6C59DC|1 |2 |0 |
-ROW |83068 |1415 |32583 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83069 |1415 |32584 |0 |1 |2774A4|0 |2 |0 |
-ROW |83070 |1415 |32585 |0 |2 |F63100|0 |2 |0 |
-ROW |83071 |1415 |32579 |2 |3 |A54F10|0 |2 |0 |
-ROW |83072 |1416 |32587 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83073 |1416 |32590 |0 |1 |2774A4|0 |2 |0 |
-ROW |83074 |1416 |32589 |0 |2 |F63100|0 |2 |0 |
-ROW |83075 |1417 |32673 |1 |0 |1A7C11|0 |2 |0 |
-ROW |83076 |1417 |32679 |1 |1 |2774A4|0 |2 |0 |
-ROW |83077 |1792 |36679 |5 |0 |1A7C11|0 |2 |0 |
-ROW |83078 |1792 |36678 |5 |1 |2774A4|0 |2 |0 |
-ROW |83079 |1075 |30204 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83080 |1075 |30205 |0 |1 |2774A4|0 |2 |0 |
-ROW |83081 |1793 |36677 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83082 |1793 |36676 |0 |1 |2774A4|0 |2 |0 |
-ROW |83083 |1793 |36675 |0 |2 |F63100|0 |2 |0 |
-ROW |83084 |1793 |36673 |0 |3 |A54F10|0 |2 |0 |
-ROW |83085 |1793 |36670 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |83086 |1076 |30209 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83087 |1076 |30208 |0 |1 |2774A4|0 |2 |0 |
-ROW |83088 |1077 |30206 |5 |0 |1A7C11|0 |2 |0 |
-ROW |83089 |1077 |30207 |5 |1 |2774A4|0 |2 |0 |
-ROW |83090 |1078 |30216 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83091 |1078 |30215 |0 |1 |2774A4|0 |2 |0 |
-ROW |83092 |1079 |30210 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83093 |1079 |30211 |0 |1 |2774A4|0 |2 |0 |
-ROW |83094 |1079 |30212 |0 |2 |F63100|0 |2 |0 |
-ROW |83095 |1079 |30213 |0 |3 |A54F10|0 |2 |0 |
-ROW |83096 |1079 |30214 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |83097 |1794 |36692 |5 |0 |1A7C11|0 |2 |0 |
-ROW |83098 |1794 |36691 |5 |1 |2774A4|0 |2 |0 |
-ROW |83099 |1795 |36689 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83100 |1795 |36688 |0 |1 |2774A4|0 |2 |0 |
-ROW |83101 |1795 |36687 |0 |2 |F63100|0 |2 |0 |
-ROW |83102 |1795 |30222 |0 |3 |A54F10|0 |2 |0 |
-ROW |83103 |1795 |30223 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |83104 |1080 |30226 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83105 |1080 |30225 |0 |1 |2774A4|0 |2 |0 |
-ROW |83106 |1796 |36704 |5 |0 |1A7C11|0 |2 |0 |
-ROW |83107 |1796 |36703 |5 |1 |2774A4|0 |2 |0 |
-ROW |83108 |1081 |30247 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83109 |1081 |30248 |0 |1 |2774A4|0 |2 |0 |
-ROW |83110 |1797 |36702 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83111 |1797 |36701 |0 |1 |2774A4|0 |2 |0 |
-ROW |83112 |1797 |36700 |0 |2 |F63100|0 |2 |0 |
-ROW |83113 |1797 |36698 |0 |3 |A54F10|0 |2 |0 |
-ROW |83114 |1797 |36695 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |83115 |1082 |30252 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83116 |1082 |30251 |0 |1 |2774A4|0 |2 |0 |
-ROW |83117 |1083 |30249 |5 |0 |1A7C11|0 |2 |0 |
-ROW |83118 |1083 |30250 |5 |1 |2774A4|0 |2 |0 |
-ROW |83119 |1084 |30259 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83120 |1084 |30258 |0 |1 |2774A4|0 |2 |0 |
-ROW |83121 |1085 |30253 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83122 |1085 |30254 |0 |1 |2774A4|0 |2 |0 |
-ROW |83123 |1085 |30255 |0 |2 |F63100|0 |2 |0 |
-ROW |83124 |1085 |30256 |0 |3 |A54F10|0 |2 |0 |
-ROW |83125 |1085 |30257 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |83126 |1798 |36717 |5 |0 |1A7C11|0 |2 |0 |
-ROW |83127 |1798 |36716 |5 |1 |2774A4|0 |2 |0 |
-ROW |83128 |1799 |36714 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83129 |1799 |36713 |0 |1 |2774A4|0 |2 |0 |
-ROW |83130 |1799 |36712 |0 |2 |F63100|0 |2 |0 |
-ROW |83131 |1799 |30265 |0 |3 |A54F10|0 |2 |0 |
-ROW |83132 |1799 |30266 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |83133 |1086 |30269 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83134 |1086 |30268 |0 |1 |2774A4|0 |2 |0 |
-ROW |83135 |1184 |30982 |5 |0 |1A7C11|0 |2 |0 |
-ROW |83136 |1184 |30980 |5 |1 |2774A4|0 |2 |0 |
-ROW |83137 |1185 |30983 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83138 |1185 |30981 |0 |1 |2774A4|0 |2 |0 |
-ROW |83139 |1186 |30976 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83140 |1186 |30985 |0 |1 |2774A4|0 |2 |0 |
-ROW |83141 |1186 |30997 |0 |2 |F63100|0 |2 |0 |
-ROW |83142 |1186 |30970 |0 |3 |A54F10|0 |2 |0 |
-ROW |83143 |1186 |30973 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |83144 |1186 |30995 |0 |5 |6C59DC|0 |2 |0 |
-ROW |83145 |1186 |30998 |0 |6 |AC8C14|0 |2 |0 |
-ROW |83146 |1186 |30978 |0 |7 |611F27|0 |2 |0 |
-ROW |83147 |1187 |31024 |5 |0 |1A7C11|0 |2 |0 |
-ROW |83148 |1187 |31022 |5 |1 |2774A4|0 |2 |0 |
-ROW |83149 |1188 |31025 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83150 |1188 |31023 |0 |1 |2774A4|0 |2 |0 |
-ROW |83151 |1189 |31018 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83152 |1189 |31027 |0 |1 |2774A4|0 |2 |0 |
-ROW |83153 |1189 |31039 |0 |2 |F63100|0 |2 |0 |
-ROW |83154 |1189 |31012 |0 |3 |A54F10|0 |2 |0 |
-ROW |83155 |1189 |31015 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |83156 |1189 |31037 |0 |5 |6C59DC|0 |2 |0 |
-ROW |83157 |1189 |31040 |0 |6 |AC8C14|0 |2 |0 |
-ROW |83158 |1189 |31020 |0 |7 |611F27|0 |2 |0 |
-ROW |83159 |1499 |33478 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83160 |1499 |33467 |0 |1 |2774A4|0 |2 |0 |
-ROW |83161 |1500 |33468 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83162 |1500 |33479 |0 |1 |2774A4|0 |2 |0 |
-ROW |83163 |1501 |33442 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83164 |1501 |33441 |0 |1 |2774A4|0 |2 |0 |
-ROW |83165 |1501 |33440 |0 |2 |F63100|0 |2 |0 |
-ROW |83166 |1502 |33423 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83167 |1502 |33419 |0 |1 |2774A4|0 |2 |0 |
-ROW |83168 |1502 |33422 |0 |2 |F63100|0 |2 |0 |
-ROW |83169 |1502 |33421 |0 |3 |A54F10|0 |2 |0 |
-ROW |83170 |1502 |33412 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |83171 |1418 |32700 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83172 |1418 |32699 |0 |1 |2774A4|0 |2 |0 |
-ROW |83173 |1419 |32710 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83174 |1419 |32709 |0 |1 |2774A4|0 |2 |0 |
-ROW |83175 |1420 |32693 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83176 |1420 |32724 |0 |1 |2774A4|0 |2 |0 |
-ROW |83177 |1421 |32730 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83178 |1421 |32731 |0 |1 |2774A4|0 |2 |0 |
-ROW |83179 |1421 |32728 |0 |2 |F63100|0 |2 |0 |
-ROW |83180 |1421 |32729 |0 |3 |A54F10|0 |2 |0 |
-ROW |83181 |1422 |32705 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83182 |1422 |32706 |0 |1 |2774A4|0 |2 |0 |
-ROW |83183 |1423 |32702 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83184 |1423 |32703 |0 |1 |2774A4|0 |2 |0 |
-ROW |83185 |1424 |32708 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83186 |1424 |32722 |2 |1 |2774A4|0 |2 |0 |
-ROW |83187 |1424 |32695 |0 |2 |F63100|0 |2 |0 |
-ROW |83188 |1424 |32753 |0 |3 |A54F10|0 |2 |0 |
-ROW |83189 |1424 |32740 |2 |4 |FC6EA3|0 |2 |0 |
-ROW |83190 |1424 |32723 |0 |5 |6C59DC|0 |2 |0 |
-ROW |83191 |1424 |32747 |0 |6 |AC8C14|0 |2 |0 |
-ROW |83192 |1424 |32748 |2 |7 |611F27|0 |2 |0 |
-ROW |83193 |1424 |32749 |0 |8 |F230E0|0 |2 |0 |
-ROW |83194 |1424 |32750 |0 |9 |FFAD40|0 |2 |0 |
-ROW |83195 |1424 |32751 |2 |10 |40CDFF|0 |2 |0 |
-ROW |83196 |1424 |32752 |0 |11 |40FFA0|0 |2 |0 |
-ROW |83197 |1425 |32746 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83198 |1425 |32745 |2 |1 |2774A4|0 |2 |0 |
-ROW |83199 |1425 |32744 |0 |2 |F63100|0 |2 |0 |
-ROW |83200 |1425 |32743 |0 |3 |A54F10|0 |2 |0 |
-ROW |83201 |1425 |32743 |2 |4 |FC6EA3|0 |2 |0 |
-ROW |83202 |1425 |32742 |0 |5 |6C59DC|0 |2 |0 |
-ROW |83203 |1426 |32720 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83204 |1426 |32721 |0 |1 |2774A4|0 |2 |0 |
-ROW |83205 |1426 |32719 |0 |2 |F63100|0 |2 |0 |
-ROW |83206 |1426 |32718 |0 |3 |A54F10|0 |2 |0 |
-ROW |83207 |1130 |30613 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83208 |1130 |30635 |0 |1 |2774A4|0 |2 |0 |
-ROW |83209 |1130 |30625 |0 |2 |F63100|0 |2 |0 |
-ROW |83210 |1131 |30632 |5 |0 |1A7C11|0 |2 |0 |
-ROW |83211 |1131 |30633 |5 |1 |2774A4|0 |2 |0 |
-ROW |83212 |1131 |30629 |5 |2 |F63100|0 |2 |0 |
-ROW |83213 |1132 |30630 |2 |0 |1A7C11|0 |2 |0 |
-ROW |83214 |1132 |30628 |2 |1 |2774A4|0 |2 |0 |
-ROW |83215 |1132 |30631 |2 |2 |F63100|0 |2 |0 |
-ROW |83216 |1133 |30619 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83217 |1133 |30618 |0 |1 |2774A4|0 |2 |0 |
-ROW |83218 |1134 |30623 |5 |0 |1A7C11|0 |2 |0 |
-ROW |83219 |1134 |30622 |5 |1 |2774A4|0 |2 |0 |
-ROW |83220 |1135 |30615 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83221 |841 |28813 |2 |0 |1A7C11|0 |2 |0 |
-ROW |83222 |841 |28811 |0 |1 |2774A4|0 |2 |0 |
-ROW |83223 |841 |28812 |0 |2 |F63100|0 |2 |0 |
-ROW |83224 |841 |28814 |0 |3 |A54F10|0 |2 |0 |
-ROW |83225 |842 |28817 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83226 |842 |28815 |0 |1 |2774A4|0 |2 |0 |
-ROW |83227 |842 |28816 |0 |2 |F63100|0 |2 |0 |
-ROW |83228 |844 |28808 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83229 |844 |28807 |0 |1 |2774A4|0 |2 |0 |
-ROW |83230 |843 |28818 |5 |0 |1A7C11|0 |2 |0 |
-ROW |83231 |845 |28829 |2 |0 |1A7C11|0 |2 |0 |
-ROW |83232 |845 |28831 |0 |1 |2774A4|0 |2 |0 |
-ROW |83233 |845 |28832 |0 |2 |F63100|0 |2 |0 |
-ROW |83234 |845 |28830 |0 |3 |A54F10|0 |2 |0 |
-ROW |83235 |846 |28826 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83236 |846 |28828 |0 |1 |2774A4|0 |2 |0 |
-ROW |83237 |846 |28827 |0 |2 |F63100|0 |2 |0 |
-ROW |83238 |847 |28825 |5 |0 |1A7C11|0 |2 |0 |
-ROW |83239 |1622 |35098 |5 |0 |1A7C11|0 |2 |0 |
-ROW |83240 |1623 |35100 |5 |0 |1A7C11|0 |2 |0 |
-ROW |83241 |1623 |35099 |5 |1 |2774A4|0 |2 |0 |
-ROW |83242 |1623 |35101 |5 |2 |F63100|0 |2 |0 |
-ROW |83243 |1623 |35102 |5 |3 |A54F10|0 |2 |0 |
-ROW |83244 |1623 |35103 |5 |4 |FC6EA3|0 |2 |0 |
-ROW |83245 |1624 |35109 |5 |0 |1A7C11|0 |2 |0 |
-ROW |83246 |1625 |35111 |5 |0 |1A7C11|0 |2 |0 |
-ROW |83247 |1625 |35110 |5 |1 |2774A4|0 |2 |0 |
-ROW |83248 |1625 |35112 |5 |2 |F63100|0 |2 |0 |
-ROW |83249 |1625 |35113 |5 |3 |A54F10|0 |2 |0 |
-ROW |83250 |1625 |35114 |5 |4 |FC6EA3|0 |2 |0 |
-ROW |83251 |1626 |35132 |5 |0 |1A7C11|0 |2 |0 |
-ROW |83252 |1626 |35131 |5 |1 |2774A4|0 |2 |0 |
-ROW |83253 |1626 |35130 |5 |2 |F63100|0 |2 |0 |
-ROW |83254 |1627 |35125 |5 |0 |1A7C11|0 |2 |0 |
-ROW |83255 |1627 |35127 |5 |1 |2774A4|0 |2 |0 |
-ROW |83256 |1627 |35118 |5 |2 |F63100|0 |2 |0 |
-ROW |83257 |1627 |35124 |5 |3 |A54F10|0 |2 |0 |
-ROW |83258 |1627 |35123 |5 |4 |FC6EA3|0 |2 |0 |
-ROW |83259 |1628 |35139 |5 |0 |1A7C11|0 |2 |0 |
-ROW |83260 |1628 |35140 |5 |1 |2774A4|0 |2 |0 |
-ROW |83261 |1628 |35138 |5 |2 |F63100|0 |2 |0 |
-ROW |83262 |1629 |35142 |5 |0 |1A7C11|0 |2 |0 |
-ROW |83263 |1629 |35141 |5 |1 |2774A4|0 |2 |0 |
-ROW |83264 |1629 |35146 |5 |2 |F63100|0 |2 |0 |
-ROW |83265 |1629 |35144 |5 |3 |A54F10|0 |2 |0 |
-ROW |83266 |1629 |35143 |5 |4 |FC6EA3|0 |2 |0 |
-ROW |83267 |1629 |35145 |5 |5 |6C59DC|0 |2 |0 |
-ROW |83268 |1629 |35147 |5 |6 |AC8C14|0 |2 |0 |
-ROW |83269 |1629 |35148 |5 |7 |611F27|0 |2 |0 |
-ROW |83270 |1630 |35154 |5 |0 |1A7C11|0 |2 |0 |
-ROW |83271 |1630 |35155 |5 |1 |2774A4|0 |2 |0 |
-ROW |83272 |1630 |35156 |5 |2 |F63100|0 |2 |0 |
-ROW |83273 |1631 |35163 |5 |0 |1A7C11|0 |2 |0 |
-ROW |83274 |1631 |35164 |5 |1 |2774A4|0 |2 |0 |
-ROW |83275 |1631 |35165 |5 |2 |F63100|0 |2 |0 |
-ROW |83276 |1632 |35083 |5 |0 |1A7C11|0 |2 |0 |
-ROW |83277 |1632 |35079 |5 |1 |2774A4|0 |2 |0 |
-ROW |83278 |1632 |35075 |5 |2 |F63100|0 |2 |0 |
-ROW |83279 |1632 |35074 |5 |3 |A54F10|0 |2 |0 |
-ROW |83280 |1633 |35081 |5 |0 |1A7C11|0 |2 |0 |
-ROW |83281 |1634 |35078 |5 |0 |1A7C11|0 |2 |0 |
-ROW |83282 |1634 |35077 |5 |1 |2774A4|0 |2 |0 |
-ROW |83283 |1634 |35076 |5 |2 |F63100|0 |2 |0 |
-ROW |83284 |1635 |35087 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83285 |1262 |31592 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83286 |1262 |31584 |0 |1 |2774A4|0 |2 |0 |
-ROW |83287 |1262 |31582 |0 |2 |F63100|0 |2 |0 |
-ROW |83288 |1262 |31585 |0 |3 |A54F10|0 |2 |0 |
-ROW |83289 |1263 |31591 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83290 |1263 |31583 |0 |1 |2774A4|0 |2 |0 |
-ROW |83291 |1263 |31590 |0 |2 |F63100|0 |2 |0 |
-ROW |83292 |1264 |31602 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83293 |1264 |31597 |0 |1 |2774A4|0 |2 |0 |
-ROW |83294 |1264 |31601 |0 |2 |F63100|0 |2 |0 |
-ROW |83295 |1264 |31604 |0 |3 |A54F10|0 |2 |0 |
-ROW |83296 |1265 |31609 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83297 |1265 |31610 |0 |1 |2774A4|0 |2 |0 |
-ROW |83298 |1265 |31608 |0 |2 |F63100|0 |2 |0 |
-ROW |83299 |1001 |29729 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83300 |1001 |29728 |0 |1 |2774A4|0 |2 |0 |
-ROW |83301 |1001 |29727 |0 |2 |F63100|0 |2 |0 |
-ROW |83302 |1001 |29725 |0 |3 |A54F10|0 |2 |0 |
-ROW |83303 |1001 |29723 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |83304 |1001 |29733 |0 |5 |6C59DC|0 |2 |0 |
-ROW |83305 |1001 |29737 |0 |6 |AC8C14|0 |2 |0 |
-ROW |83306 |1001 |29731 |0 |7 |611F27|0 |2 |0 |
-ROW |83307 |1000 |29720 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83308 |1000 |29730 |0 |1 |2774A4|0 |2 |0 |
-ROW |83309 |1000 |29721 |0 |2 |F63100|0 |2 |0 |
-ROW |83310 |1000 |29726 |0 |3 |A54F10|0 |2 |0 |
-ROW |83311 |1000 |29724 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |83312 |1000 |29734 |0 |5 |6C59DC|0 |2 |0 |
-ROW |83313 |1000 |29722 |0 |6 |AC8C14|0 |2 |0 |
-ROW |83314 |1000 |29732 |0 |7 |611F27|0 |2 |0 |
-ROW |83315 |1027 |30022 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83316 |1027 |30021 |0 |1 |2774A4|0 |2 |0 |
-ROW |83317 |1027 |30019 |0 |2 |F63100|0 |2 |0 |
-ROW |83318 |1008 |29698 |5 |0 |1A7C11|0 |2 |0 |
-ROW |83319 |1008 |29700 |2 |1 |FF0000|0 |2 |0 |
-ROW |83320 |1007 |29691 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83321 |1013 |29657 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83322 |1013 |29658 |0 |1 |2774A4|0 |2 |0 |
-ROW |83323 |1009 |29687 |5 |0 |1A7C11|0 |2 |0 |
-ROW |83324 |1009 |29694 |2 |1 |FF0000|0 |2 |0 |
-ROW |83325 |1029 |30017 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83326 |1029 |30016 |0 |1 |2774A4|0 |2 |0 |
-ROW |83327 |1029 |30015 |0 |2 |F63100|0 |2 |0 |
-ROW |83328 |1031 |30007 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83329 |1031 |30013 |0 |1 |2774A4|0 |2 |0 |
-ROW |83330 |1031 |30011 |0 |2 |F63100|0 |2 |0 |
-ROW |83331 |1031 |30009 |0 |3 |A54F10|0 |2 |0 |
-ROW |83332 |1031 |30005 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |83333 |1031 |30003 |0 |5 |6C59DC|0 |2 |0 |
-ROW |83334 |1031 |30023 |0 |6 |AC8C14|0 |2 |0 |
-ROW |83335 |1031 |30001 |0 |7 |611F27|0 |2 |0 |
-ROW |83336 |1030 |30008 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83337 |1030 |30014 |0 |1 |2774A4|0 |2 |0 |
-ROW |83338 |1030 |30012 |0 |2 |F63100|0 |2 |0 |
-ROW |83339 |1030 |30010 |0 |3 |A54F10|0 |2 |0 |
-ROW |83340 |1030 |30006 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |83341 |1030 |30004 |0 |5 |6C59DC|0 |2 |0 |
-ROW |83342 |1030 |30000 |0 |6 |AC8C14|0 |2 |0 |
-ROW |83343 |1030 |30002 |0 |7 |611F27|0 |2 |0 |
-ROW |83344 |1011 |29695 |2 |0 |1A7C11|0 |2 |0 |
-ROW |83345 |1028 |30020 |5 |0 |1A7C11|0 |2 |0 |
-ROW |83346 |1010 |29701 |5 |0 |1A7C11|0 |2 |0 |
-ROW |83347 |1010 |29697 |0 |1 |2774A4|0 |2 |0 |
-ROW |83348 |1012 |29692 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83349 |1015 |29812 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83350 |1015 |29811 |0 |1 |2774A4|0 |2 |0 |
-ROW |83351 |1015 |29810 |0 |2 |F63100|0 |2 |0 |
-ROW |83352 |1015 |29808 |0 |3 |A54F10|0 |2 |0 |
-ROW |83353 |1015 |29806 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |83354 |1015 |29816 |0 |5 |6C59DC|0 |2 |0 |
-ROW |83355 |1015 |29820 |0 |6 |AC8C14|0 |2 |0 |
-ROW |83356 |1015 |29814 |0 |7 |611F27|0 |2 |0 |
-ROW |83357 |1014 |29803 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83358 |1014 |29813 |0 |1 |2774A4|0 |2 |0 |
-ROW |83359 |1014 |29804 |0 |2 |F63100|0 |2 |0 |
-ROW |83360 |1014 |29809 |0 |3 |A54F10|0 |2 |0 |
-ROW |83361 |1014 |29807 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |83362 |1014 |29817 |0 |5 |6C59DC|0 |2 |0 |
-ROW |83363 |1014 |29805 |0 |6 |AC8C14|0 |2 |0 |
-ROW |83364 |1014 |29815 |0 |7 |611F27|0 |2 |0 |
-ROW |83365 |1016 |29768 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83366 |1016 |29767 |0 |1 |2774A4|0 |2 |0 |
-ROW |83367 |1016 |29765 |0 |2 |F63100|0 |2 |0 |
-ROW |83368 |1022 |29782 |5 |0 |1A7C11|0 |2 |0 |
-ROW |83369 |1022 |29781 |2 |1 |FF0000|0 |2 |0 |
-ROW |83370 |1021 |29783 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83371 |1023 |29780 |5 |0 |1A7C11|0 |2 |0 |
-ROW |83372 |1023 |29784 |2 |1 |FF0000|0 |2 |0 |
-ROW |83373 |1018 |29763 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83374 |1018 |29762 |0 |1 |2774A4|0 |2 |0 |
-ROW |83375 |1018 |29761 |0 |2 |F63100|0 |2 |0 |
-ROW |83376 |1020 |29753 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83377 |1020 |29759 |0 |1 |2774A4|0 |2 |0 |
-ROW |83378 |1020 |29757 |0 |2 |F63100|0 |2 |0 |
-ROW |83379 |1020 |29755 |0 |3 |A54F10|0 |2 |0 |
-ROW |83380 |1020 |29751 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |83381 |1020 |29749 |0 |5 |6C59DC|0 |2 |0 |
-ROW |83382 |1020 |29769 |0 |6 |AC8C14|0 |2 |0 |
-ROW |83383 |1020 |29747 |0 |7 |611F27|0 |2 |0 |
-ROW |83384 |1019 |29754 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83385 |1019 |29760 |0 |1 |2774A4|0 |2 |0 |
-ROW |83386 |1019 |29758 |0 |2 |F63100|0 |2 |0 |
-ROW |83387 |1019 |29756 |0 |3 |A54F10|0 |2 |0 |
-ROW |83388 |1019 |29752 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |83389 |1019 |29750 |0 |5 |6C59DC|0 |2 |0 |
-ROW |83390 |1019 |29746 |0 |6 |AC8C14|0 |2 |0 |
-ROW |83391 |1019 |29748 |0 |7 |611F27|0 |2 |0 |
-ROW |83392 |1025 |29775 |2 |0 |1A7C11|0 |2 |0 |
-ROW |83393 |1017 |29766 |5 |0 |1A7C11|0 |2 |0 |
-ROW |83394 |1024 |29776 |5 |0 |1A7C11|0 |2 |0 |
-ROW |83395 |1024 |29777 |0 |1 |2774A4|0 |2 |0 |
-ROW |83396 |1026 |29772 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83397 |1356 |32276 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83398 |1356 |32275 |0 |1 |2774A4|0 |2 |0 |
-ROW |83399 |1357 |32281 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83400 |1357 |32267 |0 |1 |2774A4|0 |2 |0 |
-ROW |83401 |1357 |32279 |0 |2 |F63100|0 |2 |0 |
-ROW |83402 |1358 |32268 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83403 |1358 |32274 |0 |1 |2774A4|0 |2 |0 |
-ROW |83404 |1358 |32271 |0 |2 |F63100|0 |2 |0 |
-ROW |83405 |1359 |32288 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83406 |1359 |32291 |0 |1 |2774A4|0 |2 |0 |
-ROW |83407 |1360 |32247 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83408 |1360 |32245 |0 |1 |2774A4|0 |2 |0 |
-ROW |83409 |1360 |32246 |0 |2 |F63100|0 |2 |0 |
-ROW |83410 |1361 |32248 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83411 |1361 |32249 |0 |1 |2774A4|0 |2 |0 |
-ROW |83412 |1361 |32250 |0 |2 |F63100|0 |2 |0 |
-ROW |83413 |1362 |32240 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83414 |1362 |32273 |0 |1 |2774A4|0 |2 |0 |
-ROW |83415 |1363 |32282 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83416 |1363 |32283 |0 |1 |2774A4|0 |2 |0 |
-ROW |83417 |1363 |32289 |0 |2 |F63100|0 |2 |0 |
-ROW |83418 |1363 |32290 |0 |3 |A54F10|0 |2 |0 |
-ROW |83419 |1363 |32286 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |83420 |1363 |32287 |0 |5 |6C59DC|0 |2 |0 |
-ROW |83421 |1363 |32241 |0 |6 |AC8C14|0 |2 |0 |
-ROW |83422 |1363 |32242 |0 |7 |611F27|0 |2 |0 |
-ROW |83423 |1363 |32243 |0 |8 |F230E0|0 |2 |0 |
-ROW |83424 |1363 |32244 |0 |9 |FFAD40|0 |2 |0 |
-ROW |83425 |1363 |32277 |0 |10 |40CDFF|0 |2 |0 |
-ROW |83426 |1363 |32278 |0 |11 |40FFA0|0 |2 |0 |
-ROW |83427 |1427 |32768 |5 |0 |1A7C11|0 |2 |0 |
-ROW |83428 |1427 |32767 |5 |1 |2774A4|0 |2 |0 |
-ROW |83429 |1428 |32774 |5 |0 |1A7C11|0 |2 |0 |
-ROW |83430 |1428 |32772 |5 |1 |2774A4|0 |2 |0 |
-ROW |83431 |1428 |32775 |5 |2 |F63100|0 |2 |0 |
-ROW |83432 |1428 |32773 |5 |3 |A54F10|0 |2 |0 |
-ROW |83433 |1429 |32779 |5 |0 |1A7C11|0 |2 |0 |
-ROW |83434 |1429 |32777 |5 |1 |2774A4|0 |2 |0 |
-ROW |83435 |1429 |32778 |5 |2 |F63100|0 |2 |0 |
-ROW |83436 |1806 |36779 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83437 |1806 |36780 |0 |1 |2774A4|0 |2 |0 |
-ROW |83438 |1806 |36781 |0 |2 |F63100|0 |2 |0 |
-ROW |83439 |1430 |32837 |2 |0 |1A7C11|0 |2 |0 |
-ROW |83440 |1430 |32836 |2 |1 |2774A4|0 |2 |0 |
-ROW |83441 |1430 |32835 |2 |2 |F63100|0 |2 |0 |
-ROW |83442 |1431 |32856 |5 |0 |1A7C11|0 |2 |0 |
-ROW |83443 |1432 |32828 |5 |0 |1A7C11|0 |2 |0 |
-ROW |83444 |1433 |32847 |5 |0 |34bdeb|0 |2 |0 |
-ROW |83445 |1434 |32797 |5 |0 |1A7C11|0 |2 |0 |
-ROW |83446 |1434 |32796 |5 |1 |2774A4|0 |2 |0 |
-ROW |83447 |1434 |32801 |2 |2 |F63100|0 |2 |0 |
-ROW |83448 |1435 |32834 |5 |0 |1A7C11|0 |2 |0 |
-ROW |83449 |1436 |32819 |5 |0 |1A7C11|0 |2 |0 |
-ROW |83450 |1437 |32826 |5 |0 |1A7C11|0 |2 |0 |
-ROW |83451 |1614 |34976 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83452 |1614 |34975 |0 |1 |2774A4|0 |2 |0 |
-ROW |83453 |1614 |34978 |0 |2 |F63100|0 |2 |0 |
-ROW |83454 |1614 |34979 |0 |3 |A54F10|0 |2 |0 |
-ROW |83455 |1614 |34980 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |83456 |1615 |34982 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83457 |1615 |34997 |0 |1 |2774A4|0 |2 |0 |
-ROW |83458 |1615 |35001 |0 |2 |F63100|0 |2 |0 |
-ROW |83459 |1615 |35000 |0 |3 |A54F10|0 |2 |0 |
-ROW |83460 |1615 |34998 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |83461 |1615 |34996 |0 |5 |6C59DC|0 |2 |0 |
-ROW |83462 |1616 |35015 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83463 |1616 |35014 |0 |1 |2774A4|0 |2 |0 |
-ROW |83464 |1617 |35012 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83465 |1617 |35013 |0 |1 |2774A4|0 |2 |0 |
-ROW |83466 |1618 |34951 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83467 |1618 |34952 |0 |1 |2774A4|0 |2 |0 |
-ROW |83468 |1618 |34953 |0 |2 |F63100|0 |2 |0 |
-ROW |83469 |1618 |34954 |0 |3 |A54F10|0 |2 |0 |
-ROW |83470 |1618 |34956 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |83471 |1618 |34950 |0 |5 |6C59DC|0 |2 |0 |
-ROW |83472 |1618 |34957 |0 |6 |AC8C14|0 |2 |0 |
-ROW |83473 |1618 |34959 |0 |7 |611F27|0 |2 |0 |
-ROW |83474 |1618 |34965 |0 |8 |F230E0|0 |2 |0 |
-ROW |83475 |1445 |22404 |0 |0 |990099|0 |2 |0 |
-ROW |83476 |1445 |22399 |0 |1 |990000|0 |2 |0 |
-ROW |83477 |1445 |22416 |0 |2 |0000EE|0 |2 |0 |
-ROW |83478 |1445 |25366 |0 |3 |FF33FF|0 |2 |0 |
-ROW |83479 |1445 |22418 |0 |4 |009600|0 |2 |0 |
-ROW |83480 |1445 |22402 |0 |5 |003300|0 |2 |0 |
-ROW |83481 |1445 |22400 |0 |6 |33FFFF|0 |2 |0 |
-ROW |83482 |1445 |22689 |0 |7 |DD0000|0 |2 |0 |
-ROW |83483 |1445 |23171 |0 |8 |000099|0 |2 |0 |
-ROW |83484 |1445 |22401 |0 |9 |00FF00|0 |2 |0 |
-ROW |83485 |1445 |33023 |0 |10 |5A2B57|0 |2 |0 |
-ROW |83486 |1636 |22406 |0 |0 |00EE00|0 |2 |0 |
-ROW |83487 |1636 |25665 |0 |1 |0000EE|0 |2 |0 |
-ROW |83488 |1636 |25666 |0 |2 |FFAA00|0 |2 |0 |
-ROW |83489 |1636 |28537 |0 |3 |00EEEE|0 |2 |0 |
-ROW |83490 |1636 |28535 |0 |4 |990099|0 |2 |0 |
-ROW |83491 |1638 |22426 |0 |0 |00EE00|0 |2 |0 |
-ROW |83492 |1638 |22408 |0 |1 |FFAA00|0 |2 |0 |
-ROW |83493 |1638 |22412 |0 |2 |990099|0 |2 |0 |
-ROW |83494 |1638 |22414 |0 |3 |FF66FF|0 |2 |0 |
-ROW |83495 |1638 |23663 |0 |4 |009999|0 |2 |0 |
-ROW |83496 |1638 |33022 |0 |5 |2B5429|0 |2 |0 |
-ROW |83497 |1638 |22430 |0 |6 |8048B4|0 |2 |0 |
-ROW |83498 |1638 |22420 |0 |7 |FD5434|0 |2 |0 |
-ROW |83499 |1640 |22422 |0 |0 |00EE00|0 |2 |0 |
-ROW |83500 |1640 |22424 |0 |1 |0000EE|0 |2 |0 |
-ROW |83501 |1640 |25370 |0 |2 |FFAA00|0 |2 |0 |
-ROW |83502 |1640 |29822 |0 |3 |00EEEE|0 |2 |0 |
-ROW |83503 |1640 |34317 |0 |4 |990099|0 |2 |0 |
-ROW |83504 |1640 |34316 |0 |5 |EE0000|0 |2 |0 |
-ROW |83505 |1642 |33021 |0 |0 |C80000|0 |2 |0 |
-ROW |83506 |1642 |33020 |0 |1 |00C800|0 |2 |0 |
-ROW |83507 |527 |22199 |0 |0 |C80000|0 |2 |0 |
-ROW |83508 |527 |22196 |0 |1 |00C800|0 |2 |0 |
-ROW |83509 |410 |22185 |0 |0 |009900|0 |2 |0 |
-ROW |83510 |410 |22189 |0 |1 |DD0000|0 |2 |0 |
-ROW |83511 |410 |22396 |0 |2 |00DDDD|0 |2 |0 |
-ROW |83512 |410 |22183 |0 |3 |3333FF|0 |2 |0 |
-ROW |83513 |410 |22191 |0 |4 |999900|0 |2 |0 |
-ROW |83514 |410 |23634 |0 |5 |00FF00|0 |2 |0 |
-ROW |83515 |404 |22404 |0 |0 |990099|0 |2 |0 |
-ROW |83516 |404 |22399 |0 |1 |990000|0 |2 |0 |
-ROW |83517 |404 |22416 |0 |2 |0000EE|0 |2 |0 |
-ROW |83518 |404 |22430 |0 |3 |FF33FF|0 |2 |0 |
-ROW |83519 |404 |22418 |0 |4 |009600|0 |2 |0 |
-ROW |83520 |404 |22402 |0 |5 |003300|0 |2 |0 |
-ROW |83521 |404 |22420 |0 |6 |CCCC00|0 |2 |0 |
-ROW |83522 |404 |22400 |0 |7 |33FFFF|0 |2 |0 |
-ROW |83523 |404 |22689 |0 |8 |DD0000|0 |2 |0 |
-ROW |83524 |404 |23171 |0 |9 |000099|0 |2 |0 |
-ROW |83525 |404 |22401 |0 |10 |00FF00|0 |2 |0 |
-ROW |83526 |404 |33023 |0 |11 |5A2B57|0 |2 |0 |
-ROW |83527 |406 |22426 |0 |0 |00EE00|0 |2 |0 |
-ROW |83528 |406 |22422 |0 |1 |0000EE|0 |2 |0 |
-ROW |83529 |406 |22408 |0 |2 |FFAA00|0 |2 |0 |
-ROW |83530 |406 |22424 |0 |3 |00EEEE|0 |2 |0 |
-ROW |83531 |406 |22412 |0 |4 |990099|0 |2 |0 |
-ROW |83532 |406 |22406 |0 |5 |EE0000|0 |2 |0 |
-ROW |83533 |406 |22414 |0 |6 |FF66FF|0 |2 |0 |
-ROW |83534 |406 |23663 |0 |7 |009999|0 |2 |0 |
-ROW |83535 |406 |25366 |0 |8 |BBBB00|0 |2 |0 |
-ROW |83536 |406 |25370 |0 |9 |AA0000|0 |2 |0 |
-ROW |83537 |406 |25665 |0 |10 |990000|0 |2 |0 |
-ROW |83538 |406 |25666 |0 |11 |008800|0 |2 |0 |
-ROW |83539 |406 |28535 |0 |12 |80B0E0|0 |2 |0 |
-ROW |83540 |406 |28537 |0 |13 |4080B0|0 |2 |0 |
-ROW |83541 |406 |29822 |0 |14 |8000FF|0 |2 |0 |
-ROW |83542 |406 |33022 |0 |15 |2B5429|0 |2 |0 |
-ROW |83543 |406 |34317 |0 |16 |8048B4|0 |2 |0 |
-ROW |83544 |406 |34316 |0 |17 |FD5434|0 |2 |0 |
-ROW |83545 |788 |28248 |0 |0 |008800|0 |2 |0 |
-ROW |83546 |788 |28533 |0 |1 |EE0000|0 |2 |0 |
-ROW |83547 |392 |22187 |5 |0 |00C800|0 |2 |0 |
-ROW |83548 |392 |23251 |0 |1 |F63100|0 |2 |0 |
-ROW |83549 |1444 |28581 |0 |0 |990099|0 |2 |0 |
-ROW |83550 |1444 |28574 |0 |1 |990000|0 |2 |0 |
-ROW |83551 |1444 |28571 |0 |2 |0000EE|0 |2 |0 |
-ROW |83552 |1444 |28562 |0 |3 |FF33FF|0 |2 |0 |
-ROW |83553 |1444 |28570 |0 |4 |009600|0 |2 |0 |
-ROW |83554 |1444 |28569 |0 |5 |003300|0 |2 |0 |
-ROW |83555 |1444 |28552 |0 |6 |33FFFF|0 |2 |0 |
-ROW |83556 |1444 |28573 |0 |7 |DD0000|0 |2 |0 |
-ROW |83557 |1444 |28579 |0 |8 |000099|0 |2 |0 |
-ROW |83558 |1444 |28559 |0 |9 |00FF00|0 |2 |0 |
-ROW |83559 |1444 |33017 |0 |10 |5A2B57|0 |2 |0 |
-ROW |83560 |1644 |28567 |0 |0 |00EE00|0 |2 |0 |
-ROW |83561 |1644 |28575 |0 |1 |0000EE|0 |2 |0 |
-ROW |83562 |1644 |28576 |0 |2 |FFAA00|0 |2 |0 |
-ROW |83563 |1644 |28583 |0 |3 |00EEEE|0 |2 |0 |
-ROW |83564 |1644 |28582 |0 |4 |990099|0 |2 |0 |
-ROW |83565 |1645 |28572 |0 |0 |00EE00|0 |2 |0 |
-ROW |83566 |1645 |28568 |0 |1 |FFAA00|0 |2 |0 |
-ROW |83567 |1645 |28564 |0 |2 |990099|0 |2 |0 |
-ROW |83568 |1645 |28578 |0 |3 |FF66FF|0 |2 |0 |
-ROW |83569 |1645 |28580 |0 |4 |009999|0 |2 |0 |
-ROW |83570 |1645 |33016 |0 |5 |2B5429|0 |2 |0 |
-ROW |83571 |1645 |28565 |0 |6 |8048B4|0 |2 |0 |
-ROW |83572 |1645 |28577 |0 |7 |FD5434|0 |2 |0 |
-ROW |83573 |1646 |28566 |0 |0 |00EE00|0 |2 |0 |
-ROW |83574 |1646 |28561 |0 |1 |0000EE|0 |2 |0 |
-ROW |83575 |1646 |28563 |0 |2 |FFAA00|0 |2 |0 |
-ROW |83576 |1646 |29821 |0 |3 |00EEEE|0 |2 |0 |
-ROW |83577 |1646 |34314 |0 |4 |990099|0 |2 |0 |
-ROW |83578 |1646 |34315 |0 |5 |EE0000|0 |2 |0 |
-ROW |83579 |1647 |33015 |0 |0 |C80000|0 |2 |0 |
-ROW |83580 |1647 |33014 |0 |1 |00C800|0 |2 |0 |
-ROW |83581 |797 |28546 |0 |0 |C80000|0 |2 |0 |
-ROW |83582 |797 |28545 |0 |1 |00C800|0 |2 |0 |
-ROW |83583 |798 |28551 |0 |0 |009900|0 |2 |0 |
-ROW |83584 |798 |28543 |0 |1 |DD0000|0 |2 |0 |
-ROW |83585 |798 |28542 |0 |2 |00DDDD|0 |2 |0 |
-ROW |83586 |798 |28549 |0 |3 |3333FF|0 |2 |0 |
-ROW |83587 |798 |28544 |0 |4 |999900|0 |2 |0 |
-ROW |83588 |798 |28548 |0 |5 |00FF00|0 |2 |0 |
-ROW |83589 |799 |28581 |0 |0 |990099|0 |2 |0 |
-ROW |83590 |799 |28574 |0 |1 |990000|0 |2 |0 |
-ROW |83591 |799 |28571 |0 |2 |0000EE|0 |2 |0 |
-ROW |83592 |799 |28565 |0 |3 |FF33FF|0 |2 |0 |
-ROW |83593 |799 |28570 |0 |4 |009600|0 |2 |0 |
-ROW |83594 |799 |28569 |0 |5 |003300|0 |2 |0 |
-ROW |83595 |799 |28577 |0 |6 |CCCC00|0 |2 |0 |
-ROW |83596 |799 |28552 |0 |7 |33FFFF|0 |2 |0 |
-ROW |83597 |799 |28573 |0 |8 |DD0000|0 |2 |0 |
-ROW |83598 |799 |28579 |0 |9 |000099|0 |2 |0 |
-ROW |83599 |799 |28559 |0 |10 |00FF00|0 |2 |0 |
-ROW |83600 |799 |33017 |0 |11 |5A2B57|0 |2 |0 |
-ROW |83601 |800 |28572 |0 |0 |00EE00|0 |2 |0 |
-ROW |83602 |800 |28566 |0 |1 |0000EE|0 |2 |0 |
-ROW |83603 |800 |28568 |0 |2 |FFAA00|0 |2 |0 |
-ROW |83604 |800 |28561 |0 |3 |00EEEE|0 |2 |0 |
-ROW |83605 |800 |28564 |0 |4 |990099|0 |2 |0 |
-ROW |83606 |800 |28567 |0 |5 |EE0000|0 |2 |0 |
-ROW |83607 |800 |28578 |0 |6 |FF66FF|0 |2 |0 |
-ROW |83608 |800 |28580 |0 |7 |009999|0 |2 |0 |
-ROW |83609 |800 |28562 |0 |8 |BBBB00|0 |2 |0 |
-ROW |83610 |800 |28563 |0 |9 |AA0000|0 |2 |0 |
-ROW |83611 |800 |28575 |0 |10 |990000|0 |2 |0 |
-ROW |83612 |800 |28576 |0 |11 |008800|0 |2 |0 |
-ROW |83613 |800 |28582 |0 |12 |80B0E0|0 |2 |0 |
-ROW |83614 |800 |28583 |0 |13 |4080B0|0 |2 |0 |
-ROW |83615 |800 |29821 |0 |14 |8000FF|0 |2 |0 |
-ROW |83616 |800 |33016 |0 |15 |2B5429|0 |2 |0 |
-ROW |83617 |800 |34314 |0 |16 |8048B4|0 |2 |0 |
-ROW |83618 |800 |34315 |0 |17 |FD5434|0 |2 |0 |
-ROW |83619 |801 |28560 |0 |0 |008800|0 |2 |0 |
-ROW |83620 |801 |28584 |0 |1 |EE0000|0 |2 |0 |
-ROW |83621 |802 |28550 |5 |0 |00C800|0 |2 |0 |
-ROW |83622 |802 |28540 |0 |1 |F63100|0 |2 |0 |
-ROW |83623 |1438 |33001 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83624 |1438 |33002 |0 |1 |2774A4|0 |2 |0 |
-ROW |83625 |1438 |33000 |2 |2 |F63100|0 |2 |0 |
-ROW |83626 |1439 |33005 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83627 |1439 |33004 |0 |1 |2774A4|0 |2 |0 |
-ROW |83628 |1440 |32980 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83629 |1440 |32970 |0 |1 |2774A4|0 |2 |0 |
-ROW |83630 |1441 |32967 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83631 |1441 |32968 |0 |1 |2774A4|0 |2 |0 |
-ROW |83632 |1441 |32995 |2 |2 |F63100|0 |2 |0 |
-ROW |83633 |1442 |32997 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83634 |1442 |32984 |0 |1 |2774A4|0 |2 |0 |
-ROW |83635 |1443 |32973 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83636 |1443 |32971 |0 |1 |2774A4|0 |2 |0 |
-ROW |83637 |1503 |33518 |5 |0 |1A7C11|0 |2 |0 |
-ROW |83638 |1504 |33501 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83639 |803 |28599 |0 |0 |DD0000|0 |2 |0 |
-ROW |83640 |803 |28596 |0 |1 |00DDDD|0 |2 |0 |
-ROW |83641 |803 |28597 |0 |2 |3333FF|0 |2 |0 |
-ROW |83642 |803 |28598 |0 |3 |00FF00|0 |2 |0 |
-ROW |83643 |804 |28602 |0 |1 |990099|0 |2 |0 |
-ROW |83644 |804 |28606 |0 |2 |990000|0 |2 |0 |
-ROW |83645 |804 |28608 |0 |3 |0000EE|0 |2 |0 |
-ROW |83646 |804 |28615 |0 |4 |FF33FF|0 |2 |0 |
-ROW |83647 |804 |28610 |0 |5 |00EE00|0 |2 |0 |
-ROW |83648 |804 |28611 |0 |6 |003300|0 |2 |0 |
-ROW |83649 |804 |28616 |0 |7 |33FFFF|0 |2 |0 |
-ROW |83650 |804 |28607 |0 |8 |DD0000|0 |2 |0 |
-ROW |83651 |804 |28604 |0 |9 |000099|0 |2 |0 |
-ROW |83652 |804 |28588 |0 |10 |00FF00|0 |2 |0 |
-ROW |83653 |804 |33013 |0 |11 |BB2A02|0 |2 |0 |
-ROW |83654 |805 |28612 |0 |1 |FFAA00|0 |2 |0 |
-ROW |83655 |805 |28600 |0 |2 |990099|0 |2 |0 |
-ROW |83656 |805 |28613 |0 |3 |EE0000|0 |2 |0 |
-ROW |83657 |805 |28605 |0 |4 |FF66FF|0 |2 |0 |
-ROW |83658 |805 |28614 |0 |5 |960000|0 |2 |0 |
-ROW |83659 |805 |28601 |0 |6 |009600|0 |2 |0 |
-ROW |83660 |805 |28603 |0 |7 |009999|0 |2 |0 |
-ROW |83661 |805 |28609 |0 |8 |BBBB00|0 |2 |0 |
-ROW |83662 |805 |33012 |0 |9 |F230E0|0 |2 |0 |
-ROW |83663 |806 |28595 |0 |0 |00C800|0 |2 |0 |
-ROW |83664 |806 |28586 |0 |1 |C80000|0 |2 |0 |
-ROW |83665 |529 |23357 |0 |0 |DD0000|0 |2 |0 |
-ROW |83666 |529 |23341 |0 |1 |00DDDD|0 |2 |0 |
-ROW |83667 |529 |23342 |0 |2 |3333FF|0 |2 |0 |
-ROW |83668 |529 |28251 |0 |3 |00FF00|0 |2 |0 |
-ROW |83669 |530 |23345 |0 |1 |990099|0 |2 |0 |
-ROW |83670 |530 |23348 |0 |2 |990000|0 |2 |0 |
-ROW |83671 |530 |23355 |0 |3 |0000EE|0 |2 |0 |
-ROW |83672 |530 |23352 |0 |4 |FF33FF|0 |2 |0 |
-ROW |83673 |530 |23356 |0 |5 |007700|0 |2 |0 |
-ROW |83674 |530 |23354 |0 |6 |003300|0 |2 |0 |
-ROW |83675 |530 |23346 |0 |7 |33FFFF|0 |2 |0 |
-ROW |83676 |530 |23349 |0 |8 |DD0000|0 |2 |0 |
-ROW |83677 |530 |23344 |0 |9 |000099|0 |7 |0 |
-ROW |83678 |530 |28250 |0 |10 |00FF00|0 |2 |0 |
-ROW |83679 |530 |33019 |0 |11 |BB2A02|0 |2 |0 |
-ROW |83680 |531 |23353 |0 |1 |FFAA00|0 |2 |0 |
-ROW |83681 |531 |23347 |0 |2 |990099|0 |2 |0 |
-ROW |83682 |531 |23350 |0 |3 |EE0000|0 |2 |0 |
-ROW |83683 |531 |23343 |0 |4 |FF66FF|0 |2 |0 |
-ROW |83684 |531 |23351 |0 |5 |0000EE|0 |2 |0 |
-ROW |83685 |531 |23360 |0 |6 |00EE00|0 |2 |0 |
-ROW |83686 |531 |25369 |0 |7 |009999|0 |2 |0 |
-ROW |83687 |531 |25368 |0 |8 |BBBB00|0 |2 |0 |
-ROW |83688 |531 |28618 |0 |9 |990000|0 |2 |0 |
-ROW |83689 |531 |28619 |0 |10 |008800|0 |2 |0 |
-ROW |83690 |531 |33018 |0 |11 |BB2A02|0 |2 |0 |
-ROW |83691 |807 |28617 |0 |0 |008800|0 |2 |0 |
-ROW |83692 |532 |23340 |5 |0 |00C800|0 |2 |0 |
-ROW |83693 |532 |23358 |5 |1 |C80000|1 |2 |0 |
-ROW |83694 |472 |22945 |5 |0 |00AA00|0 |2 |0 |
-ROW |83695 |472 |22946 |5 |1 |3333FF|0 |2 |0 |
-ROW |83696 |473 |22950 |0 |0 |C80000|0 |2 |2 |
-ROW |83697 |473 |22948 |0 |1 |00C800|0 |2 |0 |
-ROW |83698 |471 |22924 |0 |0 |009900|0 |2 |0 |
-ROW |83699 |471 |22920 |0 |1 |000099|0 |2 |0 |
-ROW |83700 |469 |22922 |0 |0 |009900|0 |2 |0 |
-ROW |83701 |469 |22923 |0 |1 |000099|0 |2 |0 |
-ROW |83702 |469 |22921 |0 |2 |990000|0 |2 |0 |
-ROW |83703 |498 |23109 |0 |0 |009999|0 |2 |0 |
-ROW |83704 |498 |23112 |0 |1 |990099|0 |2 |0 |
-ROW |83705 |498 |23115 |0 |2 |999900|0 |2 |0 |
-ROW |83706 |498 |23113 |0 |3 |990000|0 |2 |0 |
-ROW |83707 |498 |23114 |0 |4 |000099|0 |2 |0 |
-ROW |83708 |498 |23110 |0 |5 |009900|0 |2 |0 |
-ROW |83709 |540 |22942 |5 |0 |00C800|0 |2 |0 |
-ROW |83710 |492 |23073 |5 |0 |00AA00|0 |2 |0 |
-ROW |83711 |492 |23074 |5 |1 |3333FF|0 |2 |0 |
-ROW |83712 |467 |22910 |0 |0 |C80000|0 |2 |2 |
-ROW |83713 |467 |22908 |0 |1 |00C800|0 |2 |0 |
-ROW |83714 |465 |22884 |0 |0 |009900|0 |2 |0 |
-ROW |83715 |465 |22880 |0 |1 |000099|0 |2 |0 |
-ROW |83716 |463 |22882 |0 |0 |009900|0 |2 |0 |
-ROW |83717 |463 |22883 |0 |1 |000099|0 |2 |0 |
-ROW |83718 |463 |22881 |0 |2 |990000|0 |2 |0 |
-ROW |83719 |462 |22886 |1 |0 |009999|0 |2 |0 |
-ROW |83720 |462 |22888 |1 |1 |990099|0 |2 |0 |
-ROW |83721 |462 |22891 |1 |2 |990000|0 |2 |0 |
-ROW |83722 |462 |22892 |1 |3 |000099|0 |2 |0 |
-ROW |83723 |462 |22885 |1 |4 |009900|0 |2 |0 |
-ROW |83724 |541 |22902 |5 |0 |00C800|0 |2 |0 |
-ROW |83725 |464 |22897 |0 |0 |AA0000|0 |2 |2 |
-ROW |83726 |464 |22895 |0 |1 |00AA00|0 |2 |0 |
-ROW |83727 |478 |22985 |5 |0 |00AA00|0 |2 |0 |
-ROW |83728 |478 |22986 |5 |1 |3333FF|0 |2 |0 |
-ROW |83729 |479 |22990 |0 |0 |C80000|0 |2 |2 |
-ROW |83730 |479 |22988 |0 |1 |00C800|0 |2 |0 |
-ROW |83731 |475 |22962 |0 |0 |009900|0 |2 |0 |
-ROW |83732 |475 |22963 |0 |1 |000099|0 |2 |0 |
-ROW |83733 |475 |22961 |0 |2 |990000|0 |2 |0 |
-ROW |83734 |474 |22968 |1 |0 |990099|0 |2 |0 |
-ROW |83735 |474 |22971 |1 |1 |990000|0 |2 |0 |
-ROW |83736 |474 |22972 |1 |2 |000099|0 |2 |0 |
-ROW |83737 |474 |22965 |1 |3 |009900|0 |2 |0 |
-ROW |83738 |542 |22982 |5 |0 |00C800|0 |2 |0 |
-ROW |83739 |491 |23070 |0 |0 |C80000|0 |2 |2 |
-ROW |83740 |491 |23068 |0 |1 |00C800|0 |2 |0 |
-ROW |83741 |487 |23042 |0 |0 |009900|0 |2 |0 |
-ROW |83742 |487 |23043 |0 |1 |000099|0 |2 |0 |
-ROW |83743 |487 |23041 |0 |2 |990000|0 |2 |0 |
-ROW |83744 |543 |23062 |5 |0 |00C800|0 |2 |0 |
-ROW |83745 |494 |23077 |5 |0 |00AA00|0 |2 |0 |
-ROW |83746 |494 |23078 |5 |1 |3333FF|0 |2 |0 |
-ROW |83747 |493 |23075 |5 |0 |00AA00|0 |2 |0 |
-ROW |83748 |493 |23076 |5 |1 |3333FF|0 |2 |0 |
-ROW |83749 |461 |22870 |0 |0 |C80000|0 |2 |2 |
-ROW |83750 |461 |22868 |0 |1 |00C800|0 |2 |0 |
-ROW |83751 |459 |22844 |0 |0 |009900|0 |2 |0 |
-ROW |83752 |459 |22840 |0 |1 |000099|0 |2 |0 |
-ROW |83753 |457 |22842 |0 |0 |009900|0 |2 |0 |
-ROW |83754 |457 |22843 |0 |1 |000099|0 |2 |0 |
-ROW |83755 |457 |22841 |0 |2 |990000|0 |2 |0 |
-ROW |83756 |456 |22846 |1 |0 |009999|0 |2 |0 |
-ROW |83757 |456 |22848 |1 |1 |990099|0 |2 |0 |
-ROW |83758 |456 |22851 |1 |2 |990000|0 |2 |0 |
-ROW |83759 |456 |22852 |1 |3 |000099|0 |2 |0 |
-ROW |83760 |456 |22845 |1 |4 |009900|0 |2 |0 |
-ROW |83761 |544 |22862 |5 |0 |00C800|0 |2 |0 |
-ROW |83762 |458 |22857 |0 |0 |AA0000|0 |2 |2 |
-ROW |83763 |458 |22855 |0 |1 |00AA00|0 |2 |0 |
-ROW |83764 |484 |23025 |5 |0 |00AA00|0 |2 |0 |
-ROW |83765 |484 |23026 |5 |1 |3333FF|0 |2 |0 |
-ROW |83766 |485 |23030 |0 |0 |C80000|0 |2 |2 |
-ROW |83767 |485 |23028 |0 |1 |00C800|0 |2 |0 |
-ROW |83768 |483 |23004 |0 |0 |009900|0 |2 |0 |
-ROW |83769 |483 |23000 |0 |1 |000099|0 |2 |0 |
-ROW |83770 |481 |23002 |0 |0 |009900|0 |2 |0 |
-ROW |83771 |481 |23003 |0 |1 |000099|0 |2 |0 |
-ROW |83772 |481 |23001 |0 |2 |990000|0 |2 |0 |
-ROW |83773 |480 |23007 |1 |0 |999900|0 |2 |0 |
-ROW |83774 |480 |23011 |1 |1 |990000|0 |2 |0 |
-ROW |83775 |480 |23012 |1 |2 |000099|0 |2 |0 |
-ROW |83776 |480 |23005 |1 |3 |009900|0 |2 |0 |
-ROW |83777 |545 |23022 |5 |0 |00C800|0 |2 |0 |
-ROW |83778 |482 |23017 |0 |0 |AA0000|0 |2 |2 |
-ROW |83779 |482 |23015 |0 |1 |00AA00|0 |2 |0 |
-ROW |83780 |651 |26928 |5 |0 |EE0000|0 |2 |0 |
-ROW |83781 |651 |26927 |0 |1 |000000|1 |2 |0 |
-ROW |83782 |652 |26925 |2 |0 |880000|0 |2 |0 |
-ROW |83783 |652 |26932 |0 |1 |009900|0 |2 |0 |
-ROW |83784 |652 |26930 |0 |2 |00CCCC|0 |2 |0 |
-ROW |83785 |652 |26931 |0 |3 |000000|0 |2 |0 |
-ROW |83786 |652 |26929 |0 |4 |3333FF|0 |2 |0 |
-ROW |83787 |652 |26926 |0 |5 |777700|0 |2 |0 |
-ROW |83788 |653 |26933 |2 |0 |EE0000|0 |2 |0 |
-ROW |83789 |653 |26943 |2 |1 |EE00EE|0 |2 |0 |
-ROW |83790 |653 |26935 |0 |2 |000000|1 |2 |0 |
-ROW |83791 |653 |26936 |4 |3 |000000|1 |2 |0 |
-ROW |83792 |654 |26934 |2 |0 |880000|0 |2 |0 |
-ROW |83793 |654 |26939 |0 |1 |009900|0 |2 |0 |
-ROW |83794 |654 |26942 |0 |2 |00CCCC|0 |2 |0 |
-ROW |83795 |654 |26938 |0 |3 |000000|0 |2 |0 |
-ROW |83796 |654 |26937 |0 |4 |3333FF|0 |2 |0 |
-ROW |83797 |1447 |33113 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83798 |1447 |33112 |0 |1 |2774A4|0 |2 |0 |
-ROW |83799 |1447 |33099 |0 |2 |F63100|0 |2 |0 |
-ROW |83800 |1447 |33098 |0 |3 |A54F10|0 |2 |0 |
-ROW |83801 |1448 |33125 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83802 |1448 |33110 |0 |1 |2774A4|0 |2 |0 |
-ROW |83803 |1449 |33080 |2 |0 |1A7C11|0 |2 |0 |
-ROW |83804 |1449 |33081 |2 |1 |2774A4|0 |2 |0 |
-ROW |83805 |1450 |33089 |2 |0 |1A7C11|0 |2 |0 |
-ROW |83806 |1450 |33085 |2 |1 |2774A4|0 |2 |0 |
-ROW |83807 |1451 |33082 |2 |0 |1A7C11|0 |2 |0 |
-ROW |83808 |1451 |33086 |2 |1 |2774A4|0 |2 |0 |
-ROW |83809 |1451 |33083 |0 |2 |F63100|0 |2 |0 |
-ROW |83810 |1451 |33084 |0 |3 |A54F10|0 |2 |0 |
-ROW |83811 |1451 |33087 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |83812 |1451 |33088 |0 |5 |6C59DC|0 |2 |0 |
-ROW |83813 |1452 |33093 |2 |0 |1A7C11|0 |2 |0 |
-ROW |83814 |1452 |33092 |2 |1 |2774A4|0 |2 |0 |
-ROW |83815 |1453 |33077 |2 |0 |1A7C11|0 |2 |0 |
-ROW |83816 |1453 |33063 |2 |1 |2774A4|0 |2 |0 |
-ROW |83817 |1454 |33094 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83818 |1454 |33059 |0 |1 |2774A4|0 |2 |0 |
-ROW |83819 |1455 |33066 |2 |0 |1A7C11|0 |2 |0 |
-ROW |83820 |1455 |33071 |2 |1 |2774A4|0 |2 |0 |
-ROW |83821 |1455 |33067 |0 |2 |F63100|0 |2 |0 |
-ROW |83822 |1455 |33068 |0 |3 |A54F10|0 |2 |0 |
-ROW |83823 |1455 |33072 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |83824 |1455 |33073 |0 |5 |6C59DC|0 |2 |0 |
-ROW |83825 |1159 |30886 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83826 |1159 |30887 |0 |1 |2774A4|0 |2 |0 |
-ROW |83827 |1160 |30888 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83828 |1160 |30882 |0 |1 |2774A4|0 |2 |0 |
-ROW |83829 |1160 |30890 |0 |2 |F63100|0 |2 |0 |
-ROW |83830 |1160 |30881 |0 |3 |A54F10|0 |2 |0 |
-ROW |83831 |1160 |30889 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |83832 |1161 |30847 |2 |0 |1A7C11|0 |2 |0 |
-ROW |83833 |1161 |30872 |2 |1 |2774A4|0 |2 |0 |
-ROW |83834 |1162 |30853 |2 |0 |1A7C11|0 |2 |0 |
-ROW |83835 |1162 |30849 |2 |1 |2774A4|0 |2 |0 |
-ROW |83836 |1162 |30852 |2 |2 |F63100|0 |2 |0 |
-ROW |83837 |1162 |30851 |2 |3 |A54F10|0 |2 |0 |
-ROW |83838 |1162 |30848 |2 |4 |FC6EA3|0 |2 |0 |
-ROW |83839 |1163 |30856 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83840 |1163 |30855 |0 |1 |2774A4|0 |2 |0 |
-ROW |83841 |1163 |30854 |2 |2 |F63100|1 |2 |0 |
-ROW |83842 |1164 |30859 |2 |0 |1A7C11|0 |2 |0 |
-ROW |83843 |1164 |30870 |2 |1 |2774A4|0 |2 |0 |
-ROW |83844 |1165 |30860 |2 |0 |1A7C11|0 |2 |0 |
-ROW |83845 |1165 |30871 |2 |1 |2774A4|0 |2 |0 |
-ROW |83846 |1166 |30868 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83847 |1166 |30869 |0 |1 |2774A4|0 |2 |0 |
-ROW |83848 |1166 |30867 |0 |2 |F63100|0 |2 |0 |
-ROW |83849 |1166 |30866 |0 |3 |A54F10|0 |2 |0 |
-ROW |83850 |1166 |30865 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |83851 |1167 |30850 |5 |0 |1A7C11|0 |2 |0 |
-ROW |83852 |1167 |30863 |5 |1 |2774A4|0 |2 |0 |
-ROW |83853 |1167 |30861 |5 |2 |F63100|0 |2 |0 |
-ROW |83854 |1168 |30833 |2 |0 |1A7C11|0 |2 |0 |
-ROW |83855 |1168 |30841 |2 |1 |2774A4|0 |2 |0 |
-ROW |83856 |1168 |30857 |2 |2 |F63100|0 |2 |0 |
-ROW |83857 |1169 |30834 |2 |0 |1A7C11|0 |2 |0 |
-ROW |83858 |1169 |30831 |2 |1 |2774A4|0 |2 |0 |
-ROW |83859 |1170 |30846 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83860 |1576 |34320 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83861 |1576 |30845 |0 |1 |2774A4|0 |2 |0 |
-ROW |83862 |1576 |30842 |0 |2 |F63100|0 |2 |0 |
-ROW |83863 |1576 |30873 |2 |3 |A54F10|1 |2 |0 |
-ROW |83864 |1753 |36436 |2 |0 |1A7C11|0 |2 |0 |
-ROW |83865 |1753 |36445 |0 |1 |2774A4|0 |2 |0 |
-ROW |83866 |1754 |36440 |2 |0 |1A7C11|0 |2 |0 |
-ROW |83867 |1754 |36441 |0 |1 |2774A4|0 |2 |0 |
-ROW |83868 |1755 |36446 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83869 |1755 |36451 |0 |1 |2774A4|0 |2 |0 |
-ROW |83870 |1755 |36449 |0 |2 |F63100|0 |2 |0 |
-ROW |83871 |1755 |36447 |0 |3 |A54F10|0 |2 |0 |
-ROW |83872 |1756 |36453 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83873 |1756 |36455 |0 |1 |2774A4|0 |2 |0 |
-ROW |83874 |1756 |36454 |0 |2 |F63100|0 |2 |0 |
-ROW |83875 |1757 |36467 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83876 |1757 |36465 |0 |1 |2774A4|0 |2 |0 |
-ROW |83877 |1758 |36474 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83878 |1758 |36475 |0 |1 |2774A4|0 |2 |0 |
-ROW |83879 |1759 |36477 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83880 |1759 |36479 |0 |1 |2774A4|0 |2 |0 |
-ROW |83881 |1760 |36480 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83882 |1760 |36478 |0 |1 |2774A4|0 |2 |0 |
-ROW |83883 |1761 |36483 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83884 |1761 |36486 |0 |1 |2774A4|0 |2 |0 |
-ROW |83885 |1761 |36484 |0 |2 |F63100|0 |2 |0 |
-ROW |83886 |1761 |36485 |0 |3 |A54F10|0 |2 |0 |
-ROW |83887 |1762 |36492 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83888 |1762 |36491 |0 |1 |2774A4|0 |2 |0 |
-ROW |83889 |1762 |36490 |0 |2 |F63100|0 |2 |0 |
-ROW |83890 |1763 |36495 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83891 |1763 |36496 |0 |1 |2774A4|0 |2 |0 |
-ROW |83892 |1764 |36494 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83893 |1764 |36497 |0 |1 |2774A4|0 |2 |0 |
-ROW |83894 |1764 |36498 |0 |2 |F63100|0 |2 |0 |
-ROW |83895 |1765 |36500 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83896 |1765 |36501 |0 |1 |2774A4|0 |2 |0 |
-ROW |83897 |1505 |33553 |2 |0 |1A7C11|0 |2 |0 |
-ROW |83898 |1505 |33562 |0 |1 |2774A4|0 |2 |0 |
-ROW |83899 |1506 |33557 |2 |0 |1A7C11|0 |2 |0 |
-ROW |83900 |1506 |33558 |0 |1 |2774A4|0 |2 |0 |
-ROW |83901 |1507 |33563 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83902 |1507 |33568 |0 |1 |2774A4|0 |2 |0 |
-ROW |83903 |1507 |33566 |0 |2 |F63100|0 |2 |0 |
-ROW |83904 |1507 |33564 |0 |3 |A54F10|0 |2 |0 |
-ROW |83905 |1508 |33570 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83906 |1508 |33572 |0 |1 |2774A4|0 |2 |0 |
-ROW |83907 |1508 |33571 |0 |2 |F63100|0 |2 |0 |
-ROW |83908 |1509 |33584 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83909 |1509 |33582 |0 |1 |2774A4|0 |2 |0 |
-ROW |83910 |1510 |33591 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83911 |1510 |33592 |0 |1 |2774A4|0 |2 |0 |
-ROW |83912 |1511 |33594 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83913 |1511 |33596 |0 |1 |2774A4|0 |2 |0 |
-ROW |83914 |1512 |33597 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83915 |1512 |33595 |0 |1 |2774A4|0 |2 |0 |
-ROW |83916 |1513 |33600 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83917 |1513 |33603 |0 |1 |2774A4|0 |2 |0 |
-ROW |83918 |1513 |33601 |0 |2 |F63100|0 |2 |0 |
-ROW |83919 |1513 |33602 |0 |3 |A54F10|0 |2 |0 |
-ROW |83920 |1514 |33609 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83921 |1514 |33608 |0 |1 |2774A4|0 |2 |0 |
-ROW |83922 |1514 |33607 |0 |2 |F63100|0 |2 |0 |
-ROW |83923 |1515 |33612 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83924 |1515 |33613 |0 |1 |2774A4|0 |2 |0 |
-ROW |83925 |1516 |33611 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83926 |1516 |33614 |0 |1 |2774A4|0 |2 |0 |
-ROW |83927 |1516 |33615 |0 |2 |F63100|0 |2 |0 |
-ROW |83928 |1517 |33617 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83929 |1517 |33618 |0 |1 |2774A4|0 |2 |0 |
-ROW |83930 |1807 |36811 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83931 |1807 |36810 |0 |1 |2774A4|0 |2 |0 |
-ROW |83932 |1808 |36809 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83933 |1808 |36808 |0 |1 |2774A4|0 |2 |0 |
-ROW |83934 |1808 |36812 |0 |2 |F63100|0 |2 |0 |
-ROW |83935 |1808 |36813 |0 |3 |A54F10|0 |2 |0 |
-ROW |83936 |1809 |36799 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83937 |1809 |36798 |0 |1 |2774A4|0 |2 |0 |
-ROW |83938 |1527 |33819 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83939 |1527 |33839 |0 |1 |2774A4|0 |2 |0 |
-ROW |83940 |1528 |33820 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83941 |1528 |33816 |0 |1 |2774A4|0 |2 |0 |
-ROW |83942 |1529 |33826 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83943 |1529 |33831 |0 |1 |2774A4|0 |2 |0 |
-ROW |83944 |1529 |33829 |0 |2 |F63100|0 |2 |0 |
-ROW |83945 |1529 |33821 |0 |3 |A54F10|0 |2 |0 |
-ROW |83946 |1529 |33825 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |83947 |1529 |33833 |0 |5 |6C59DC|0 |2 |0 |
-ROW |83948 |1529 |33823 |2 |6 |AC8C14|0 |2 |0 |
-ROW |83949 |1530 |33828 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83950 |1530 |33832 |0 |1 |2774A4|0 |2 |0 |
-ROW |83951 |1530 |33830 |0 |2 |F63100|0 |2 |0 |
-ROW |83952 |1530 |33822 |0 |3 |A54F10|0 |2 |0 |
-ROW |83953 |1530 |33815 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |83954 |1530 |33834 |0 |5 |6C59DC|0 |2 |0 |
-ROW |83955 |1530 |33824 |2 |6 |AC8C14|0 |2 |0 |
-ROW |83956 |1531 |33840 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83957 |1531 |33845 |0 |1 |2774A4|0 |2 |0 |
-ROW |83958 |1532 |33844 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83959 |1532 |33847 |0 |1 |2774A4|0 |2 |0 |
-ROW |83960 |1532 |33843 |0 |2 |F63100|0 |2 |0 |
-ROW |83961 |1532 |33841 |0 |3 |A54F10|0 |2 |0 |
-ROW |83962 |1533 |33863 |2 |0 |1A7C11|0 |2 |0 |
-ROW |83963 |1534 |33792 |2 |0 |1A7C11|0 |2 |0 |
-ROW |83964 |1534 |33791 |0 |1 |2774A4|0 |2 |0 |
-ROW |83965 |1534 |33793 |0 |2 |F63100|0 |2 |0 |
-ROW |83966 |1535 |33802 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83967 |1535 |33770 |0 |1 |2774A4|0 |2 |0 |
-ROW |83968 |1536 |33800 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83969 |1536 |33799 |0 |1 |2774A4|0 |2 |0 |
-ROW |83970 |1536 |33801 |0 |2 |F63100|0 |2 |0 |
-ROW |83971 |1537 |33798 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83972 |1537 |33806 |0 |1 |2774A4|0 |2 |0 |
-ROW |83973 |1537 |33774 |0 |2 |F63100|0 |2 |0 |
-ROW |83974 |1538 |33769 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83975 |1538 |33787 |0 |1 |2774A4|0 |2 |0 |
-ROW |83976 |1538 |33789 |0 |2 |F63100|0 |2 |0 |
-ROW |83977 |1538 |33790 |0 |3 |A54F10|0 |2 |0 |
-ROW |83978 |1539 |33785 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83979 |1539 |33772 |0 |1 |2774A4|0 |2 |0 |
-ROW |83980 |1539 |33773 |0 |2 |F63100|0 |2 |0 |
-ROW |83981 |1539 |33771 |0 |3 |A54F10|0 |2 |0 |
-ROW |83982 |1540 |33776 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83983 |1540 |33775 |0 |1 |2774A4|0 |2 |0 |
-ROW |83984 |1541 |33782 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83985 |1541 |33781 |0 |1 |2774A4|0 |2 |0 |
-ROW |83986 |1541 |33780 |0 |2 |F63100|0 |2 |0 |
-ROW |83987 |1541 |33783 |0 |3 |A54F10|0 |2 |0 |
-ROW |83988 |1541 |33777 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |83989 |1541 |33778 |0 |5 |6C59DC|0 |2 |0 |
-ROW |83990 |1542 |33804 |2 |0 |1A7C11|0 |2 |0 |
-ROW |83991 |1542 |33803 |2 |1 |2774A4|0 |2 |0 |
-ROW |83992 |1542 |33805 |2 |2 |F63100|0 |2 |0 |
-ROW |83993 |1543 |33937 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83994 |1543 |33940 |0 |1 |2774A4|0 |2 |0 |
-ROW |83995 |1543 |33936 |0 |2 |F63100|0 |2 |0 |
-ROW |83996 |1543 |33934 |0 |3 |A54F10|0 |2 |0 |
-ROW |83997 |1544 |33915 |0 |0 |1A7C11|0 |2 |0 |
-ROW |83998 |1544 |33911 |0 |1 |2774A4|0 |2 |0 |
-ROW |83999 |1544 |33912 |0 |2 |F63100|0 |2 |0 |
-ROW |84000 |1544 |33910 |0 |3 |A54F10|0 |2 |0 |
-ROW |84001 |1544 |33914 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |84002 |1545 |33918 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84003 |1545 |33905 |0 |1 |2774A4|0 |2 |0 |
-ROW |84004 |1545 |33917 |0 |2 |F63100|0 |2 |0 |
-ROW |84005 |1545 |33916 |2 |3 |A54F10|1 |2 |0 |
-ROW |84006 |1546 |33908 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84007 |1546 |33909 |0 |1 |2774A4|0 |2 |0 |
-ROW |84008 |1546 |33902 |0 |2 |F63100|0 |2 |0 |
-ROW |84009 |1547 |33893 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84010 |1547 |33892 |0 |1 |2774A4|0 |2 |0 |
-ROW |84011 |1548 |33899 |2 |0 |1A7C11|0 |2 |0 |
-ROW |84012 |1548 |33898 |2 |1 |2774A4|0 |2 |0 |
-ROW |84013 |1548 |33895 |2 |2 |F63100|0 |2 |0 |
-ROW |84014 |1548 |33900 |2 |3 |A54F10|0 |2 |0 |
-ROW |84015 |1548 |33896 |2 |4 |FC6EA3|0 |2 |0 |
-ROW |84016 |1548 |33891 |2 |5 |6C59DC|0 |2 |0 |
-ROW |84017 |1190 |31140 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84018 |1190 |31141 |0 |1 |2774A4|0 |2 |0 |
-ROW |84019 |1261 |31145 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84020 |1261 |31146 |0 |1 |2774A4|0 |2 |0 |
-ROW |84021 |1261 |31147 |0 |2 |F63100|0 |2 |0 |
-ROW |84022 |1191 |31138 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84023 |1192 |31157 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84024 |1192 |31158 |0 |1 |2774A4|0 |2 |0 |
-ROW |84025 |1193 |31092 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84026 |1193 |31108 |0 |1 |2774A4|0 |2 |0 |
-ROW |84027 |1193 |31110 |0 |2 |F63100|0 |2 |0 |
-ROW |84028 |1193 |31067 |0 |3 |A54F10|0 |2 |0 |
-ROW |84029 |1193 |31086 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |84030 |1193 |31087 |0 |5 |6C59DC|0 |2 |0 |
-ROW |84031 |1194 |31120 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84032 |1194 |31105 |0 |1 |2774A4|0 |2 |0 |
-ROW |84033 |1194 |31071 |0 |2 |F63100|0 |2 |0 |
-ROW |84034 |1194 |31081 |0 |3 |A54F10|0 |2 |0 |
-ROW |84035 |1195 |31098 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84036 |1195 |31099 |0 |1 |2774A4|0 |2 |0 |
-ROW |84037 |1196 |31072 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84038 |1196 |31072 |0 |1 |2774A4|0 |2 |0 |
-ROW |84039 |1197 |31103 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84040 |1197 |31074 |0 |1 |2774A4|0 |2 |0 |
-ROW |84041 |1198 |31104 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84042 |1198 |31063 |0 |1 |2774A4|0 |2 |0 |
-ROW |84043 |1198 |31111 |0 |2 |F63100|0 |2 |0 |
-ROW |84044 |1198 |31112 |0 |3 |A54F10|0 |2 |0 |
-ROW |84045 |1198 |31084 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |84046 |1199 |31115 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84047 |1199 |31116 |0 |1 |2774A4|0 |2 |0 |
-ROW |84048 |1199 |31062 |0 |2 |F63100|0 |2 |0 |
-ROW |84049 |1199 |31118 |0 |3 |A54F10|0 |2 |0 |
-ROW |84050 |1199 |31056 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |84051 |1200 |31107 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84052 |1200 |31090 |0 |1 |2774A4|0 |2 |0 |
-ROW |84053 |1201 |31097 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84054 |1201 |31096 |0 |1 |2774A4|0 |2 |0 |
-ROW |84055 |1202 |31089 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84056 |1202 |31061 |0 |1 |2774A4|0 |2 |0 |
-ROW |84057 |1203 |31064 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84058 |1204 |31065 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84059 |1204 |31066 |0 |1 |2774A4|0 |2 |0 |
-ROW |84060 |1204 |31068 |0 |2 |F63100|0 |2 |0 |
-ROW |84061 |1204 |31070 |0 |3 |A54F10|0 |2 |0 |
-ROW |84062 |1204 |31101 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |84063 |1204 |31106 |0 |5 |6C59DC|0 |2 |0 |
-ROW |84064 |1204 |31114 |0 |6 |AC8C14|0 |2 |0 |
-ROW |84065 |1205 |31069 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84066 |1206 |31076 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84067 |1206 |31078 |0 |1 |2774A4|0 |2 |0 |
-ROW |84068 |1206 |31109 |0 |2 |F63100|0 |2 |0 |
-ROW |84069 |1206 |31075 |0 |3 |A54F10|0 |2 |0 |
-ROW |84070 |1207 |31080 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84071 |1207 |31095 |0 |1 |2774A4|0 |2 |0 |
-ROW |84072 |1208 |31113 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84073 |1208 |31118 |0 |1 |2774A4|0 |2 |0 |
-ROW |84074 |1209 |31058 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84075 |1209 |31077 |0 |1 |2774A4|0 |2 |0 |
-ROW |84076 |1209 |31056 |0 |2 |F63100|0 |2 |0 |
-ROW |84077 |1209 |31117 |0 |3 |A54F10|0 |2 |0 |
-ROW |84078 |1109 |30453 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84079 |1109 |30455 |5 |1 |2774A4|0 |2 |0 |
-ROW |84080 |1110 |30471 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84081 |1110 |30470 |0 |1 |2774A4|0 |2 |0 |
-ROW |84082 |1110 |30466 |0 |2 |F63100|0 |2 |0 |
-ROW |84083 |1110 |30441 |0 |3 |A54F10|0 |2 |0 |
-ROW |84084 |1111 |30463 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84085 |1111 |30452 |0 |1 |2774A4|0 |2 |0 |
-ROW |84086 |1111 |30451 |0 |2 |F63100|0 |2 |0 |
-ROW |84087 |1111 |30437 |0 |3 |A54F10|0 |2 |0 |
-ROW |84088 |1112 |30456 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84089 |1112 |30457 |0 |1 |2774A4|0 |2 |0 |
-ROW |84090 |1112 |30458 |0 |2 |F63100|0 |2 |0 |
-ROW |84091 |1112 |30459 |0 |3 |A54F10|0 |2 |0 |
-ROW |84092 |1113 |30442 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84093 |1113 |30444 |0 |1 |2774A4|0 |2 |0 |
-ROW |84094 |1113 |30445 |0 |2 |F63100|0 |2 |0 |
-ROW |84095 |1114 |30446 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84096 |1114 |30447 |0 |1 |2774A4|0 |2 |0 |
-ROW |84097 |1114 |31168 |0 |2 |F63100|0 |2 |0 |
-ROW |84098 |1114 |30449 |0 |3 |A54F10|0 |2 |0 |
-ROW |84099 |1136 |30659 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84100 |1136 |30661 |5 |1 |2774A4|0 |2 |0 |
-ROW |84101 |1137 |30677 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84102 |1137 |30676 |0 |1 |2774A4|0 |2 |0 |
-ROW |84103 |1137 |30672 |0 |2 |F63100|0 |2 |0 |
-ROW |84104 |1137 |30647 |0 |3 |A54F10|0 |2 |0 |
-ROW |84105 |1138 |30669 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84106 |1138 |30658 |0 |1 |2774A4|0 |2 |0 |
-ROW |84107 |1138 |30657 |0 |2 |F63100|0 |2 |0 |
-ROW |84108 |1138 |30643 |0 |3 |A54F10|0 |2 |0 |
-ROW |84109 |1139 |30662 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84110 |1139 |30663 |0 |1 |2774A4|0 |2 |0 |
-ROW |84111 |1139 |30664 |0 |2 |F63100|0 |2 |0 |
-ROW |84112 |1139 |30665 |0 |3 |A54F10|0 |2 |0 |
-ROW |84113 |1140 |30648 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84114 |1140 |30650 |0 |1 |2774A4|0 |2 |0 |
-ROW |84115 |1140 |30651 |0 |2 |F63100|0 |2 |0 |
-ROW |84116 |1141 |30652 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84117 |1141 |30653 |0 |1 |2774A4|0 |2 |0 |
-ROW |84118 |1141 |31172 |0 |2 |F63100|0 |2 |0 |
-ROW |84119 |1141 |30655 |0 |3 |A54F10|0 |2 |0 |
-ROW |84120 |1115 |30506 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84121 |1115 |30507 |5 |1 |2774A4|0 |2 |0 |
-ROW |84122 |1116 |30504 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84123 |1116 |30505 |0 |1 |2774A4|0 |2 |0 |
-ROW |84124 |1116 |30518 |0 |2 |F63100|0 |2 |0 |
-ROW |84125 |1116 |30492 |0 |3 |A54F10|0 |2 |0 |
-ROW |84126 |1117 |30493 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84127 |1117 |30500 |0 |1 |2774A4|0 |2 |0 |
-ROW |84128 |1117 |30486 |0 |2 |F63100|0 |2 |0 |
-ROW |84129 |1117 |30488 |0 |3 |A54F10|0 |2 |0 |
-ROW |84130 |1118 |30508 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84131 |1118 |30509 |0 |1 |2774A4|0 |2 |0 |
-ROW |84132 |1118 |30503 |0 |2 |F63100|0 |2 |0 |
-ROW |84133 |1118 |30510 |0 |3 |A54F10|0 |2 |0 |
-ROW |84134 |1119 |30491 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84135 |1119 |30494 |0 |1 |2774A4|0 |2 |0 |
-ROW |84136 |1119 |30495 |0 |2 |F63100|0 |2 |0 |
-ROW |84137 |1120 |30496 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84138 |1120 |30497 |0 |1 |2774A4|0 |2 |0 |
-ROW |84139 |1120 |31176 |0 |2 |F63100|0 |2 |0 |
-ROW |84140 |1120 |30499 |0 |3 |A54F10|0 |2 |0 |
-ROW |84141 |1266 |31773 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84142 |1266 |31774 |0 |1 |2774A4|0 |2 |0 |
-ROW |84143 |1267 |31777 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84144 |1267 |31779 |0 |1 |2774A4|0 |2 |0 |
-ROW |84145 |1267 |33168 |0 |2 |F63100|0 |2 |0 |
-ROW |84146 |1268 |31685 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84147 |1268 |31738 |0 |1 |2774A4|0 |2 |0 |
-ROW |84148 |1269 |31723 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84149 |1269 |31757 |0 |1 |2774A4|0 |2 |0 |
-ROW |84150 |1269 |31721 |0 |2 |F63100|0 |2 |0 |
-ROW |84151 |1270 |31728 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84152 |1270 |31759 |0 |1 |2774A4|0 |2 |0 |
-ROW |84153 |1271 |31745 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84154 |1271 |31727 |0 |1 |2774A4|0 |2 |0 |
-ROW |84155 |1272 |31687 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84156 |1272 |31710 |0 |1 |2774A4|0 |2 |0 |
-ROW |84157 |1273 |31705 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84158 |1273 |31703 |0 |1 |2774A4|0 |2 |0 |
-ROW |84159 |1273 |31706 |0 |2 |F63100|0 |2 |0 |
-ROW |84160 |1273 |31701 |0 |3 |A54F10|0 |2 |0 |
-ROW |84161 |1273 |31708 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |84162 |1274 |31715 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84163 |1274 |31726 |0 |1 |2774A4|0 |2 |0 |
-ROW |84164 |1274 |31717 |0 |2 |F63100|0 |2 |0 |
-ROW |84165 |1274 |31716 |0 |3 |A54F10|0 |2 |0 |
-ROW |84166 |1274 |31714 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |84167 |1274 |31713 |0 |5 |6C59DC|0 |2 |0 |
-ROW |84168 |1210 |31261 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84169 |1210 |31262 |0 |1 |2774A4|0 |2 |0 |
-ROW |84170 |1211 |31269 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84171 |1211 |31271 |0 |1 |2774A4|0 |2 |0 |
-ROW |84172 |1211 |33170 |0 |2 |F63100|0 |2 |0 |
-ROW |84173 |1212 |31233 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84174 |1212 |31234 |0 |1 |2774A4|0 |2 |0 |
-ROW |84175 |1213 |31216 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84176 |1213 |31237 |0 |1 |2774A4|0 |2 |0 |
-ROW |84177 |1213 |31214 |0 |2 |F63100|0 |2 |0 |
-ROW |84178 |1214 |31191 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84179 |1214 |31221 |0 |1 |2774A4|0 |2 |0 |
-ROW |84180 |1215 |31206 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84181 |1215 |31220 |0 |1 |2774A4|0 |2 |0 |
-ROW |84182 |1216 |31192 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84183 |1216 |31193 |0 |1 |2774A4|0 |2 |0 |
-ROW |84184 |1217 |31200 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84185 |1217 |31197 |0 |1 |2774A4|0 |2 |0 |
-ROW |84186 |1217 |31201 |0 |2 |F63100|0 |2 |0 |
-ROW |84187 |1217 |31198 |0 |3 |A54F10|0 |2 |0 |
-ROW |84188 |1217 |31202 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |84189 |1218 |31207 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84190 |1218 |31208 |0 |1 |2774A4|0 |2 |0 |
-ROW |84191 |1218 |31210 |0 |2 |F63100|0 |2 |0 |
-ROW |84192 |1218 |31209 |0 |3 |A54F10|0 |2 |0 |
-ROW |84193 |1218 |31219 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |84194 |1218 |31205 |0 |5 |6C59DC|0 |2 |0 |
-ROW |84195 |1380 |32423 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84196 |1380 |32421 |0 |1 |2774A4|0 |2 |0 |
-ROW |84197 |1381 |32405 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84198 |1382 |32426 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84199 |1382 |32408 |0 |1 |2774A4|0 |2 |0 |
-ROW |84200 |1382 |32422 |0 |2 |F63100|0 |2 |0 |
-ROW |84201 |1382 |32425 |0 |3 |A54F10|0 |2 |0 |
-ROW |84202 |1383 |32409 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84203 |1384 |32419 |0 |0 |1A7C11|1 |2 |0 |
-ROW |84204 |1384 |32416 |0 |1 |2774A4|1 |2 |0 |
-ROW |84205 |1384 |32413 |0 |2 |F63100|1 |2 |0 |
-ROW |84206 |1384 |32418 |5 |3 |A54F10|0 |2 |0 |
-ROW |84207 |1384 |32415 |5 |4 |FC6EA3|0 |2 |0 |
-ROW |84208 |1384 |32412 |5 |5 |6C59DC|0 |2 |0 |
-ROW |84209 |1385 |32420 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84210 |1385 |32417 |0 |1 |2774A4|0 |2 |0 |
-ROW |84211 |1385 |32414 |0 |2 |F63100|0 |2 |0 |
-ROW |84212 |1386 |32433 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84213 |1386 |32432 |0 |1 |2774A4|1 |2 |0 |
-ROW |84214 |1387 |32431 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84215 |1387 |32430 |0 |1 |2774A4|0 |2 |0 |
-ROW |84216 |1387 |32429 |0 |2 |F63100|0 |2 |0 |
-ROW |84217 |1387 |32428 |0 |3 |A54F10|0 |2 |0 |
-ROW |84218 |1387 |32427 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |84219 |1388 |32386 |0 |0 |1A7C11|1 |2 |0 |
-ROW |84220 |1388 |32391 |0 |1 |2774A4|1 |2 |0 |
-ROW |84221 |1388 |32387 |0 |2 |F63100|1 |2 |0 |
-ROW |84222 |1388 |32390 |0 |3 |A54F10|1 |2 |0 |
-ROW |84223 |1388 |32395 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |84224 |1388 |32389 |0 |5 |6C59DC|0 |2 |0 |
-ROW |84225 |1389 |32393 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84226 |1389 |32392 |0 |1 |2774A4|0 |2 |0 |
-ROW |84227 |1389 |32394 |0 |2 |F63100|1 |2 |0 |
-ROW |84228 |1389 |32388 |0 |3 |A54F10|1 |2 |0 |
-ROW |84229 |1390 |32401 |5 |0 |1A7C11|1 |2 |0 |
-ROW |84230 |1390 |32402 |0 |1 |2774A4|0 |2 |0 |
-ROW |84231 |1390 |32397 |0 |2 |F63100|1 |2 |0 |
-ROW |84232 |1390 |32398 |0 |3 |A54F10|1 |2 |0 |
-ROW |84233 |1390 |32399 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |84234 |1390 |32400 |0 |5 |6C59DC|1 |2 |0 |
-ROW |84235 |1390 |32396 |0 |6 |AC8C14|1 |2 |0 |
-ROW |84236 |1391 |32367 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84237 |1391 |32366 |0 |1 |2774A4|1 |2 |0 |
-ROW |84238 |1392 |32370 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84239 |1393 |32382 |0 |0 |1A7C11|1 |2 |0 |
-ROW |84240 |1393 |32381 |0 |1 |2774A4|1 |2 |0 |
-ROW |84241 |1393 |32383 |0 |2 |F63100|1 |2 |0 |
-ROW |84242 |1393 |32384 |0 |3 |A54F10|1 |2 |0 |
-ROW |84243 |1394 |32377 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84244 |1394 |32374 |0 |1 |2774A4|1 |2 |0 |
-ROW |84245 |1395 |32403 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84246 |1395 |32385 |0 |1 |2774A4|1 |2 |0 |
-ROW |84247 |1219 |31363 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84248 |1219 |31346 |0 |1 |2774A4|0 |2 |0 |
-ROW |84249 |1219 |31345 |0 |2 |F63100|0 |2 |0 |
-ROW |84250 |1219 |31344 |0 |3 |A54F10|0 |2 |0 |
-ROW |84251 |1219 |31343 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |84252 |1219 |31342 |0 |5 |6C59DC|0 |2 |0 |
-ROW |84253 |1219 |31340 |0 |6 |AC8C14|0 |2 |0 |
-ROW |84254 |1219 |31339 |0 |7 |611F27|0 |2 |0 |
-ROW |84255 |1219 |31341 |0 |8 |F230E0|0 |2 |0 |
-ROW |84256 |1219 |31341 |0 |9 |FFAD40|0 |2 |0 |
-ROW |84257 |1220 |31337 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84258 |1221 |31360 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84259 |1221 |31359 |0 |1 |2774A4|0 |2 |0 |
-ROW |84260 |1221 |31357 |0 |2 |F63100|0 |2 |0 |
-ROW |84261 |1221 |31356 |0 |3 |A54F10|0 |2 |0 |
-ROW |84262 |1221 |31354 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |84263 |1221 |31353 |0 |5 |6C59DC|0 |2 |0 |
-ROW |84264 |1221 |31352 |0 |6 |AC8C14|0 |2 |0 |
-ROW |84265 |1221 |31350 |0 |7 |611F27|0 |2 |0 |
-ROW |84266 |1221 |31351 |0 |8 |F230E0|0 |2 |0 |
-ROW |84267 |1221 |31338 |0 |9 |FFAD40|0 |2 |0 |
-ROW |84268 |1221 |31349 |0 |10 |40CDFF|0 |2 |0 |
-ROW |84269 |1221 |31348 |0 |11 |40FFA0|0 |2 |0 |
-ROW |84270 |1221 |31347 |0 |12 |AE4500|0 |2 |0 |
-ROW |84271 |1222 |31336 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84272 |1456 |33178 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84273 |1456 |33179 |0 |1 |2774A4|0 |2 |0 |
-ROW |84274 |1456 |33180 |0 |2 |F63100|0 |2 |0 |
-ROW |84275 |1087 |30346 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84276 |1087 |30345 |0 |1 |2774A4|0 |2 |0 |
-ROW |84277 |1088 |30350 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84278 |1088 |30349 |5 |1 |2774A4|0 |2 |0 |
-ROW |84279 |1089 |30396 |2 |0 |1A7C11|0 |2 |0 |
-ROW |84280 |1090 |30398 |2 |0 |1A7C11|0 |2 |0 |
-ROW |84281 |1091 |30322 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84282 |1091 |30277 |5 |1 |2774A4|0 |2 |0 |
-ROW |84283 |1092 |30284 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84284 |1093 |30313 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84285 |1093 |30314 |0 |1 |2774A4|0 |2 |0 |
-ROW |84286 |1093 |30315 |5 |2 |F63100|0 |2 |0 |
-ROW |84287 |1093 |30316 |0 |3 |A54F10|0 |2 |0 |
-ROW |84288 |1094 |30279 |2 |0 |1A7C11|0 |2 |0 |
-ROW |84289 |1094 |30280 |2 |1 |2774A4|0 |2 |0 |
-ROW |84290 |1095 |30290 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84291 |1095 |30293 |0 |1 |2774A4|0 |2 |0 |
-ROW |84292 |1096 |30318 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84293 |1096 |30308 |2 |1 |2774A4|0 |2 |0 |
-ROW |84294 |1096 |30320 |2 |2 |F63100|0 |2 |0 |
-ROW |84295 |1097 |30317 |2 |0 |1A7C11|0 |2 |0 |
-ROW |84296 |1098 |30289 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84297 |1098 |30291 |5 |1 |2774A4|0 |2 |0 |
-ROW |84298 |1099 |30334 |2 |0 |1A7C11|0 |2 |0 |
-ROW |84299 |1099 |30325 |2 |1 |2774A4|0 |2 |0 |
-ROW |84300 |1100 |30306 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84301 |1101 |30274 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84302 |1102 |30281 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84303 |1577 |34351 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84304 |1577 |34350 |0 |1 |2774A4|0 |2 |0 |
-ROW |84305 |1578 |34387 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84306 |1578 |34388 |2 |1 |2774A4|0 |2 |0 |
-ROW |84307 |1579 |34393 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84308 |1579 |34386 |0 |1 |2774A4|0 |2 |0 |
-ROW |84309 |1580 |34370 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84310 |1580 |34384 |0 |1 |2774A4|0 |2 |0 |
-ROW |84311 |1580 |34383 |0 |2 |F63100|0 |2 |0 |
-ROW |84312 |1581 |34438 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84313 |1581 |34413 |0 |1 |2774A4|0 |2 |0 |
-ROW |84314 |1581 |34427 |0 |2 |F63100|0 |2 |0 |
-ROW |84315 |1582 |34420 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84316 |1582 |34419 |0 |1 |2774A4|0 |2 |0 |
-ROW |84317 |1582 |34418 |0 |2 |F63100|0 |2 |0 |
-ROW |84318 |1060 |30159 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84319 |1065 |30161 |0 |0 |969696|0 |9 |2 |
-ROW |84320 |1065 |30162 |0 |1 |C80000|0 |9 |0 |
-ROW |84321 |1070 |30142 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84322 |741 |27084 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84323 |741 |27085 |2 |1 |2774A4|0 |2 |0 |
-ROW |84324 |741 |27083 |0 |2 |F63100|1 |2 |0 |
-ROW |84325 |741 |27086 |0 |3 |A54F10|1 |2 |0 |
-ROW |84326 |741 |27082 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |84327 |741 |27079 |0 |5 |6C59DC|1 |2 |0 |
-ROW |84328 |745 |27104 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84329 |745 |27105 |2 |1 |2774A4|0 |2 |0 |
-ROW |84330 |745 |27103 |0 |2 |F63100|1 |2 |0 |
-ROW |84331 |745 |27106 |0 |3 |A54F10|1 |2 |0 |
-ROW |84332 |745 |27102 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |84333 |745 |27099 |0 |5 |6C59DC|1 |2 |0 |
-ROW |84334 |766 |27124 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84335 |766 |27125 |2 |1 |2774A4|0 |2 |0 |
-ROW |84336 |766 |27123 |0 |2 |F63100|1 |2 |0 |
-ROW |84337 |766 |27126 |0 |3 |A54F10|1 |2 |0 |
-ROW |84338 |766 |27122 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |84339 |766 |27119 |0 |5 |6C59DC|1 |2 |0 |
-ROW |84340 |668 |27208 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84341 |1032 |30088 |2 |0 |1A7C11|0 |2 |0 |
-ROW |84342 |1032 |30087 |5 |1 |2774A4|0 |2 |0 |
-ROW |84343 |1033 |30089 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84344 |671 |27240 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84345 |1034 |30093 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84346 |675 |27294 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84347 |1035 |30094 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84348 |1800 |36729 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84349 |1801 |36732 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84350 |1802 |36739 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84351 |1802 |36746 |0 |1 |2774A4|0 |2 |0 |
-ROW |84352 |1802 |36737 |0 |2 |F63100|0 |2 |0 |
-ROW |84353 |1802 |36744 |0 |3 |A54F10|0 |2 |0 |
-ROW |84354 |1802 |36736 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |84355 |1802 |36743 |0 |5 |6C59DC|0 |2 |0 |
-ROW |84356 |1803 |36747 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84357 |1803 |36740 |0 |1 |2774A4|0 |2 |0 |
-ROW |84358 |1804 |36738 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84359 |1804 |36745 |0 |1 |2774A4|0 |2 |0 |
-ROW |84360 |1805 |36763 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84361 |1805 |36764 |0 |1 |2774A4|0 |2 |0 |
-ROW |84362 |1549 |33966 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84363 |1550 |33971 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84364 |1551 |33974 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84365 |1551 |33977 |2 |1 |2774A4|0 |2 |0 |
-ROW |84366 |1551 |33976 |0 |2 |F63100|1 |2 |0 |
-ROW |84367 |1551 |33973 |0 |3 |A54F10|1 |2 |0 |
-ROW |84368 |1551 |33975 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |84369 |1551 |33972 |0 |5 |6C59DC|1 |2 |0 |
-ROW |84370 |1552 |34007 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84371 |1553 |34012 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84372 |1554 |34015 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84373 |1554 |34018 |2 |1 |2774A4|0 |2 |0 |
-ROW |84374 |1554 |34017 |0 |2 |F63100|1 |2 |0 |
-ROW |84375 |1554 |34014 |0 |3 |A54F10|1 |2 |0 |
-ROW |84376 |1554 |34016 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |84377 |1554 |34013 |0 |5 |6C59DC|1 |2 |0 |
-ROW |84378 |1555 |34048 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84379 |1556 |34053 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84380 |1557 |34056 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84381 |1557 |34059 |2 |1 |2774A4|0 |2 |0 |
-ROW |84382 |1557 |34058 |0 |2 |F63100|1 |2 |0 |
-ROW |84383 |1557 |34055 |0 |3 |A54F10|1 |2 |0 |
-ROW |84384 |1557 |34057 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |84385 |1557 |34054 |0 |5 |6C59DC|1 |2 |0 |
-ROW |84386 |1558 |34089 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84387 |1559 |34094 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84388 |1560 |34097 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84389 |1560 |34100 |2 |1 |2774A4|0 |2 |0 |
-ROW |84390 |1560 |34099 |0 |2 |F63100|1 |2 |0 |
-ROW |84391 |1560 |34096 |0 |3 |A54F10|1 |2 |0 |
-ROW |84392 |1560 |34098 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |84393 |1560 |34095 |0 |5 |6C59DC|1 |2 |0 |
-ROW |84394 |1561 |34130 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84395 |1562 |34135 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84396 |1563 |34138 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84397 |1563 |34141 |2 |1 |2774A4|0 |2 |0 |
-ROW |84398 |1563 |34140 |0 |2 |F63100|1 |2 |0 |
-ROW |84399 |1563 |34137 |0 |3 |A54F10|1 |2 |0 |
-ROW |84400 |1563 |34139 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |84401 |1563 |34136 |0 |5 |6C59DC|1 |2 |0 |
-ROW |84402 |1038 |30101 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84403 |786 |28246 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84404 |687 |27417 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84405 |691 |27376 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84406 |694 |27478 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84407 |1042 |30105 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84408 |1043 |30107 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84409 |698 |27511 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84410 |1044 |30108 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84411 |701 |27547 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84412 |1045 |27591 |2 |0 |1A7C11|0 |2 |0 |
-ROW |84413 |1045 |30110 |5 |1 |2774A4|0 |2 |0 |
-ROW |84414 |1046 |30111 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84415 |704 |27586 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84416 |1766 |36536 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84417 |1767 |36538 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84418 |1768 |36540 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84419 |1769 |36543 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84420 |1770 |36547 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84421 |1770 |36562 |0 |1 |2774A4|0 |2 |0 |
-ROW |84422 |1770 |36553 |0 |2 |F63100|0 |2 |0 |
-ROW |84423 |1770 |36544 |0 |3 |A54F10|0 |2 |0 |
-ROW |84424 |1770 |36565 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |84425 |1770 |36568 |0 |5 |6C59DC|0 |2 |0 |
-ROW |84426 |1770 |36556 |0 |6 |AC8C14|0 |2 |0 |
-ROW |84427 |1771 |36546 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84428 |1771 |36561 |0 |1 |2774A4|0 |2 |0 |
-ROW |84429 |1771 |36552 |0 |2 |F63100|0 |2 |0 |
-ROW |84430 |1771 |36558 |0 |3 |A54F10|0 |2 |0 |
-ROW |84431 |1771 |36564 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |84432 |1771 |36567 |0 |5 |6C59DC|0 |2 |0 |
-ROW |84433 |1771 |36554 |0 |6 |AC8C14|0 |2 |0 |
-ROW |84434 |1772 |36570 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84435 |1772 |36560 |0 |1 |2774A4|0 |2 |0 |
-ROW |84436 |1772 |36551 |0 |2 |F63100|0 |2 |0 |
-ROW |84437 |1772 |36569 |0 |3 |A54F10|0 |2 |0 |
-ROW |84438 |1772 |36563 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |84439 |1772 |36566 |0 |5 |6C59DC|0 |2 |0 |
-ROW |84440 |1772 |36555 |0 |6 |AC8C14|0 |2 |0 |
-ROW |84441 |1773 |36571 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84442 |1774 |36573 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84443 |1775 |36575 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84444 |1775 |36577 |0 |1 |2774A4|0 |2 |0 |
-ROW |84445 |1776 |36584 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84446 |1776 |36581 |0 |1 |2774A4|0 |2 |0 |
-ROW |84447 |1777 |36583 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84448 |1777 |36580 |0 |1 |2774A4|0 |2 |0 |
-ROW |84449 |1778 |36587 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84450 |1778 |36585 |0 |1 |2774A4|0 |2 |0 |
-ROW |84451 |1778 |36586 |0 |2 |F63100|0 |2 |0 |
-ROW |84452 |1779 |36594 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84453 |1779 |36590 |0 |1 |2774A4|1 |2 |0 |
-ROW |84454 |1779 |36600 |0 |2 |F63100|0 |2 |0 |
-ROW |84455 |1779 |36596 |0 |3 |A54F10|1 |2 |0 |
-ROW |84456 |1779 |36593 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |84457 |1779 |36599 |0 |5 |6C59DC|0 |2 |0 |
-ROW |84458 |1780 |36605 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84459 |1780 |36604 |0 |1 |2774A4|1 |2 |0 |
-ROW |84460 |1780 |36607 |0 |2 |F63100|0 |2 |0 |
-ROW |84461 |1780 |36606 |0 |3 |A54F10|1 |2 |0 |
-ROW |84462 |1781 |36613 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84463 |1781 |36612 |0 |1 |2774A4|1 |2 |0 |
-ROW |84464 |1781 |36615 |0 |2 |F63100|0 |2 |0 |
-ROW |84465 |1781 |36614 |0 |3 |A54F10|1 |2 |0 |
-ROW |84466 |1782 |36621 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84467 |1782 |36620 |0 |1 |2774A4|1 |2 |0 |
-ROW |84468 |1782 |36623 |0 |2 |F63100|0 |2 |0 |
-ROW |84469 |1782 |36622 |0 |3 |A54F10|1 |2 |0 |
-ROW |84470 |1783 |36628 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84471 |1783 |36626 |0 |1 |2774A4|0 |2 |0 |
-ROW |84472 |1783 |36627 |0 |2 |F63100|0 |2 |0 |
-ROW |84473 |1784 |36508 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84474 |1784 |36506 |0 |1 |2774A4|0 |2 |0 |
-ROW |84475 |1784 |36504 |0 |2 |F63100|0 |2 |0 |
-ROW |84476 |1784 |36510 |0 |3 |A54F10|0 |2 |0 |
-ROW |84477 |1784 |36509 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |84478 |1784 |36507 |0 |5 |6C59DC|0 |2 |0 |
-ROW |84479 |708 |27671 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84480 |1047 |30112 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84481 |1048 |30114 |2 |0 |1A7C11|0 |2 |0 |
-ROW |84482 |1048 |30113 |5 |1 |2774A4|0 |2 |0 |
-ROW |84483 |1049 |30115 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84484 |775 |28143 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84485 |714 |27753 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84486 |1050 |30116 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84487 |856 |28894 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84488 |1051 |30118 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84489 |1564 |34166 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84490 |1564 |34169 |2 |1 |2774A4|0 |2 |0 |
-ROW |84491 |1564 |34168 |0 |2 |F63100|1 |2 |0 |
-ROW |84492 |1564 |34165 |0 |3 |A54F10|1 |2 |0 |
-ROW |84493 |1564 |34167 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |84494 |1564 |34164 |0 |5 |6C59DC|1 |2 |0 |
-ROW |84495 |1565 |34174 |0 |0 |969696|0 |9 |2 |
-ROW |84496 |1565 |34175 |0 |1 |C80000|0 |9 |0 |
-ROW |84497 |1566 |34178 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84498 |1567 |34154 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84499 |724 |27904 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84500 |1396 |32439 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84501 |1396 |32437 |0 |1 |2774A4|0 |2 |0 |
-ROW |84502 |1396 |32436 |0 |2 |F63100|0 |2 |0 |
-ROW |84503 |1396 |32438 |0 |3 |A54F10|0 |2 |0 |
-ROW |84504 |1052 |27907 |0 |0 |969696|0 |9 |2 |
-ROW |84505 |1052 |27908 |0 |1 |C80000|0 |9 |0 |
-ROW |84506 |1053 |30120 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84507 |1457 |33206 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84508 |1457 |33193 |5 |1 |2774A4|0 |2 |0 |
-ROW |84509 |1458 |33195 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84510 |1458 |33203 |5 |1 |2774A4|0 |2 |0 |
-ROW |84511 |1458 |33202 |5 |2 |F63100|0 |2 |0 |
-ROW |84512 |1459 |33200 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84513 |1459 |33194 |5 |1 |2774A4|0 |2 |0 |
-ROW |84514 |1460 |33187 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84515 |1460 |33186 |5 |1 |2774A4|0 |2 |0 |
-ROW |84516 |1460 |33204 |5 |2 |F63100|0 |2 |0 |
-ROW |84517 |1461 |33226 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84518 |1461 |33215 |5 |1 |2774A4|0 |2 |0 |
-ROW |84519 |1462 |33207 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84520 |1463 |33223 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84521 |1463 |33218 |5 |1 |2774A4|0 |2 |0 |
-ROW |84522 |1464 |33210 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84523 |1464 |33209 |5 |1 |2774A4|0 |2 |0 |
-ROW |84524 |1464 |33224 |5 |2 |F63100|0 |2 |0 |
-ROW |84525 |1465 |33249 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84526 |1465 |33236 |5 |1 |2774A4|0 |2 |0 |
-ROW |84527 |1466 |33238 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84528 |1466 |33246 |5 |1 |2774A4|0 |2 |0 |
-ROW |84529 |1466 |33245 |5 |2 |F63100|0 |2 |0 |
-ROW |84530 |1467 |33243 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84531 |1467 |33237 |5 |1 |2774A4|0 |2 |0 |
-ROW |84532 |1468 |33230 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84533 |1468 |33229 |5 |1 |2774A4|0 |2 |0 |
-ROW |84534 |1468 |33247 |5 |2 |F63100|0 |2 |0 |
-ROW |84535 |1469 |33258 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84536 |1470 |33251 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84537 |1471 |33256 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84538 |1472 |33277 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84539 |1473 |33274 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84540 |1473 |33273 |5 |1 |2774A4|0 |2 |0 |
-ROW |84541 |1473 |33272 |5 |2 |F63100|0 |2 |0 |
-ROW |84542 |1474 |33270 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84543 |1475 |33269 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84544 |1476 |33261 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84545 |1476 |33275 |5 |1 |2774A4|0 |2 |0 |
-ROW |84546 |1477 |33296 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84547 |1478 |33293 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84548 |1478 |33292 |5 |1 |2774A4|0 |2 |0 |
-ROW |84549 |1478 |33291 |5 |2 |F63100|0 |2 |0 |
-ROW |84550 |1479 |33289 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84551 |1480 |33288 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84552 |1481 |33280 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84553 |1481 |33294 |5 |1 |2774A4|0 |2 |0 |
-ROW |84554 |1482 |33312 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84555 |1483 |33313 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84556 |1484 |33314 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84557 |1485 |33319 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84558 |1486 |33320 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84559 |1487 |33304 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84560 |1487 |33305 |5 |1 |2774A4|0 |2 |0 |
-ROW |84561 |727 |27936 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84562 |1054 |27935 |2 |0 |1A7C11|0 |2 |0 |
-ROW |84563 |1054 |30122 |5 |1 |2774A4|0 |2 |0 |
-ROW |84564 |1055 |30123 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84565 |730 |27975 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84566 |1056 |30126 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84567 |733 |28003 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84568 |1057 |30131 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84569 |736 |28031 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84570 |1058 |30136 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84571 |1810 |36846 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84572 |1810 |36847 |0 |1 |2774A4|0 |2 |0 |
-ROW |84573 |1810 |36848 |0 |2 |F63100|0 |2 |0 |
-ROW |84574 |1810 |36849 |0 |3 |A54F10|0 |2 |0 |
-ROW |84575 |1811 |36850 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84576 |1811 |36851 |0 |1 |2774A4|0 |2 |0 |
-ROW |84577 |1812 |36852 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84578 |1812 |36853 |0 |1 |2774A4|0 |2 |0 |
-ROW |84579 |1812 |36858 |0 |2 |F63100|0 |2 |0 |
-ROW |84580 |1813 |36855 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84581 |1813 |36856 |0 |1 |2774A4|0 |2 |0 |
-ROW |84582 |1813 |36859 |0 |2 |F63100|0 |2 |0 |
-ROW |84583 |1814 |36870 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84584 |1814 |36868 |0 |1 |2774A4|0 |2 |0 |
-ROW |84585 |1814 |36871 |0 |2 |F63100|0 |2 |0 |
-ROW |84586 |1814 |36873 |0 |3 |A54F10|0 |2 |0 |
-ROW |84587 |1814 |36874 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |84588 |1648 |35196 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84589 |1648 |35199 |0 |1 |2774A4|0 |2 |0 |
-ROW |84590 |1649 |35201 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84591 |1649 |35204 |0 |1 |2774A4|0 |2 |0 |
-ROW |84592 |1650 |35205 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84593 |1651 |35206 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84594 |1652 |35235 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84595 |1652 |35227 |0 |1 |2774A4|0 |2 |0 |
-ROW |84596 |1652 |35237 |0 |2 |F63100|0 |2 |0 |
-ROW |84597 |1652 |35229 |0 |3 |A54F10|0 |2 |0 |
-ROW |84598 |1652 |35238 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |84599 |1652 |35230 |0 |5 |6C59DC|0 |2 |0 |
-ROW |84600 |1653 |35236 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84601 |1653 |35228 |0 |1 |2774A4|0 |2 |0 |
-ROW |84602 |1654 |35226 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84603 |1654 |35234 |0 |1 |2774A4|0 |2 |0 |
-ROW |84604 |1655 |35241 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84605 |1656 |35249 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84606 |1657 |35250 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84607 |1658 |35209 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84608 |1659 |35265 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84609 |1660 |35277 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84610 |1660 |35269 |0 |1 |2774A4|0 |2 |0 |
-ROW |84611 |1660 |35279 |0 |2 |F63100|0 |2 |0 |
-ROW |84612 |1660 |35271 |0 |3 |A54F10|0 |2 |0 |
-ROW |84613 |1660 |35280 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |84614 |1660 |35272 |0 |5 |6C59DC|0 |2 |0 |
-ROW |84615 |1661 |35278 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84616 |1661 |35270 |0 |1 |2774A4|0 |2 |0 |
-ROW |84617 |1662 |35268 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84618 |1662 |35276 |0 |1 |2774A4|0 |2 |0 |
-ROW |84619 |1663 |35283 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84620 |1664 |35284 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84621 |1665 |35253 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84622 |1666 |35301 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84623 |1667 |35302 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84624 |1668 |35303 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84625 |1669 |35304 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84626 |1670 |35312 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84627 |1670 |35322 |0 |1 |2774A4|0 |2 |0 |
-ROW |84628 |1670 |35313 |0 |2 |F63100|0 |2 |0 |
-ROW |84629 |1670 |35308 |0 |3 |A54F10|0 |2 |0 |
-ROW |84630 |1670 |35315 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |84631 |1670 |35309 |0 |5 |6C59DC|0 |2 |0 |
-ROW |84632 |1671 |35306 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84633 |1671 |35307 |0 |1 |2774A4|0 |2 |0 |
-ROW |84634 |1672 |35329 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84635 |1672 |35336 |0 |1 |2774A4|0 |2 |0 |
-ROW |84636 |1672 |35327 |0 |2 |F63100|0 |2 |0 |
-ROW |84637 |1672 |35334 |0 |3 |A54F10|0 |2 |0 |
-ROW |84638 |1672 |35326 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |84639 |1672 |35333 |0 |5 |6C59DC|0 |2 |0 |
-ROW |84640 |1673 |35328 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84641 |1673 |35335 |0 |1 |2774A4|0 |2 |0 |
-ROW |84642 |1674 |35337 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84643 |1674 |35330 |0 |1 |2774A4|0 |2 |0 |
-ROW |84644 |1675 |35350 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84645 |1676 |35351 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84646 |1677 |35368 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84647 |1678 |35369 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84648 |1679 |35370 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84649 |1680 |35371 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84650 |1681 |35379 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84651 |1681 |35389 |0 |1 |2774A4|0 |2 |0 |
-ROW |84652 |1681 |35380 |0 |2 |F63100|0 |2 |0 |
-ROW |84653 |1681 |35375 |0 |3 |A54F10|0 |2 |0 |
-ROW |84654 |1681 |35382 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |84655 |1681 |35376 |0 |5 |6C59DC|0 |2 |0 |
-ROW |84656 |1682 |35373 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84657 |1682 |35374 |0 |1 |2774A4|0 |2 |0 |
-ROW |84658 |1683 |35396 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84659 |1683 |35403 |0 |1 |2774A4|0 |2 |0 |
-ROW |84660 |1683 |35394 |0 |2 |F63100|0 |2 |0 |
-ROW |84661 |1683 |35401 |0 |3 |A54F10|0 |2 |0 |
-ROW |84662 |1683 |35393 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |84663 |1683 |35400 |0 |5 |6C59DC|0 |2 |0 |
-ROW |84664 |1684 |35395 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84665 |1684 |35402 |0 |1 |2774A4|0 |2 |0 |
-ROW |84666 |1685 |35404 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84667 |1685 |35397 |0 |1 |2774A4|0 |2 |0 |
-ROW |84668 |1686 |35417 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84669 |1687 |35418 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84670 |1688 |35434 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84671 |1689 |35442 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84672 |1689 |35445 |0 |1 |2774A4|0 |2 |0 |
-ROW |84673 |1690 |35447 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84674 |1690 |35450 |0 |1 |2774A4|0 |2 |0 |
-ROW |84675 |1691 |35451 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84676 |1692 |35452 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84677 |1693 |35477 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84678 |1693 |35469 |0 |1 |2774A4|0 |2 |0 |
-ROW |84679 |1693 |35479 |0 |2 |F63100|0 |2 |0 |
-ROW |84680 |1693 |35471 |0 |3 |A54F10|0 |2 |0 |
-ROW |84681 |1693 |35480 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |84682 |1693 |35472 |0 |5 |6C59DC|0 |2 |0 |
-ROW |84683 |1694 |35478 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84684 |1694 |35470 |0 |1 |2774A4|0 |2 |0 |
-ROW |84685 |1695 |35468 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84686 |1695 |35476 |0 |1 |2774A4|0 |2 |0 |
-ROW |84687 |1696 |35483 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84688 |1697 |35455 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84689 |1698 |35519 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84690 |1698 |35511 |0 |1 |2774A4|0 |2 |0 |
-ROW |84691 |1698 |35521 |0 |2 |F63100|0 |2 |0 |
-ROW |84692 |1698 |35513 |0 |3 |A54F10|0 |2 |0 |
-ROW |84693 |1698 |35522 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |84694 |1698 |35514 |0 |5 |6C59DC|0 |2 |0 |
-ROW |84695 |1699 |35520 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84696 |1699 |35512 |0 |1 |2774A4|0 |2 |0 |
-ROW |84697 |1700 |35510 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84698 |1700 |35518 |0 |1 |2774A4|0 |2 |0 |
-ROW |84699 |1701 |35525 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84700 |1702 |35533 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84701 |1703 |35534 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84702 |1704 |35493 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84703 |1705 |35563 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84704 |1705 |35555 |0 |1 |2774A4|0 |2 |0 |
-ROW |84705 |1705 |35565 |0 |2 |F63100|0 |2 |0 |
-ROW |84706 |1705 |35557 |0 |3 |A54F10|0 |2 |0 |
-ROW |84707 |1705 |35566 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |84708 |1705 |35558 |0 |5 |6C59DC|0 |2 |0 |
-ROW |84709 |1706 |35564 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84710 |1706 |35556 |0 |1 |2774A4|0 |2 |0 |
-ROW |84711 |1707 |35554 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84712 |1707 |35562 |0 |1 |2774A4|0 |2 |0 |
-ROW |84713 |1708 |35569 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84714 |1709 |35577 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84715 |1710 |35578 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84716 |1711 |35537 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84717 |1712 |35595 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84718 |1713 |35607 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84719 |1713 |35599 |0 |1 |2774A4|0 |2 |0 |
-ROW |84720 |1713 |35609 |0 |2 |F63100|0 |2 |0 |
-ROW |84721 |1713 |35601 |0 |3 |A54F10|0 |2 |0 |
-ROW |84722 |1713 |35610 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |84723 |1713 |35602 |0 |5 |6C59DC|0 |2 |0 |
-ROW |84724 |1714 |35608 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84725 |1714 |35600 |0 |1 |2774A4|0 |2 |0 |
-ROW |84726 |1715 |35598 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84727 |1715 |35606 |0 |1 |2774A4|0 |2 |0 |
-ROW |84728 |1716 |35613 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84729 |1717 |35621 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84730 |1718 |35622 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84731 |1719 |35581 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84732 |1720 |35639 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84733 |1721 |35651 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84734 |1721 |35643 |0 |1 |2774A4|0 |2 |0 |
-ROW |84735 |1721 |35653 |0 |2 |F63100|0 |2 |0 |
-ROW |84736 |1721 |35645 |0 |3 |A54F10|0 |2 |0 |
-ROW |84737 |1721 |35654 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |84738 |1721 |35646 |0 |5 |6C59DC|0 |2 |0 |
-ROW |84739 |1722 |35652 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84740 |1722 |35644 |0 |1 |2774A4|0 |2 |0 |
-ROW |84741 |1723 |35642 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84742 |1723 |35650 |0 |1 |2774A4|0 |2 |0 |
-ROW |84743 |1724 |35657 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84744 |1725 |35665 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84745 |1726 |35666 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84746 |1727 |35625 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84747 |1728 |35684 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84748 |1729 |35696 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84749 |1729 |35688 |0 |1 |2774A4|0 |2 |0 |
-ROW |84750 |1729 |35698 |0 |2 |F63100|0 |2 |0 |
-ROW |84751 |1729 |35690 |0 |3 |A54F10|0 |2 |0 |
-ROW |84752 |1729 |35699 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |84753 |1729 |35691 |0 |5 |6C59DC|0 |2 |0 |
-ROW |84754 |1730 |35697 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84755 |1730 |35689 |0 |1 |2774A4|0 |2 |0 |
-ROW |84756 |1731 |35687 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84757 |1731 |35695 |0 |1 |2774A4|0 |2 |0 |
-ROW |84758 |1732 |35702 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84759 |1733 |35710 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84760 |1734 |35711 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84761 |1735 |35669 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84762 |1736 |35729 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84763 |1737 |35741 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84764 |1737 |35733 |0 |1 |2774A4|0 |2 |0 |
-ROW |84765 |1737 |35743 |0 |2 |F63100|0 |2 |0 |
-ROW |84766 |1737 |35735 |0 |3 |A54F10|0 |2 |0 |
-ROW |84767 |1737 |35744 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |84768 |1737 |35736 |0 |5 |6C59DC|0 |2 |0 |
-ROW |84769 |1738 |35742 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84770 |1738 |35734 |0 |1 |2774A4|0 |2 |0 |
-ROW |84771 |1739 |35732 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84772 |1739 |35740 |0 |1 |2774A4|0 |2 |0 |
-ROW |84773 |1740 |35747 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84774 |1741 |35755 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84775 |1742 |35756 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84776 |1743 |35714 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84777 |1744 |35774 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84778 |1745 |35787 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84779 |1745 |35779 |0 |1 |2774A4|0 |2 |0 |
-ROW |84780 |1745 |35789 |0 |2 |F63100|0 |2 |0 |
-ROW |84781 |1745 |35781 |0 |3 |A54F10|0 |2 |0 |
-ROW |84782 |1745 |35790 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |84783 |1745 |35782 |0 |5 |6C59DC|0 |2 |0 |
-ROW |84784 |1746 |35788 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84785 |1746 |35780 |0 |1 |2774A4|0 |2 |0 |
-ROW |84786 |1747 |35778 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84787 |1747 |35786 |0 |1 |2774A4|0 |2 |0 |
-ROW |84788 |1748 |35793 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84789 |1749 |35801 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84790 |1750 |35802 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84791 |1751 |35759 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84792 |1223 |31370 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84793 |1223 |31371 |5 |1 |2774A4|0 |2 |0 |
-ROW |84794 |1226 |31380 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84795 |1226 |31383 |5 |1 |2774A4|0 |2 |0 |
-ROW |84796 |1229 |31379 |0 |0 |1A7C11|1 |2 |0 |
-ROW |84797 |1229 |31382 |5 |1 |2774A4|0 |2 |0 |
-ROW |84798 |887 |29211 |0 |0 |969696|0 |9 |2 |
-ROW |84799 |887 |29210 |0 |1 |C80000|0 |9 |0 |
-ROW |84800 |899 |29216 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84801 |899 |29217 |2 |1 |2774A4|0 |2 |0 |
-ROW |84802 |899 |29218 |0 |2 |F63100|1 |2 |0 |
-ROW |84803 |899 |29219 |0 |3 |A54F10|1 |2 |0 |
-ROW |84804 |899 |29220 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |84805 |899 |29221 |0 |5 |6C59DC|1 |2 |0 |
-ROW |84806 |911 |29089 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84807 |911 |29102 |0 |1 |2774A4|0 |2 |0 |
-ROW |84808 |908 |29098 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84809 |908 |29097 |0 |1 |2774A4|0 |2 |0 |
-ROW |84810 |908 |29095 |0 |2 |F63100|0 |2 |0 |
-ROW |84811 |908 |29088 |0 |3 |A54F10|0 |2 |0 |
-ROW |84812 |908 |29094 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |84813 |908 |29093 |0 |5 |6C59DC|0 |2 |0 |
-ROW |84814 |908 |29092 |0 |6 |AC8C14|0 |2 |0 |
-ROW |84815 |908 |29091 |0 |7 |611F27|0 |2 |0 |
-ROW |84816 |908 |29090 |0 |8 |F230E0|0 |2 |0 |
-ROW |84817 |905 |29198 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84818 |917 |29104 |2 |0 |1A7C11|0 |2 |0 |
-ROW |84819 |917 |29105 |5 |1 |2774A4|0 |2 |0 |
-ROW |84820 |914 |31364 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84821 |923 |29118 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84822 |923 |29119 |0 |1 |2774A4|0 |2 |0 |
-ROW |84823 |923 |29117 |0 |2 |F63100|0 |2 |0 |
-ROW |84824 |920 |29107 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84825 |920 |29106 |0 |1 |2774A4|0 |2 |0 |
-ROW |84826 |902 |29096 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84827 |902 |29101 |0 |1 |2774A4|0 |2 |0 |
-ROW |84828 |902 |29100 |0 |2 |F63100|0 |2 |0 |
-ROW |84829 |902 |29087 |0 |3 |A54F10|1 |2 |0 |
-ROW |84830 |1279 |31902 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84831 |1279 |31903 |5 |1 |2774A4|0 |2 |0 |
-ROW |84832 |1281 |31933 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84833 |1281 |31936 |5 |1 |2774A4|0 |2 |0 |
-ROW |84834 |1283 |31932 |0 |0 |1A7C11|1 |2 |0 |
-ROW |84835 |1283 |31935 |5 |1 |2774A4|0 |2 |0 |
-ROW |84836 |1285 |31907 |0 |0 |969696|0 |9 |2 |
-ROW |84837 |1285 |31908 |0 |1 |C80000|0 |9 |0 |
-ROW |84838 |1287 |31911 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84839 |1287 |31914 |2 |1 |2774A4|0 |2 |0 |
-ROW |84840 |1287 |31913 |0 |2 |F63100|1 |2 |0 |
-ROW |84841 |1287 |31910 |0 |3 |A54F10|1 |2 |0 |
-ROW |84842 |1287 |31912 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |84843 |1287 |31909 |0 |5 |6C59DC|1 |2 |0 |
-ROW |84844 |1289 |31831 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84845 |1289 |31820 |0 |1 |2774A4|0 |2 |0 |
-ROW |84846 |1291 |31822 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84847 |1291 |31835 |0 |1 |2774A4|0 |2 |0 |
-ROW |84848 |1291 |31825 |0 |2 |F63100|0 |2 |0 |
-ROW |84849 |1291 |31826 |0 |3 |A54F10|0 |2 |0 |
-ROW |84850 |1291 |31823 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |84851 |1291 |31827 |0 |5 |6C59DC|0 |2 |0 |
-ROW |84852 |1291 |31824 |0 |6 |AC8C14|0 |2 |0 |
-ROW |84853 |1291 |31828 |0 |7 |611F27|0 |2 |0 |
-ROW |84854 |1291 |31830 |0 |8 |F230E0|0 |2 |0 |
-ROW |84855 |1293 |31892 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84856 |1295 |31855 |2 |0 |1A7C11|0 |2 |0 |
-ROW |84857 |1295 |31853 |5 |1 |2774A4|0 |2 |0 |
-ROW |84858 |1297 |31893 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84859 |1299 |31838 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84860 |1299 |31839 |0 |1 |2774A4|0 |2 |0 |
-ROW |84861 |1299 |31837 |0 |2 |F63100|0 |2 |0 |
-ROW |84862 |1301 |31850 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84863 |1301 |31852 |0 |1 |2774A4|0 |2 |0 |
-ROW |84864 |1303 |31829 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84865 |1303 |31833 |0 |1 |2774A4|0 |2 |0 |
-ROW |84866 |1303 |31834 |0 |2 |F63100|0 |2 |0 |
-ROW |84867 |1303 |31832 |0 |3 |A54F10|1 |2 |0 |
-ROW |84868 |952 |29436 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84869 |952 |29437 |2 |1 |2774A4|0 |2 |0 |
-ROW |84870 |952 |29438 |0 |2 |F63100|1 |2 |0 |
-ROW |84871 |952 |29439 |0 |3 |A54F10|1 |2 |0 |
-ROW |84872 |952 |29441 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |84873 |952 |29440 |0 |5 |6C59DC|1 |2 |0 |
-ROW |84874 |955 |29434 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84875 |955 |29435 |5 |1 |2774A4|0 |2 |0 |
-ROW |84876 |954 |29448 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84877 |954 |29449 |5 |1 |2774A4|0 |2 |0 |
-ROW |84878 |956 |29452 |0 |0 |1A7C11|1 |2 |0 |
-ROW |84879 |956 |29453 |5 |1 |2774A4|0 |2 |0 |
-ROW |84880 |953 |29446 |0 |0 |969696|0 |9 |2 |
-ROW |84881 |953 |29432 |0 |1 |C80000|0 |9 |0 |
-ROW |84882 |960 |29405 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84883 |960 |29406 |0 |1 |2774A4|0 |2 |0 |
-ROW |84884 |959 |29426 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84885 |959 |29413 |0 |1 |2774A4|0 |2 |0 |
-ROW |84886 |959 |29411 |0 |2 |F63100|0 |2 |0 |
-ROW |84887 |959 |29410 |0 |3 |A54F10|0 |2 |0 |
-ROW |84888 |959 |29399 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |84889 |959 |29409 |0 |5 |6C59DC|0 |2 |0 |
-ROW |84890 |959 |29412 |0 |6 |AC8C14|0 |2 |0 |
-ROW |84891 |959 |29408 |0 |7 |611F27|0 |2 |0 |
-ROW |84892 |959 |29407 |0 |8 |F230E0|0 |2 |0 |
-ROW |84893 |958 |29427 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84894 |962 |29403 |2 |0 |1A7C11|0 |2 |0 |
-ROW |84895 |962 |29402 |5 |1 |2774A4|0 |2 |0 |
-ROW |84896 |961 |29396 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84897 |963 |29400 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84898 |963 |29401 |0 |1 |2774A4|0 |2 |0 |
-ROW |84899 |957 |29420 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84900 |957 |29419 |0 |1 |2774A4|0 |2 |0 |
-ROW |84901 |957 |29418 |0 |2 |F63100|0 |2 |0 |
-ROW |84902 |957 |29417 |0 |3 |A54F10|1 |2 |0 |
-ROW |84903 |866 |29014 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84904 |866 |29015 |5 |1 |2774A4|0 |2 |0 |
-ROW |84905 |868 |29018 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84906 |868 |29019 |0 |1 |2774A4|0 |2 |0 |
-ROW |84907 |868 |29022 |0 |2 |F63100|0 |2 |0 |
-ROW |84908 |868 |29023 |0 |3 |A54F10|0 |2 |0 |
-ROW |84909 |868 |29020 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |84910 |868 |29024 |0 |5 |6C59DC|0 |2 |0 |
-ROW |84911 |868 |29021 |0 |6 |AC8C14|0 |2 |0 |
-ROW |84912 |868 |29025 |0 |7 |611F27|0 |2 |0 |
-ROW |84913 |868 |29026 |0 |8 |F230E0|0 |2 |0 |
-ROW |84914 |870 |29048 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84915 |872 |29028 |0 |0 |969696|0 |9 |2 |
-ROW |84916 |872 |29027 |0 |1 |C80000|0 |9 |0 |
-ROW |84917 |882 |28992 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84918 |882 |28991 |0 |1 |2774A4|0 |2 |0 |
-ROW |84919 |876 |28982 |2 |0 |1A7C11|0 |2 |0 |
-ROW |84920 |876 |28983 |5 |1 |2774A4|0 |2 |0 |
-ROW |84921 |874 |28978 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84922 |878 |28985 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84923 |878 |28984 |0 |1 |2774A4|0 |2 |0 |
-ROW |84924 |880 |28987 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84925 |880 |28988 |0 |1 |2774A4|0 |2 |0 |
-ROW |84926 |880 |28989 |0 |2 |F63100|0 |2 |0 |
-ROW |84927 |880 |28990 |0 |3 |A54F10|1 |2 |0 |
-ROW |84928 |964 |29513 |0 |0 |969696|0 |9 |2 |
-ROW |84929 |964 |29512 |0 |1 |C80000|0 |9 |0 |
-ROW |84930 |1238 |31435 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84931 |1238 |31438 |2 |1 |2774A4|0 |2 |0 |
-ROW |84932 |1238 |31437 |0 |2 |F63100|1 |2 |0 |
-ROW |84933 |1238 |31434 |0 |3 |A54F10|1 |2 |0 |
-ROW |84934 |1238 |31436 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |84935 |1238 |31433 |0 |5 |6C59DC|1 |2 |0 |
-ROW |84936 |1488 |33321 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84937 |1488 |33324 |0 |1 |2774A4|0 |2 |0 |
-ROW |84938 |1490 |33322 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84939 |1490 |33323 |5 |1 |2774A4|0 |2 |0 |
-ROW |84940 |1240 |31441 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84941 |1240 |31442 |5 |1 |2774A4|0 |2 |0 |
-ROW |84942 |1242 |31440 |0 |0 |1A7C11|1 |2 |0 |
-ROW |84943 |1242 |31439 |5 |1 |2774A4|0 |2 |0 |
-ROW |84944 |974 |29456 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84945 |974 |29455 |0 |1 |2774A4|0 |2 |0 |
-ROW |84946 |976 |29458 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84947 |976 |29457 |0 |1 |2774A4|0 |2 |0 |
-ROW |84948 |972 |29454 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84949 |978 |29462 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84950 |980 |31421 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84951 |980 |29466 |0 |1 |2774A4|0 |2 |0 |
-ROW |84952 |1305 |32013 |0 |0 |969696|0 |9 |2 |
-ROW |84953 |1305 |32014 |0 |1 |C80000|0 |9 |0 |
-ROW |84954 |1307 |32017 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84955 |1307 |32020 |2 |1 |2774A4|0 |2 |0 |
-ROW |84956 |1307 |32019 |0 |2 |F63100|1 |2 |0 |
-ROW |84957 |1307 |32016 |0 |3 |A54F10|1 |2 |0 |
-ROW |84958 |1307 |32018 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |84959 |1307 |32015 |0 |5 |6C59DC|1 |2 |0 |
-ROW |84960 |1492 |33329 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84961 |1492 |33332 |0 |1 |2774A4|0 |2 |0 |
-ROW |84962 |1494 |33330 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84963 |1494 |33331 |5 |1 |2774A4|0 |2 |0 |
-ROW |84964 |1309 |32023 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84965 |1309 |32024 |5 |1 |2774A4|0 |2 |0 |
-ROW |84966 |1311 |32022 |0 |0 |1A7C11|1 |2 |0 |
-ROW |84967 |1311 |32021 |5 |1 |2774A4|0 |2 |0 |
-ROW |84968 |1313 |31952 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84969 |1313 |31949 |0 |1 |2774A4|0 |2 |0 |
-ROW |84970 |1315 |31951 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84971 |1315 |31950 |0 |1 |2774A4|0 |2 |0 |
-ROW |84972 |1317 |31954 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84973 |1319 |31973 |5 |0 |1A7C11|0 |2 |0 |
-ROW |84974 |1321 |31969 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84975 |1321 |31970 |0 |1 |2774A4|0 |2 |0 |
-ROW |84976 |1583 |34451 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84977 |1584 |34465 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84978 |1584 |34463 |0 |1 |2774A4|0 |2 |0 |
-ROW |84979 |1585 |34466 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84980 |1585 |34462 |0 |1 |2774A4|0 |2 |0 |
-ROW |84981 |1586 |34499 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84982 |1587 |34513 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84983 |1587 |34511 |0 |1 |2774A4|0 |2 |0 |
-ROW |84984 |1588 |34514 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84985 |1588 |34510 |0 |1 |2774A4|0 |2 |0 |
-ROW |84986 |1589 |34547 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84987 |1590 |34561 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84988 |1590 |34559 |0 |1 |2774A4|0 |2 |0 |
-ROW |84989 |1591 |34562 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84990 |1591 |34558 |0 |1 |2774A4|0 |2 |0 |
-ROW |84991 |1592 |34595 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84992 |1593 |34609 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84993 |1593 |34607 |0 |1 |2774A4|0 |2 |0 |
-ROW |84994 |1594 |34610 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84995 |1594 |34606 |0 |1 |2774A4|0 |2 |0 |
-ROW |84996 |1595 |34643 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84997 |1596 |34657 |0 |0 |1A7C11|0 |2 |0 |
-ROW |84998 |1596 |34655 |0 |1 |2774A4|0 |2 |0 |
-ROW |84999 |1597 |34658 |0 |0 |1A7C11|0 |2 |0 |
-ROW |85000 |1597 |34654 |0 |1 |2774A4|0 |2 |0 |
-ROW |85001 |1619 |35016 |0 |0 |1A7C11|0 |2 |0 |
-ROW |85002 |1620 |35030 |0 |0 |1A7C11|0 |2 |0 |
-ROW |85003 |1620 |35028 |0 |1 |2774A4|0 |2 |0 |
-ROW |85004 |1621 |35031 |0 |0 |1A7C11|0 |2 |0 |
-ROW |85005 |1621 |35027 |0 |1 |2774A4|0 |2 |0 |
-ROW |85006 |1601 |34739 |0 |0 |1A7C11|0 |2 |0 |
-ROW |85007 |1602 |34753 |0 |0 |1A7C11|0 |2 |0 |
-ROW |85008 |1602 |34751 |0 |1 |2774A4|0 |2 |0 |
-ROW |85009 |1603 |34754 |0 |0 |1A7C11|0 |2 |0 |
-ROW |85010 |1603 |34750 |0 |1 |2774A4|0 |2 |0 |
-ROW |85011 |1604 |34787 |0 |0 |1A7C11|0 |2 |0 |
-ROW |85012 |1569 |34192 |0 |0 |1A7C11|0 |2 |0 |
-ROW |85013 |1569 |34180 |0 |1 |2774A4|0 |2 |0 |
-ROW |85014 |1570 |34194 |0 |0 |1A7C11|0 |2 |0 |
-ROW |85015 |1570 |34190 |0 |1 |2774A4|0 |2 |0 |
-ROW |85016 |1605 |34793 |0 |0 |1A7C11|0 |2 |0 |
-ROW |85017 |1606 |34807 |0 |0 |1A7C11|0 |2 |0 |
-ROW |85018 |1606 |34805 |0 |1 |2774A4|0 |2 |0 |
-ROW |85019 |1607 |34808 |0 |0 |1A7C11|0 |2 |0 |
-ROW |85020 |1607 |34804 |0 |1 |2774A4|0 |2 |0 |
-ROW |85021 |1608 |34841 |0 |0 |1A7C11|0 |2 |0 |
-ROW |85022 |1609 |34855 |0 |0 |1A7C11|0 |2 |0 |
-ROW |85023 |1609 |34853 |0 |1 |2774A4|0 |2 |0 |
-ROW |85024 |1610 |34856 |0 |0 |1A7C11|0 |2 |0 |
-ROW |85025 |1610 |34852 |0 |1 |2774A4|0 |2 |0 |
-ROW |85026 |1611 |34889 |0 |0 |1A7C11|0 |2 |0 |
-ROW |85027 |1612 |34903 |0 |0 |1A7C11|0 |2 |0 |
-ROW |85028 |1612 |34901 |0 |1 |2774A4|0 |2 |0 |
-ROW |85029 |1613 |34904 |0 |0 |1A7C11|0 |2 |0 |
-ROW |85030 |1613 |34900 |0 |1 |2774A4|0 |2 |0 |
-ROW |85031 |1518 |33705 |5 |0 |1A7C11|0 |2 |0 |
-ROW |85032 |1519 |33724 |0 |0 |1A7C11|0 |2 |0 |
-ROW |85033 |1519 |33722 |0 |1 |2774A4|0 |2 |0 |
-ROW |85034 |1519 |33726 |0 |2 |F63100|0 |2 |0 |
-ROW |85035 |1520 |33719 |0 |0 |1A7C11|0 |2 |0 |
-ROW |85036 |1520 |33720 |0 |1 |2774A4|0 |2 |0 |
-ROW |85037 |1520 |33721 |0 |2 |F63100|0 |2 |0 |
-ROW |85038 |1521 |33725 |0 |0 |1A7C11|0 |2 |0 |
-ROW |85039 |1521 |33723 |0 |1 |2774A4|0 |2 |0 |
-ROW |85040 |1521 |33727 |0 |2 |F63100|0 |2 |0 |
-ROW |85041 |1522 |33730 |5 |0 |1A7C11|0 |2 |0 |
-ROW |85042 |1523 |33734 |0 |0 |1A7C11|0 |2 |0 |
-ROW |85043 |1523 |33732 |0 |1 |2774A4|0 |2 |0 |
-ROW |85044 |1523 |33736 |0 |2 |F63100|0 |2 |0 |
-ROW |85045 |1524 |33735 |0 |0 |1A7C11|0 |2 |0 |
-ROW |85046 |1524 |33733 |0 |1 |2774A4|0 |2 |0 |
-ROW |85047 |1524 |33737 |0 |2 |F63100|0 |2 |0 |
-ROW |85048 |1525 |33743 |0 |0 |1A7C11|0 |2 |0 |
-ROW |85049 |1525 |33742 |0 |1 |2774A4|0 |2 |0 |
-ROW |85050 |1525 |33738 |0 |2 |F63100|0 |2 |0 |
-ROW |85051 |1526 |33692 |0 |0 |1A7C11|0 |2 |0 |
-ROW |85052 |1526 |33693 |0 |1 |2774A4|0 |2 |0 |
-ROW |85053 |1571 |34269 |0 |0 |1A7C11|0 |2 |0 |
-ROW |85054 |1571 |34270 |0 |1 |2774A4|0 |2 |0 |
-ROW |85055 |1571 |34271 |0 |2 |F63100|0 |2 |0 |
-ROW |85056 |1571 |34272 |0 |3 |A54F10|0 |2 |0 |
-ROW |85057 |1572 |34311 |0 |0 |1A7C11|0 |2 |0 |
-ROW |85058 |1572 |34301 |0 |1 |2774A4|0 |2 |0 |
-ROW |85059 |1573 |34243 |0 |0 |1A7C11|0 |2 |0 |
-ROW |85060 |1573 |34244 |0 |1 |2774A4|0 |2 |0 |
-ROW |85061 |1573 |34246 |0 |2 |F63100|0 |2 |0 |
-ROW |85062 |1573 |34245 |0 |3 |A54F10|0 |2 |0 |
-ROW |85063 |1574 |34239 |0 |0 |1A7C11|0 |2 |0 |
-ROW |85064 |1574 |34227 |0 |1 |2774A4|0 |2 |0 |
-ROW |85065 |1574 |34236 |0 |2 |F63100|0 |2 |0 |
-ROW |85066 |1574 |34237 |0 |3 |A54F10|0 |2 |0 |
-ROW |85067 |1575 |34253 |0 |0 |1A7C11|0 |2 |0 |
-ROW |85068 |1575 |34252 |0 |1 |2774A4|0 |2 |0 |
-ROW |85069 |1575 |34249 |0 |2 |F63100|0 |2 |0 |
-ROW |85070 |1575 |34251 |0 |3 |A54F10|0 |2 |0 |
-ROW |85071 |1496 |33368 |5 |0 |1A7C11|0 |2 |0 |
-ROW |85072 |1497 |33371 |1 |0 |1A7C11|0 |2 |0 |
-ROW |85073 |1497 |33371 |1 |1 |2774A4|0 |2 |0 |
-ROW |85074 |1498 |33379 |5 |0 |1A7C11|0 |2 |0 |
-ROW |85075 |1498 |33382 |2 |1 |2774A4|0 |2 |0 |
-ROW |85076 |1498 |33381 |0 |2 |F63100|1 |2 |0 |
-ROW |85077 |1498 |33378 |0 |3 |A54F10|1 |2 |0 |
-ROW |85078 |1498 |33380 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |85079 |1498 |33377 |0 |5 |6C59DC|1 |2 |0 |
-ROW |85080 |1142 |30689 |0 |0 |1A7C11|0 |2 |0 |
-ROW |85081 |1752 |35830 |5 |0 |1A7C11|0 |2 |0 |
-ROW |85082 |1752 |35835 |2 |1 |2774A4|0 |2 |0 |
-ROW |85083 |1752 |35833 |0 |2 |F63100|1 |2 |0 |
-ROW |85084 |1752 |35828 |0 |3 |A54F10|1 |2 |0 |
-ROW |85085 |1752 |35832 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |85086 |1752 |35827 |0 |5 |6C59DC|1 |2 |0 |
-ROW |85087 |1275 |31794 |0 |0 |1A7C11|0 |2 |0 |
-ROW |85088 |1275 |31792 |0 |1 |2774A4|0 |2 |0 |
-ROW |85089 |1275 |31800 |0 |2 |F63100|1 |2 |0 |
-ROW |85090 |1276 |36086 |0 |0 |1A7C11|0 |2 |0 |
-ROW |85091 |1276 |33390 |0 |1 |2774A4|0 |2 |0 |
-ROW |85092 |1276 |31799 |0 |2 |F63100|0 |2 |0 |
-ROW |85093 |1276 |31797 |0 |3 |A54F10|0 |2 |0 |
-ROW |85094 |1277 |36085 |0 |0 |1A7C11|0 |2 |0 |
-ROW |85095 |1277 |33389 |0 |1 |2774A4|0 |2 |0 |
-ROW |85096 |1277 |31795 |0 |2 |F63100|0 |2 |0 |
-ROW |85097 |1278 |36084 |0 |0 |1A7C11|0 |2 |0 |
-ROW |85098 |1278 |31793 |0 |1 |2774A4|0 |2 |0 |
-ROW |85099 |1278 |31802 |0 |2 |F63100|0 |2 |0 |
-ROW |85100 |1278 |31790 |0 |3 |A54F10|0 |2 |0 |
-ROW |85101 |1278 |31791 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |85102 |1397 |32451 |5 |0 |1A7C11|0 |2 |0 |
+ROW |85103 |1397 |32450 |5 |1 |2774A4|0 |2 |0 |
+ROW |85104 |1398 |32452 |5 |0 |1A7C11|0 |2 |0 |
+ROW |85105 |1398 |32449 |5 |1 |2774A4|0 |2 |0 |
+ROW |85106 |1399 |32444 |5 |0 |1A7C11|0 |2 |0 |
+ROW |85107 |1399 |32446 |5 |1 |2774A4|0 |2 |0 |
+ROW |85108 |1399 |32448 |5 |2 |F63100|0 |2 |0 |
+ROW |85109 |1400 |32460 |5 |0 |1A7C11|0 |2 |0 |
+ROW |85110 |1401 |32458 |5 |0 |1A7C11|0 |2 |0 |
+ROW |85111 |1401 |32457 |5 |1 |2774A4|0 |2 |0 |
+ROW |85112 |1402 |32461 |5 |0 |1A7C11|0 |2 |0 |
+ROW |85113 |1402 |32456 |5 |1 |2774A4|0 |2 |0 |
+ROW |85114 |1172 |30918 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85115 |1172 |30919 |0 |1 |2774A4|0 |2 |0 |
+ROW |85116 |1172 |30920 |0 |2 |F63100|0 |2 |0 |
+ROW |85117 |1172 |30921 |2 |3 |A54F10|0 |2 |0 |
+ROW |85118 |1173 |30922 |5 |0 |1A7C11|0 |2 |0 |
+ROW |85119 |835 |28744 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85120 |835 |28745 |0 |1 |2774A4|0 |2 |0 |
+ROW |85121 |1174 |30913 |5 |0 |1A7C11|0 |2 |0 |
+ROW |85122 |1175 |30906 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85123 |1175 |30908 |0 |1 |2774A4|0 |2 |0 |
+ROW |85124 |1175 |30915 |0 |2 |F63100|0 |2 |0 |
+ROW |85125 |1175 |30897 |0 |3 |A54F10|0 |2 |0 |
+ROW |85126 |1175 |30901 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |85127 |1175 |30899 |0 |5 |6C59DC|0 |2 |0 |
+ROW |85128 |1175 |30907 |0 |6 |AC8C14|0 |2 |0 |
+ROW |85129 |1175 |30905 |0 |7 |611F27|0 |2 |0 |
+ROW |85130 |1175 |30904 |0 |8 |F230E0|0 |2 |0 |
+ROW |85131 |1175 |30900 |0 |9 |FFAD40|0 |2 |0 |
+ROW |85132 |1175 |30898 |0 |10 |40CDFF|0 |2 |0 |
+ROW |85133 |1176 |30910 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85134 |1176 |30909 |0 |1 |2774A4|0 |2 |0 |
+ROW |85135 |836 |28798 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85136 |836 |28799 |0 |1 |2774A4|0 |2 |0 |
+ROW |85137 |836 |28800 |0 |2 |F63100|0 |2 |0 |
+ROW |85138 |836 |28801 |2 |3 |A54F10|0 |2 |0 |
+ROW |85139 |837 |28803 |5 |0 |1A7C11|0 |2 |0 |
+ROW |85140 |838 |28793 |5 |0 |1A7C11|0 |2 |0 |
+ROW |85141 |840 |28787 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85142 |840 |28784 |0 |1 |2774A4|0 |2 |0 |
+ROW |85143 |840 |28782 |0 |2 |F63100|0 |2 |0 |
+ROW |85144 |840 |28781 |0 |3 |A54F10|0 |2 |0 |
+ROW |85145 |840 |28780 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |85146 |840 |28778 |0 |5 |6C59DC|0 |2 |0 |
+ROW |85147 |840 |28786 |0 |6 |AC8C14|0 |2 |0 |
+ROW |85148 |840 |28785 |0 |7 |611F27|0 |2 |0 |
+ROW |85149 |840 |28783 |0 |8 |F230E0|0 |2 |0 |
+ROW |85150 |840 |28779 |0 |9 |FFAD40|0 |2 |0 |
+ROW |85151 |840 |28796 |0 |10 |40CDFF|0 |2 |0 |
+ROW |85152 |839 |28789 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85153 |839 |28788 |0 |1 |2774A4|0 |2 |0 |
+ROW |85154 |1339 |32172 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85155 |1339 |32173 |0 |1 |2774A4|0 |2 |0 |
+ROW |85156 |1403 |32511 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85157 |1403 |32514 |0 |1 |2774A4|0 |2 |0 |
+ROW |85158 |1404 |32512 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85159 |1404 |32515 |0 |1 |2774A4|0 |2 |0 |
+ROW |85160 |1405 |32507 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85161 |1405 |32508 |0 |1 |2774A4|0 |2 |0 |
+ROW |85162 |1405 |32513 |0 |2 |F63100|0 |2 |0 |
+ROW |85163 |1343 |32135 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85164 |1343 |32142 |0 |1 |2774A4|0 |2 |0 |
+ROW |85165 |1344 |32167 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85166 |1344 |32136 |0 |1 |2774A4|0 |2 |0 |
+ROW |85167 |1345 |32141 |1 |0 |1A7C11|0 |2 |0 |
+ROW |85168 |1345 |32138 |1 |1 |2774A4|0 |2 |0 |
+ROW |85169 |1346 |32156 |2 |0 |1A7C11|0 |2 |0 |
+ROW |85170 |1346 |32158 |0 |1 |2774A4|0 |2 |0 |
+ROW |85171 |1346 |32159 |0 |2 |F63100|0 |2 |0 |
+ROW |85172 |1346 |32154 |2 |3 |A54F10|0 |2 |0 |
+ROW |85173 |1346 |32155 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |85174 |1346 |32146 |0 |5 |6C59DC|0 |2 |0 |
+ROW |85175 |1347 |32150 |2 |0 |1A7C11|0 |2 |0 |
+ROW |85176 |1347 |32151 |0 |1 |2774A4|0 |2 |0 |
+ROW |85177 |1347 |32152 |0 |2 |F63100|0 |2 |0 |
+ROW |85178 |1785 |36643 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85179 |1785 |36656 |0 |1 |2774A4|0 |2 |0 |
+ROW |85180 |1785 |36663 |0 |2 |F63100|0 |2 |0 |
+ROW |85181 |1785 |36665 |0 |3 |A54F10|0 |2 |0 |
+ROW |85182 |1785 |36664 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |85183 |1786 |36655 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85184 |1786 |36666 |0 |1 |2774A4|0 |2 |0 |
+ROW |85185 |1787 |36662 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85186 |1787 |36661 |0 |1 |2774A4|0 |2 |0 |
+ROW |85187 |1787 |36660 |0 |2 |F63100|0 |2 |0 |
+ROW |85188 |1788 |36654 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85189 |1788 |36653 |0 |1 |2774A4|0 |2 |0 |
+ROW |85190 |1788 |36652 |0 |2 |F63100|0 |2 |0 |
+ROW |85191 |1788 |36651 |0 |3 |A54F10|0 |2 |0 |
+ROW |85192 |1788 |36650 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |85193 |1789 |36644 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85194 |1789 |36647 |0 |1 |2774A4|0 |2 |0 |
+ROW |85195 |1790 |36645 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85196 |1790 |36667 |0 |1 |2774A4|0 |2 |0 |
+ROW |85197 |1791 |36658 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85198 |1791 |36657 |0 |1 |2774A4|0 |2 |0 |
+ROW |85199 |1791 |36646 |0 |2 |F63100|0 |2 |0 |
+ROW |85200 |1791 |36649 |0 |3 |A54F10|0 |2 |0 |
+ROW |85201 |1791 |36648 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |85202 |1121 |30606 |5 |0 |1A7C11|0 |2 |0 |
+ROW |85203 |1121 |30590 |5 |1 |2774A4|0 |2 |0 |
+ROW |85204 |1121 |30582 |5 |2 |F63100|0 |2 |0 |
+ROW |85205 |1122 |30580 |5 |0 |1A7C11|0 |2 |0 |
+ROW |85206 |1122 |30578 |5 |1 |2774A4|0 |2 |0 |
+ROW |85207 |1123 |30586 |2 |0 |1A7C11|0 |2 |0 |
+ROW |85208 |1123 |30608 |2 |1 |2774A4|0 |2 |0 |
+ROW |85209 |1123 |30585 |2 |2 |F63100|0 |2 |0 |
+ROW |85210 |1123 |30589 |2 |3 |A54F10|0 |2 |0 |
+ROW |85211 |1123 |30584 |2 |4 |FC6EA3|0 |2 |0 |
+ROW |85212 |1123 |30588 |2 |5 |6C59DC|0 |2 |0 |
+ROW |85213 |1124 |30583 |2 |0 |1A7C11|0 |2 |0 |
+ROW |85214 |1124 |30587 |2 |1 |2774A4|0 |2 |0 |
+ROW |85215 |1125 |30555 |5 |0 |1A7C11|0 |2 |0 |
+ROW |85216 |1125 |30554 |2 |1 |2774A4|0 |2 |0 |
+ROW |85217 |1125 |30556 |2 |2 |F63100|0 |2 |0 |
+ROW |85218 |1125 |30557 |2 |3 |A54F10|0 |2 |0 |
+ROW |85219 |1126 |30565 |5 |0 |1A7C11|0 |2 |0 |
+ROW |85220 |1127 |30567 |2 |0 |1A7C11|0 |2 |0 |
+ROW |85221 |1127 |30568 |2 |1 |2774A4|0 |2 |0 |
+ROW |85222 |1128 |30536 |2 |0 |1A7C11|0 |2 |0 |
+ROW |85223 |1129 |30566 |2 |0 |1A7C11|0 |2 |0 |
+ROW |85224 |1129 |30549 |2 |1 |2774A4|0 |2 |0 |
+ROW |85225 |1129 |30553 |2 |2 |F63100|0 |2 |0 |
+ROW |85226 |1129 |30570 |2 |3 |A54F10|0 |2 |0 |
+ROW |85227 |1143 |30714 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85228 |1143 |30716 |0 |1 |2774A4|0 |2 |0 |
+ROW |85229 |1143 |30717 |0 |2 |F63100|0 |2 |0 |
+ROW |85230 |1143 |30715 |0 |3 |A54F10|0 |2 |0 |
+ROW |85231 |1144 |30753 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85232 |1144 |30738 |0 |1 |2774A4|0 |2 |0 |
+ROW |85233 |1145 |30718 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85234 |1145 |30737 |0 |1 |2774A4|0 |2 |0 |
+ROW |85235 |1145 |30727 |0 |2 |F63100|0 |2 |0 |
+ROW |85236 |1145 |30729 |0 |3 |A54F10|0 |2 |0 |
+ROW |85237 |1146 |30730 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85238 |1146 |30732 |0 |1 |2774A4|0 |2 |0 |
+ROW |85239 |1146 |30731 |0 |2 |F63100|0 |2 |0 |
+ROW |85240 |1146 |30733 |0 |3 |A54F10|0 |2 |0 |
+ROW |85241 |1147 |30734 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85242 |1147 |30736 |0 |1 |2774A4|0 |2 |0 |
+ROW |85243 |1147 |30735 |0 |2 |F63100|0 |2 |0 |
+ROW |85244 |1147 |30758 |0 |3 |A54F10|0 |2 |0 |
+ROW |85245 |1148 |30711 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85246 |1148 |30706 |0 |1 |2774A4|0 |2 |0 |
+ROW |85247 |1148 |30710 |0 |2 |F63100|0 |2 |0 |
+ROW |85248 |1148 |30712 |0 |3 |A54F10|0 |2 |0 |
+ROW |85249 |1148 |30702 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |85250 |1148 |30707 |0 |5 |6C59DC|0 |2 |0 |
+ROW |85251 |1148 |30704 |0 |6 |AC8C14|0 |2 |0 |
+ROW |85252 |1177 |30927 |5 |0 |1A7C11|0 |2 |0 |
+ROW |85253 |1177 |30944 |2 |1 |2774A4|0 |2 |0 |
+ROW |85254 |1178 |30935 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85255 |1178 |30942 |0 |1 |2774A4|0 |2 |0 |
+ROW |85256 |1179 |30949 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85257 |1179 |30950 |0 |1 |2774A4|0 |2 |0 |
+ROW |85258 |1179 |30951 |0 |2 |F63100|0 |2 |0 |
+ROW |85259 |1180 |30952 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85260 |1180 |30954 |0 |1 |2774A4|0 |2 |0 |
+ROW |85261 |1180 |30955 |0 |2 |F63100|0 |2 |0 |
+ROW |85262 |1181 |30936 |5 |0 |1A7C11|0 |2 |0 |
+ROW |85263 |1181 |30940 |5 |1 |2774A4|0 |2 |0 |
+ROW |85264 |1182 |30930 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85265 |1182 |30929 |0 |1 |2774A4|0 |2 |0 |
+ROW |85266 |1182 |30928 |0 |2 |F63100|0 |2 |0 |
+ROW |85267 |1182 |30931 |2 |3 |A54F10|1 |2 |0 |
+ROW |85268 |1183 |30934 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85269 |1183 |30941 |0 |1 |2774A4|0 |2 |0 |
+ROW |85270 |1406 |32532 |0 |0 |1A7C11|1 |2 |0 |
+ROW |85271 |1406 |32535 |0 |1 |2774A4|1 |2 |0 |
+ROW |85272 |1406 |32533 |0 |2 |F63100|0 |2 |0 |
+ROW |85273 |1406 |32534 |0 |3 |A54F10|0 |2 |0 |
+ROW |85274 |1406 |32536 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |85275 |1406 |32537 |0 |5 |6C59DC|0 |2 |0 |
+ROW |85276 |1407 |32543 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85277 |1407 |32544 |0 |1 |2774A4|0 |2 |0 |
+ROW |85278 |1408 |32518 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85279 |1408 |32521 |0 |1 |2774A4|0 |2 |0 |
+ROW |85280 |1408 |32523 |0 |2 |F63100|0 |2 |0 |
+ROW |85281 |1408 |32524 |0 |3 |A54F10|0 |2 |0 |
+ROW |85282 |1409 |32562 |0 |0 |1A7C11|1 |2 |0 |
+ROW |85283 |1409 |32565 |0 |1 |2774A4|1 |2 |0 |
+ROW |85284 |1409 |32563 |0 |2 |F63100|0 |2 |0 |
+ROW |85285 |1409 |32564 |0 |3 |A54F10|0 |2 |0 |
+ROW |85286 |1409 |32566 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |85287 |1409 |32567 |0 |5 |6C59DC|0 |2 |0 |
+ROW |85288 |1410 |32573 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85289 |1410 |32574 |0 |1 |2774A4|0 |2 |0 |
+ROW |85290 |1411 |32548 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85291 |1411 |32551 |0 |1 |2774A4|0 |2 |0 |
+ROW |85292 |1411 |32553 |0 |2 |F63100|0 |2 |0 |
+ROW |85293 |1411 |32554 |0 |3 |A54F10|0 |2 |0 |
+ROW |85294 |1250 |31527 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85295 |1250 |31529 |0 |1 |2774A4|0 |2 |0 |
+ROW |85296 |1250 |31499 |0 |2 |F63100|0 |2 |0 |
+ROW |85297 |1251 |31532 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85298 |1251 |31534 |0 |1 |2774A4|0 |2 |0 |
+ROW |85299 |1251 |31538 |0 |2 |F63100|0 |2 |0 |
+ROW |85300 |1251 |31536 |0 |3 |A54F10|0 |2 |0 |
+ROW |85301 |1251 |31528 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |85302 |1251 |31542 |0 |5 |6C59DC|0 |2 |0 |
+ROW |85303 |1252 |31552 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85304 |1252 |31551 |0 |1 |2774A4|0 |2 |0 |
+ROW |85305 |1252 |31541 |0 |2 |F63100|0 |2 |0 |
+ROW |85306 |1253 |31513 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85307 |1253 |31526 |0 |1 |2774A4|0 |2 |0 |
+ROW |85308 |1253 |31525 |0 |2 |F63100|0 |2 |0 |
+ROW |85309 |1254 |31502 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85310 |1254 |31501 |0 |1 |2774A4|0 |2 |0 |
+ROW |85311 |1254 |31503 |0 |2 |F63100|0 |2 |0 |
+ROW |85312 |1255 |31505 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85313 |1255 |31504 |0 |1 |2774A4|0 |2 |0 |
+ROW |85314 |1255 |31506 |0 |2 |F63100|0 |2 |0 |
+ROW |85315 |1256 |31508 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85316 |1256 |31507 |0 |1 |2774A4|0 |2 |0 |
+ROW |85317 |1256 |31509 |0 |2 |F63100|0 |2 |0 |
+ROW |85318 |1257 |31511 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85319 |1257 |31510 |0 |1 |2774A4|0 |2 |0 |
+ROW |85320 |1257 |31500 |0 |2 |F63100|0 |2 |0 |
+ROW |85321 |1258 |31514 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85322 |1258 |31512 |0 |1 |2774A4|0 |2 |0 |
+ROW |85323 |1258 |31515 |0 |2 |F63100|0 |2 |0 |
+ROW |85324 |1259 |31516 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85325 |1259 |31517 |0 |1 |2774A4|0 |2 |0 |
+ROW |85326 |1260 |31523 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85327 |1260 |31522 |0 |1 |2774A4|0 |2 |0 |
+ROW |85328 |1260 |31524 |0 |2 |F63100|0 |2 |0 |
+ROW |85329 |1412 |32601 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85330 |1412 |32602 |0 |1 |2774A4|0 |2 |0 |
+ROW |85331 |1412 |32603 |0 |2 |F63100|0 |2 |0 |
+ROW |85332 |1412 |32604 |0 |3 |A54F10|0 |2 |0 |
+ROW |85333 |1412 |32606 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |85334 |1412 |32606 |2 |5 |6C59DC|0 |2 |0 |
+ROW |85335 |1413 |32608 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85336 |1413 |32610 |0 |1 |2774A4|0 |2 |0 |
+ROW |85337 |1413 |32611 |0 |2 |F63100|0 |2 |0 |
+ROW |85338 |1414 |32582 |2 |0 |1A7C11|0 |2 |0 |
+ROW |85339 |1414 |32580 |2 |1 |2774A4|0 |2 |0 |
+ROW |85340 |1414 |32581 |2 |2 |F63100|0 |2 |0 |
+ROW |85341 |1414 |32597 |0 |3 |A54F10|1 |2 |0 |
+ROW |85342 |1414 |32599 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |85343 |1414 |32588 |0 |5 |6C59DC|1 |2 |0 |
+ROW |85344 |1415 |32583 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85345 |1415 |32584 |0 |1 |2774A4|0 |2 |0 |
+ROW |85346 |1415 |32585 |0 |2 |F63100|0 |2 |0 |
+ROW |85347 |1415 |32579 |2 |3 |A54F10|0 |2 |0 |
+ROW |85348 |1416 |32587 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85349 |1416 |32590 |0 |1 |2774A4|0 |2 |0 |
+ROW |85350 |1416 |32589 |0 |2 |F63100|0 |2 |0 |
+ROW |85351 |1417 |32673 |1 |0 |1A7C11|0 |2 |0 |
+ROW |85352 |1417 |32679 |1 |1 |2774A4|0 |2 |0 |
+ROW |85353 |1792 |36679 |5 |0 |1A7C11|0 |2 |0 |
+ROW |85354 |1792 |36678 |5 |1 |2774A4|0 |2 |0 |
+ROW |85355 |1075 |30204 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85356 |1075 |30205 |0 |1 |2774A4|0 |2 |0 |
+ROW |85357 |1793 |36677 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85358 |1793 |36676 |0 |1 |2774A4|0 |2 |0 |
+ROW |85359 |1793 |36675 |0 |2 |F63100|0 |2 |0 |
+ROW |85360 |1793 |36673 |0 |3 |A54F10|0 |2 |0 |
+ROW |85361 |1793 |36670 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |85362 |1076 |30209 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85363 |1076 |30208 |0 |1 |2774A4|0 |2 |0 |
+ROW |85364 |1077 |30206 |5 |0 |1A7C11|0 |2 |0 |
+ROW |85365 |1077 |30207 |5 |1 |2774A4|0 |2 |0 |
+ROW |85366 |1078 |30216 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85367 |1078 |30215 |0 |1 |2774A4|0 |2 |0 |
+ROW |85368 |1079 |30210 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85369 |1079 |30211 |0 |1 |2774A4|0 |2 |0 |
+ROW |85370 |1079 |30212 |0 |2 |F63100|0 |2 |0 |
+ROW |85371 |1079 |30213 |0 |3 |A54F10|0 |2 |0 |
+ROW |85372 |1079 |30214 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |85373 |1794 |36692 |5 |0 |1A7C11|0 |2 |0 |
+ROW |85374 |1794 |36691 |5 |1 |2774A4|0 |2 |0 |
+ROW |85375 |1795 |36689 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85376 |1795 |36688 |0 |1 |2774A4|0 |2 |0 |
+ROW |85377 |1795 |36687 |0 |2 |F63100|0 |2 |0 |
+ROW |85378 |1795 |30222 |0 |3 |A54F10|0 |2 |0 |
+ROW |85379 |1795 |30223 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |85380 |1080 |30226 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85381 |1080 |30225 |0 |1 |2774A4|0 |2 |0 |
+ROW |85382 |1796 |36704 |5 |0 |1A7C11|0 |2 |0 |
+ROW |85383 |1796 |36703 |5 |1 |2774A4|0 |2 |0 |
+ROW |85384 |1081 |30247 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85385 |1081 |30248 |0 |1 |2774A4|0 |2 |0 |
+ROW |85386 |1797 |36702 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85387 |1797 |36701 |0 |1 |2774A4|0 |2 |0 |
+ROW |85388 |1797 |36700 |0 |2 |F63100|0 |2 |0 |
+ROW |85389 |1797 |36698 |0 |3 |A54F10|0 |2 |0 |
+ROW |85390 |1797 |36695 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |85391 |1082 |30252 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85392 |1082 |30251 |0 |1 |2774A4|0 |2 |0 |
+ROW |85393 |1083 |30249 |5 |0 |1A7C11|0 |2 |0 |
+ROW |85394 |1083 |30250 |5 |1 |2774A4|0 |2 |0 |
+ROW |85395 |1084 |30259 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85396 |1084 |30258 |0 |1 |2774A4|0 |2 |0 |
+ROW |85397 |1085 |30253 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85398 |1085 |30254 |0 |1 |2774A4|0 |2 |0 |
+ROW |85399 |1085 |30255 |0 |2 |F63100|0 |2 |0 |
+ROW |85400 |1085 |30256 |0 |3 |A54F10|0 |2 |0 |
+ROW |85401 |1085 |30257 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |85402 |1798 |36717 |5 |0 |1A7C11|0 |2 |0 |
+ROW |85403 |1798 |36716 |5 |1 |2774A4|0 |2 |0 |
+ROW |85404 |1799 |36714 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85405 |1799 |36713 |0 |1 |2774A4|0 |2 |0 |
+ROW |85406 |1799 |36712 |0 |2 |F63100|0 |2 |0 |
+ROW |85407 |1799 |30265 |0 |3 |A54F10|0 |2 |0 |
+ROW |85408 |1799 |30266 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |85409 |1086 |30269 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85410 |1086 |30268 |0 |1 |2774A4|0 |2 |0 |
+ROW |85411 |1184 |30982 |5 |0 |1A7C11|0 |2 |0 |
+ROW |85412 |1184 |30980 |5 |1 |2774A4|0 |2 |0 |
+ROW |85413 |1185 |30983 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85414 |1185 |30981 |0 |1 |2774A4|0 |2 |0 |
+ROW |85415 |1186 |30976 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85416 |1186 |30985 |0 |1 |2774A4|0 |2 |0 |
+ROW |85417 |1186 |30997 |0 |2 |F63100|0 |2 |0 |
+ROW |85418 |1186 |30970 |0 |3 |A54F10|0 |2 |0 |
+ROW |85419 |1186 |30973 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |85420 |1186 |30995 |0 |5 |6C59DC|0 |2 |0 |
+ROW |85421 |1186 |30998 |0 |6 |AC8C14|0 |2 |0 |
+ROW |85422 |1186 |30978 |0 |7 |611F27|0 |2 |0 |
+ROW |85423 |1187 |31024 |5 |0 |1A7C11|0 |2 |0 |
+ROW |85424 |1187 |31022 |5 |1 |2774A4|0 |2 |0 |
+ROW |85425 |1188 |31025 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85426 |1188 |31023 |0 |1 |2774A4|0 |2 |0 |
+ROW |85427 |1189 |31018 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85428 |1189 |31027 |0 |1 |2774A4|0 |2 |0 |
+ROW |85429 |1189 |31039 |0 |2 |F63100|0 |2 |0 |
+ROW |85430 |1189 |31012 |0 |3 |A54F10|0 |2 |0 |
+ROW |85431 |1189 |31015 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |85432 |1189 |31037 |0 |5 |6C59DC|0 |2 |0 |
+ROW |85433 |1189 |31040 |0 |6 |AC8C14|0 |2 |0 |
+ROW |85434 |1189 |31020 |0 |7 |611F27|0 |2 |0 |
+ROW |85435 |1499 |33478 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85436 |1499 |33467 |0 |1 |2774A4|0 |2 |0 |
+ROW |85437 |1500 |33468 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85438 |1500 |33479 |0 |1 |2774A4|0 |2 |0 |
+ROW |85439 |1501 |33442 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85440 |1501 |33441 |0 |1 |2774A4|0 |2 |0 |
+ROW |85441 |1501 |33440 |0 |2 |F63100|0 |2 |0 |
+ROW |85442 |1502 |33423 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85443 |1502 |33419 |0 |1 |2774A4|0 |2 |0 |
+ROW |85444 |1502 |33422 |0 |2 |F63100|0 |2 |0 |
+ROW |85445 |1502 |33421 |0 |3 |A54F10|0 |2 |0 |
+ROW |85446 |1502 |33412 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |85447 |1418 |32700 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85448 |1418 |32699 |0 |1 |2774A4|0 |2 |0 |
+ROW |85449 |1419 |32710 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85450 |1419 |32709 |0 |1 |2774A4|0 |2 |0 |
+ROW |85451 |1420 |32693 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85452 |1420 |32724 |0 |1 |2774A4|0 |2 |0 |
+ROW |85453 |1421 |32730 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85454 |1421 |32731 |0 |1 |2774A4|0 |2 |0 |
+ROW |85455 |1421 |32728 |0 |2 |F63100|0 |2 |0 |
+ROW |85456 |1421 |32729 |0 |3 |A54F10|0 |2 |0 |
+ROW |85457 |1422 |32705 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85458 |1422 |32706 |0 |1 |2774A4|0 |2 |0 |
+ROW |85459 |1423 |32702 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85460 |1423 |32703 |0 |1 |2774A4|0 |2 |0 |
+ROW |85461 |1424 |32708 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85462 |1424 |32722 |2 |1 |2774A4|0 |2 |0 |
+ROW |85463 |1424 |32695 |0 |2 |F63100|0 |2 |0 |
+ROW |85464 |1424 |32753 |0 |3 |A54F10|0 |2 |0 |
+ROW |85465 |1424 |32740 |2 |4 |FC6EA3|0 |2 |0 |
+ROW |85466 |1424 |32723 |0 |5 |6C59DC|0 |2 |0 |
+ROW |85467 |1424 |32747 |0 |6 |AC8C14|0 |2 |0 |
+ROW |85468 |1424 |32748 |2 |7 |611F27|0 |2 |0 |
+ROW |85469 |1424 |32749 |0 |8 |F230E0|0 |2 |0 |
+ROW |85470 |1424 |32750 |0 |9 |FFAD40|0 |2 |0 |
+ROW |85471 |1424 |32751 |2 |10 |40CDFF|0 |2 |0 |
+ROW |85472 |1424 |32752 |0 |11 |40FFA0|0 |2 |0 |
+ROW |85473 |1425 |32746 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85474 |1425 |32745 |2 |1 |2774A4|0 |2 |0 |
+ROW |85475 |1425 |32744 |0 |2 |F63100|0 |2 |0 |
+ROW |85476 |1425 |32743 |0 |3 |A54F10|0 |2 |0 |
+ROW |85477 |1425 |32743 |2 |4 |FC6EA3|0 |2 |0 |
+ROW |85478 |1425 |32742 |0 |5 |6C59DC|0 |2 |0 |
+ROW |85479 |1426 |32720 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85480 |1426 |32721 |0 |1 |2774A4|0 |2 |0 |
+ROW |85481 |1426 |32719 |0 |2 |F63100|0 |2 |0 |
+ROW |85482 |1426 |32718 |0 |3 |A54F10|0 |2 |0 |
+ROW |85483 |1130 |30613 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85484 |1130 |30635 |0 |1 |2774A4|0 |2 |0 |
+ROW |85485 |1130 |30625 |0 |2 |F63100|0 |2 |0 |
+ROW |85486 |1131 |30632 |5 |0 |1A7C11|0 |2 |0 |
+ROW |85487 |1131 |30633 |5 |1 |2774A4|0 |2 |0 |
+ROW |85488 |1131 |30629 |5 |2 |F63100|0 |2 |0 |
+ROW |85489 |1132 |30630 |2 |0 |1A7C11|0 |2 |0 |
+ROW |85490 |1132 |30628 |2 |1 |2774A4|0 |2 |0 |
+ROW |85491 |1132 |30631 |2 |2 |F63100|0 |2 |0 |
+ROW |85492 |1133 |30619 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85493 |1133 |30618 |0 |1 |2774A4|0 |2 |0 |
+ROW |85494 |1134 |30623 |5 |0 |1A7C11|0 |2 |0 |
+ROW |85495 |1134 |30622 |5 |1 |2774A4|0 |2 |0 |
+ROW |85496 |1135 |30615 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85497 |841 |28813 |2 |0 |1A7C11|0 |2 |0 |
+ROW |85498 |841 |28811 |0 |1 |2774A4|0 |2 |0 |
+ROW |85499 |841 |28812 |0 |2 |F63100|0 |2 |0 |
+ROW |85500 |841 |28814 |0 |3 |A54F10|0 |2 |0 |
+ROW |85501 |842 |28817 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85502 |842 |28815 |0 |1 |2774A4|0 |2 |0 |
+ROW |85503 |842 |28816 |0 |2 |F63100|0 |2 |0 |
+ROW |85504 |844 |28808 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85505 |844 |28807 |0 |1 |2774A4|0 |2 |0 |
+ROW |85506 |843 |28818 |5 |0 |1A7C11|0 |2 |0 |
+ROW |85507 |845 |28829 |2 |0 |1A7C11|0 |2 |0 |
+ROW |85508 |845 |28831 |0 |1 |2774A4|0 |2 |0 |
+ROW |85509 |845 |28832 |0 |2 |F63100|0 |2 |0 |
+ROW |85510 |845 |28830 |0 |3 |A54F10|0 |2 |0 |
+ROW |85511 |846 |28826 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85512 |846 |28828 |0 |1 |2774A4|0 |2 |0 |
+ROW |85513 |846 |28827 |0 |2 |F63100|0 |2 |0 |
+ROW |85514 |847 |28825 |5 |0 |1A7C11|0 |2 |0 |
+ROW |85515 |1622 |35098 |5 |0 |1A7C11|0 |2 |0 |
+ROW |85516 |1623 |35100 |5 |0 |1A7C11|0 |2 |0 |
+ROW |85517 |1623 |35099 |5 |1 |2774A4|0 |2 |0 |
+ROW |85518 |1623 |35101 |5 |2 |F63100|0 |2 |0 |
+ROW |85519 |1623 |35102 |5 |3 |A54F10|0 |2 |0 |
+ROW |85520 |1623 |35103 |5 |4 |FC6EA3|0 |2 |0 |
+ROW |85521 |1624 |35109 |5 |0 |1A7C11|0 |2 |0 |
+ROW |85522 |1625 |35111 |5 |0 |1A7C11|0 |2 |0 |
+ROW |85523 |1625 |35110 |5 |1 |2774A4|0 |2 |0 |
+ROW |85524 |1625 |35112 |5 |2 |F63100|0 |2 |0 |
+ROW |85525 |1625 |35113 |5 |3 |A54F10|0 |2 |0 |
+ROW |85526 |1625 |35114 |5 |4 |FC6EA3|0 |2 |0 |
+ROW |85527 |1626 |35132 |5 |0 |1A7C11|0 |2 |0 |
+ROW |85528 |1626 |35131 |5 |1 |2774A4|0 |2 |0 |
+ROW |85529 |1626 |35130 |5 |2 |F63100|0 |2 |0 |
+ROW |85530 |1627 |35125 |5 |0 |1A7C11|0 |2 |0 |
+ROW |85531 |1627 |35127 |5 |1 |2774A4|0 |2 |0 |
+ROW |85532 |1627 |35118 |5 |2 |F63100|0 |2 |0 |
+ROW |85533 |1627 |35124 |5 |3 |A54F10|0 |2 |0 |
+ROW |85534 |1627 |35123 |5 |4 |FC6EA3|0 |2 |0 |
+ROW |85535 |1628 |35139 |5 |0 |1A7C11|0 |2 |0 |
+ROW |85536 |1628 |35140 |5 |1 |2774A4|0 |2 |0 |
+ROW |85537 |1628 |35138 |5 |2 |F63100|0 |2 |0 |
+ROW |85538 |1629 |35142 |5 |0 |1A7C11|0 |2 |0 |
+ROW |85539 |1629 |35141 |5 |1 |2774A4|0 |2 |0 |
+ROW |85540 |1629 |35146 |5 |2 |F63100|0 |2 |0 |
+ROW |85541 |1629 |35144 |5 |3 |A54F10|0 |2 |0 |
+ROW |85542 |1629 |35143 |5 |4 |FC6EA3|0 |2 |0 |
+ROW |85543 |1629 |35145 |5 |5 |6C59DC|0 |2 |0 |
+ROW |85544 |1629 |35147 |5 |6 |AC8C14|0 |2 |0 |
+ROW |85545 |1629 |35148 |5 |7 |611F27|0 |2 |0 |
+ROW |85546 |1630 |35154 |5 |0 |1A7C11|0 |2 |0 |
+ROW |85547 |1630 |35155 |5 |1 |2774A4|0 |2 |0 |
+ROW |85548 |1630 |35156 |5 |2 |F63100|0 |2 |0 |
+ROW |85549 |1631 |35163 |5 |0 |1A7C11|0 |2 |0 |
+ROW |85550 |1631 |35164 |5 |1 |2774A4|0 |2 |0 |
+ROW |85551 |1631 |35165 |5 |2 |F63100|0 |2 |0 |
+ROW |85552 |1632 |35083 |5 |0 |1A7C11|0 |2 |0 |
+ROW |85553 |1632 |35079 |5 |1 |2774A4|0 |2 |0 |
+ROW |85554 |1632 |35075 |5 |2 |F63100|0 |2 |0 |
+ROW |85555 |1632 |35074 |5 |3 |A54F10|0 |2 |0 |
+ROW |85556 |1633 |35081 |5 |0 |1A7C11|0 |2 |0 |
+ROW |85557 |1634 |35078 |5 |0 |1A7C11|0 |2 |0 |
+ROW |85558 |1634 |35077 |5 |1 |2774A4|0 |2 |0 |
+ROW |85559 |1634 |35076 |5 |2 |F63100|0 |2 |0 |
+ROW |85560 |1635 |35087 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85561 |1262 |31592 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85562 |1262 |31584 |0 |1 |2774A4|0 |2 |0 |
+ROW |85563 |1262 |31582 |0 |2 |F63100|0 |2 |0 |
+ROW |85564 |1262 |31585 |0 |3 |A54F10|0 |2 |0 |
+ROW |85565 |1263 |31591 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85566 |1263 |31583 |0 |1 |2774A4|0 |2 |0 |
+ROW |85567 |1263 |31590 |0 |2 |F63100|0 |2 |0 |
+ROW |85568 |1264 |31602 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85569 |1264 |31597 |0 |1 |2774A4|0 |2 |0 |
+ROW |85570 |1264 |31601 |0 |2 |F63100|0 |2 |0 |
+ROW |85571 |1264 |31604 |0 |3 |A54F10|0 |2 |0 |
+ROW |85572 |1265 |31609 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85573 |1265 |31610 |0 |1 |2774A4|0 |2 |0 |
+ROW |85574 |1265 |31608 |0 |2 |F63100|0 |2 |0 |
+ROW |85575 |1001 |29729 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85576 |1001 |29728 |0 |1 |2774A4|0 |2 |0 |
+ROW |85577 |1001 |29727 |0 |2 |F63100|0 |2 |0 |
+ROW |85578 |1001 |29725 |0 |3 |A54F10|0 |2 |0 |
+ROW |85579 |1001 |29723 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |85580 |1001 |29733 |0 |5 |6C59DC|0 |2 |0 |
+ROW |85581 |1001 |29737 |0 |6 |AC8C14|0 |2 |0 |
+ROW |85582 |1001 |29731 |0 |7 |611F27|0 |2 |0 |
+ROW |85583 |1000 |29720 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85584 |1000 |29730 |0 |1 |2774A4|0 |2 |0 |
+ROW |85585 |1000 |29721 |0 |2 |F63100|0 |2 |0 |
+ROW |85586 |1000 |29726 |0 |3 |A54F10|0 |2 |0 |
+ROW |85587 |1000 |29724 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |85588 |1000 |29734 |0 |5 |6C59DC|0 |2 |0 |
+ROW |85589 |1000 |29722 |0 |6 |AC8C14|0 |2 |0 |
+ROW |85590 |1000 |29732 |0 |7 |611F27|0 |2 |0 |
+ROW |85591 |1027 |30022 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85592 |1027 |30021 |0 |1 |2774A4|0 |2 |0 |
+ROW |85593 |1027 |30019 |0 |2 |F63100|0 |2 |0 |
+ROW |85594 |1008 |29698 |5 |0 |1A7C11|0 |2 |0 |
+ROW |85595 |1008 |29700 |2 |1 |FF0000|0 |2 |0 |
+ROW |85596 |1007 |29691 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85597 |1013 |29657 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85598 |1013 |29658 |0 |1 |2774A4|0 |2 |0 |
+ROW |85599 |1009 |29687 |5 |0 |1A7C11|0 |2 |0 |
+ROW |85600 |1009 |29694 |2 |1 |FF0000|0 |2 |0 |
+ROW |85601 |1029 |30017 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85602 |1029 |30016 |0 |1 |2774A4|0 |2 |0 |
+ROW |85603 |1029 |30015 |0 |2 |F63100|0 |2 |0 |
+ROW |85604 |1031 |30007 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85605 |1031 |30013 |0 |1 |2774A4|0 |2 |0 |
+ROW |85606 |1031 |30011 |0 |2 |F63100|0 |2 |0 |
+ROW |85607 |1031 |30009 |0 |3 |A54F10|0 |2 |0 |
+ROW |85608 |1031 |30005 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |85609 |1031 |30003 |0 |5 |6C59DC|0 |2 |0 |
+ROW |85610 |1031 |30023 |0 |6 |AC8C14|0 |2 |0 |
+ROW |85611 |1031 |30001 |0 |7 |611F27|0 |2 |0 |
+ROW |85612 |1030 |30008 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85613 |1030 |30014 |0 |1 |2774A4|0 |2 |0 |
+ROW |85614 |1030 |30012 |0 |2 |F63100|0 |2 |0 |
+ROW |85615 |1030 |30010 |0 |3 |A54F10|0 |2 |0 |
+ROW |85616 |1030 |30006 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |85617 |1030 |30004 |0 |5 |6C59DC|0 |2 |0 |
+ROW |85618 |1030 |30000 |0 |6 |AC8C14|0 |2 |0 |
+ROW |85619 |1030 |30002 |0 |7 |611F27|0 |2 |0 |
+ROW |85620 |1011 |29695 |2 |0 |1A7C11|0 |2 |0 |
+ROW |85621 |1028 |30020 |5 |0 |1A7C11|0 |2 |0 |
+ROW |85622 |1010 |29701 |5 |0 |1A7C11|0 |2 |0 |
+ROW |85623 |1010 |29697 |0 |1 |2774A4|0 |2 |0 |
+ROW |85624 |1012 |29692 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85625 |1015 |29812 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85626 |1015 |29811 |0 |1 |2774A4|0 |2 |0 |
+ROW |85627 |1015 |29810 |0 |2 |F63100|0 |2 |0 |
+ROW |85628 |1015 |29808 |0 |3 |A54F10|0 |2 |0 |
+ROW |85629 |1015 |29806 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |85630 |1015 |29816 |0 |5 |6C59DC|0 |2 |0 |
+ROW |85631 |1015 |29820 |0 |6 |AC8C14|0 |2 |0 |
+ROW |85632 |1015 |29814 |0 |7 |611F27|0 |2 |0 |
+ROW |85633 |1014 |29803 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85634 |1014 |29813 |0 |1 |2774A4|0 |2 |0 |
+ROW |85635 |1014 |29804 |0 |2 |F63100|0 |2 |0 |
+ROW |85636 |1014 |29809 |0 |3 |A54F10|0 |2 |0 |
+ROW |85637 |1014 |29807 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |85638 |1014 |29817 |0 |5 |6C59DC|0 |2 |0 |
+ROW |85639 |1014 |29805 |0 |6 |AC8C14|0 |2 |0 |
+ROW |85640 |1014 |29815 |0 |7 |611F27|0 |2 |0 |
+ROW |85641 |1016 |29768 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85642 |1016 |29767 |0 |1 |2774A4|0 |2 |0 |
+ROW |85643 |1016 |29765 |0 |2 |F63100|0 |2 |0 |
+ROW |85644 |1022 |29782 |5 |0 |1A7C11|0 |2 |0 |
+ROW |85645 |1022 |29781 |2 |1 |FF0000|0 |2 |0 |
+ROW |85646 |1021 |29783 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85647 |1023 |29780 |5 |0 |1A7C11|0 |2 |0 |
+ROW |85648 |1023 |29784 |2 |1 |FF0000|0 |2 |0 |
+ROW |85649 |1018 |29763 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85650 |1018 |29762 |0 |1 |2774A4|0 |2 |0 |
+ROW |85651 |1018 |29761 |0 |2 |F63100|0 |2 |0 |
+ROW |85652 |1020 |29753 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85653 |1020 |29759 |0 |1 |2774A4|0 |2 |0 |
+ROW |85654 |1020 |29757 |0 |2 |F63100|0 |2 |0 |
+ROW |85655 |1020 |29755 |0 |3 |A54F10|0 |2 |0 |
+ROW |85656 |1020 |29751 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |85657 |1020 |29749 |0 |5 |6C59DC|0 |2 |0 |
+ROW |85658 |1020 |29769 |0 |6 |AC8C14|0 |2 |0 |
+ROW |85659 |1020 |29747 |0 |7 |611F27|0 |2 |0 |
+ROW |85660 |1019 |29754 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85661 |1019 |29760 |0 |1 |2774A4|0 |2 |0 |
+ROW |85662 |1019 |29758 |0 |2 |F63100|0 |2 |0 |
+ROW |85663 |1019 |29756 |0 |3 |A54F10|0 |2 |0 |
+ROW |85664 |1019 |29752 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |85665 |1019 |29750 |0 |5 |6C59DC|0 |2 |0 |
+ROW |85666 |1019 |29746 |0 |6 |AC8C14|0 |2 |0 |
+ROW |85667 |1019 |29748 |0 |7 |611F27|0 |2 |0 |
+ROW |85668 |1025 |29775 |2 |0 |1A7C11|0 |2 |0 |
+ROW |85669 |1017 |29766 |5 |0 |1A7C11|0 |2 |0 |
+ROW |85670 |1024 |29776 |5 |0 |1A7C11|0 |2 |0 |
+ROW |85671 |1024 |29777 |0 |1 |2774A4|0 |2 |0 |
+ROW |85672 |1026 |29772 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85673 |1356 |32276 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85674 |1356 |32275 |0 |1 |2774A4|0 |2 |0 |
+ROW |85675 |1357 |32281 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85676 |1357 |32267 |0 |1 |2774A4|0 |2 |0 |
+ROW |85677 |1357 |32279 |0 |2 |F63100|0 |2 |0 |
+ROW |85678 |1358 |32268 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85679 |1358 |32274 |0 |1 |2774A4|0 |2 |0 |
+ROW |85680 |1358 |32271 |0 |2 |F63100|0 |2 |0 |
+ROW |85681 |1359 |32288 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85682 |1359 |32291 |0 |1 |2774A4|0 |2 |0 |
+ROW |85683 |1360 |32247 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85684 |1360 |32245 |0 |1 |2774A4|0 |2 |0 |
+ROW |85685 |1360 |32246 |0 |2 |F63100|0 |2 |0 |
+ROW |85686 |1361 |32248 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85687 |1361 |32249 |0 |1 |2774A4|0 |2 |0 |
+ROW |85688 |1361 |32250 |0 |2 |F63100|0 |2 |0 |
+ROW |85689 |1362 |32240 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85690 |1362 |32273 |0 |1 |2774A4|0 |2 |0 |
+ROW |85691 |1363 |32282 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85692 |1363 |32283 |0 |1 |2774A4|0 |2 |0 |
+ROW |85693 |1363 |32289 |0 |2 |F63100|0 |2 |0 |
+ROW |85694 |1363 |32290 |0 |3 |A54F10|0 |2 |0 |
+ROW |85695 |1363 |32286 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |85696 |1363 |32287 |0 |5 |6C59DC|0 |2 |0 |
+ROW |85697 |1363 |32241 |0 |6 |AC8C14|0 |2 |0 |
+ROW |85698 |1363 |32242 |0 |7 |611F27|0 |2 |0 |
+ROW |85699 |1363 |32243 |0 |8 |F230E0|0 |2 |0 |
+ROW |85700 |1363 |32244 |0 |9 |FFAD40|0 |2 |0 |
+ROW |85701 |1363 |32277 |0 |10 |40CDFF|0 |2 |0 |
+ROW |85702 |1363 |32278 |0 |11 |40FFA0|0 |2 |0 |
+ROW |85703 |1427 |32768 |5 |0 |1A7C11|0 |2 |0 |
+ROW |85704 |1427 |32767 |5 |1 |2774A4|0 |2 |0 |
+ROW |85705 |1428 |32774 |5 |0 |1A7C11|0 |2 |0 |
+ROW |85706 |1428 |32772 |5 |1 |2774A4|0 |2 |0 |
+ROW |85707 |1428 |32775 |5 |2 |F63100|0 |2 |0 |
+ROW |85708 |1428 |32773 |5 |3 |A54F10|0 |2 |0 |
+ROW |85709 |1429 |32779 |5 |0 |1A7C11|0 |2 |0 |
+ROW |85710 |1429 |32777 |5 |1 |2774A4|0 |2 |0 |
+ROW |85711 |1429 |32778 |5 |2 |F63100|0 |2 |0 |
+ROW |85712 |1806 |36779 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85713 |1806 |36780 |0 |1 |2774A4|0 |2 |0 |
+ROW |85714 |1806 |36781 |0 |2 |F63100|0 |2 |0 |
+ROW |85715 |1430 |32837 |2 |0 |1A7C11|0 |2 |0 |
+ROW |85716 |1430 |32836 |2 |1 |2774A4|0 |2 |0 |
+ROW |85717 |1430 |32835 |2 |2 |F63100|0 |2 |0 |
+ROW |85718 |1431 |32856 |5 |0 |1A7C11|0 |2 |0 |
+ROW |85719 |1432 |32828 |5 |0 |1A7C11|0 |2 |0 |
+ROW |85720 |1433 |32847 |5 |0 |34bdeb|0 |2 |0 |
+ROW |85721 |1434 |32797 |5 |0 |1A7C11|0 |2 |0 |
+ROW |85722 |1434 |32796 |5 |1 |2774A4|0 |2 |0 |
+ROW |85723 |1434 |32801 |2 |2 |F63100|0 |2 |0 |
+ROW |85724 |1435 |32834 |5 |0 |1A7C11|0 |2 |0 |
+ROW |85725 |1436 |32819 |5 |0 |1A7C11|0 |2 |0 |
+ROW |85726 |1437 |32826 |5 |0 |1A7C11|0 |2 |0 |
+ROW |85727 |1614 |34976 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85728 |1614 |34975 |0 |1 |2774A4|0 |2 |0 |
+ROW |85729 |1614 |34978 |0 |2 |F63100|0 |2 |0 |
+ROW |85730 |1614 |34979 |0 |3 |A54F10|0 |2 |0 |
+ROW |85731 |1614 |34980 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |85732 |1615 |34982 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85733 |1615 |34997 |0 |1 |2774A4|0 |2 |0 |
+ROW |85734 |1615 |35001 |0 |2 |F63100|0 |2 |0 |
+ROW |85735 |1615 |35000 |0 |3 |A54F10|0 |2 |0 |
+ROW |85736 |1615 |34998 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |85737 |1615 |34996 |0 |5 |6C59DC|0 |2 |0 |
+ROW |85738 |1616 |35015 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85739 |1616 |35014 |0 |1 |2774A4|0 |2 |0 |
+ROW |85740 |1617 |35012 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85741 |1617 |35013 |0 |1 |2774A4|0 |2 |0 |
+ROW |85742 |1618 |34951 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85743 |1618 |34952 |0 |1 |2774A4|0 |2 |0 |
+ROW |85744 |1618 |34953 |0 |2 |F63100|0 |2 |0 |
+ROW |85745 |1618 |34954 |0 |3 |A54F10|0 |2 |0 |
+ROW |85746 |1618 |34956 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |85747 |1618 |34950 |0 |5 |6C59DC|0 |2 |0 |
+ROW |85748 |1618 |34957 |0 |6 |AC8C14|0 |2 |0 |
+ROW |85749 |1618 |34959 |0 |7 |611F27|0 |2 |0 |
+ROW |85750 |1618 |34965 |0 |8 |F230E0|0 |2 |0 |
+ROW |85751 |1445 |22404 |0 |0 |990099|0 |2 |0 |
+ROW |85752 |1445 |22399 |0 |1 |990000|0 |2 |0 |
+ROW |85753 |1445 |22416 |0 |2 |0000EE|0 |2 |0 |
+ROW |85754 |1445 |25366 |0 |3 |FF33FF|0 |2 |0 |
+ROW |85755 |1445 |22418 |0 |4 |009600|0 |2 |0 |
+ROW |85756 |1445 |22402 |0 |5 |003300|0 |2 |0 |
+ROW |85757 |1445 |22400 |0 |6 |33FFFF|0 |2 |0 |
+ROW |85758 |1445 |22689 |0 |7 |DD0000|0 |2 |0 |
+ROW |85759 |1445 |23171 |0 |8 |000099|0 |2 |0 |
+ROW |85760 |1445 |22401 |0 |9 |00FF00|0 |2 |0 |
+ROW |85761 |1445 |33023 |0 |10 |5A2B57|0 |2 |0 |
+ROW |85762 |1636 |22406 |0 |0 |00EE00|0 |2 |0 |
+ROW |85763 |1636 |25665 |0 |1 |0000EE|0 |2 |0 |
+ROW |85764 |1636 |25666 |0 |2 |FFAA00|0 |2 |0 |
+ROW |85765 |1636 |28537 |0 |3 |00EEEE|0 |2 |0 |
+ROW |85766 |1636 |28535 |0 |4 |990099|0 |2 |0 |
+ROW |85767 |1638 |22426 |0 |0 |00EE00|0 |2 |0 |
+ROW |85768 |1638 |22408 |0 |1 |FFAA00|0 |2 |0 |
+ROW |85769 |1638 |22412 |0 |2 |990099|0 |2 |0 |
+ROW |85770 |1638 |22414 |0 |3 |FF66FF|0 |2 |0 |
+ROW |85771 |1638 |23663 |0 |4 |009999|0 |2 |0 |
+ROW |85772 |1638 |33022 |0 |5 |2B5429|0 |2 |0 |
+ROW |85773 |1638 |22430 |0 |6 |8048B4|0 |2 |0 |
+ROW |85774 |1638 |22420 |0 |7 |FD5434|0 |2 |0 |
+ROW |85775 |1640 |22422 |0 |0 |00EE00|0 |2 |0 |
+ROW |85776 |1640 |22424 |0 |1 |0000EE|0 |2 |0 |
+ROW |85777 |1640 |25370 |0 |2 |FFAA00|0 |2 |0 |
+ROW |85778 |1640 |29822 |0 |3 |00EEEE|0 |2 |0 |
+ROW |85779 |1640 |34317 |0 |4 |990099|0 |2 |0 |
+ROW |85780 |1640 |34316 |0 |5 |EE0000|0 |2 |0 |
+ROW |85781 |1642 |33021 |0 |0 |C80000|0 |2 |0 |
+ROW |85782 |1642 |33020 |0 |1 |00C800|0 |2 |0 |
+ROW |85783 |527 |22199 |0 |0 |C80000|0 |2 |0 |
+ROW |85784 |527 |22196 |0 |1 |00C800|0 |2 |0 |
+ROW |85785 |410 |22185 |0 |0 |009900|0 |2 |0 |
+ROW |85786 |410 |22189 |0 |1 |DD0000|0 |2 |0 |
+ROW |85787 |410 |22396 |0 |2 |00DDDD|0 |2 |0 |
+ROW |85788 |410 |22183 |0 |3 |3333FF|0 |2 |0 |
+ROW |85789 |410 |22191 |0 |4 |999900|0 |2 |0 |
+ROW |85790 |410 |23634 |0 |5 |00FF00|0 |2 |0 |
+ROW |85791 |404 |22404 |0 |0 |990099|0 |2 |0 |
+ROW |85792 |404 |22399 |0 |1 |990000|0 |2 |0 |
+ROW |85793 |404 |22416 |0 |2 |0000EE|0 |2 |0 |
+ROW |85794 |404 |22430 |0 |3 |FF33FF|0 |2 |0 |
+ROW |85795 |404 |22418 |0 |4 |009600|0 |2 |0 |
+ROW |85796 |404 |22402 |0 |5 |003300|0 |2 |0 |
+ROW |85797 |404 |22420 |0 |6 |CCCC00|0 |2 |0 |
+ROW |85798 |404 |22400 |0 |7 |33FFFF|0 |2 |0 |
+ROW |85799 |404 |22689 |0 |8 |DD0000|0 |2 |0 |
+ROW |85800 |404 |23171 |0 |9 |000099|0 |2 |0 |
+ROW |85801 |404 |22401 |0 |10 |00FF00|0 |2 |0 |
+ROW |85802 |404 |33023 |0 |11 |5A2B57|0 |2 |0 |
+ROW |85803 |406 |22426 |0 |0 |00EE00|0 |2 |0 |
+ROW |85804 |406 |22422 |0 |1 |0000EE|0 |2 |0 |
+ROW |85805 |406 |22408 |0 |2 |FFAA00|0 |2 |0 |
+ROW |85806 |406 |22424 |0 |3 |00EEEE|0 |2 |0 |
+ROW |85807 |406 |22412 |0 |4 |990099|0 |2 |0 |
+ROW |85808 |406 |22406 |0 |5 |EE0000|0 |2 |0 |
+ROW |85809 |406 |22414 |0 |6 |FF66FF|0 |2 |0 |
+ROW |85810 |406 |23663 |0 |7 |009999|0 |2 |0 |
+ROW |85811 |406 |25366 |0 |8 |BBBB00|0 |2 |0 |
+ROW |85812 |406 |25370 |0 |9 |AA0000|0 |2 |0 |
+ROW |85813 |406 |25665 |0 |10 |990000|0 |2 |0 |
+ROW |85814 |406 |25666 |0 |11 |008800|0 |2 |0 |
+ROW |85815 |406 |28535 |0 |12 |80B0E0|0 |2 |0 |
+ROW |85816 |406 |28537 |0 |13 |4080B0|0 |2 |0 |
+ROW |85817 |406 |29822 |0 |14 |8000FF|0 |2 |0 |
+ROW |85818 |406 |33022 |0 |15 |2B5429|0 |2 |0 |
+ROW |85819 |406 |34317 |0 |16 |8048B4|0 |2 |0 |
+ROW |85820 |406 |34316 |0 |17 |FD5434|0 |2 |0 |
+ROW |85821 |788 |28248 |0 |0 |008800|0 |2 |0 |
+ROW |85822 |788 |28533 |0 |1 |EE0000|0 |2 |0 |
+ROW |85823 |392 |22187 |5 |0 |00C800|0 |2 |0 |
+ROW |85824 |392 |23251 |0 |1 |F63100|0 |2 |0 |
+ROW |85825 |1444 |28581 |0 |0 |990099|0 |2 |0 |
+ROW |85826 |1444 |28574 |0 |1 |990000|0 |2 |0 |
+ROW |85827 |1444 |28571 |0 |2 |0000EE|0 |2 |0 |
+ROW |85828 |1444 |28562 |0 |3 |FF33FF|0 |2 |0 |
+ROW |85829 |1444 |28570 |0 |4 |009600|0 |2 |0 |
+ROW |85830 |1444 |28569 |0 |5 |003300|0 |2 |0 |
+ROW |85831 |1444 |28552 |0 |6 |33FFFF|0 |2 |0 |
+ROW |85832 |1444 |28573 |0 |7 |DD0000|0 |2 |0 |
+ROW |85833 |1444 |28579 |0 |8 |000099|0 |2 |0 |
+ROW |85834 |1444 |28559 |0 |9 |00FF00|0 |2 |0 |
+ROW |85835 |1444 |33017 |0 |10 |5A2B57|0 |2 |0 |
+ROW |85836 |1644 |28567 |0 |0 |00EE00|0 |2 |0 |
+ROW |85837 |1644 |28575 |0 |1 |0000EE|0 |2 |0 |
+ROW |85838 |1644 |28576 |0 |2 |FFAA00|0 |2 |0 |
+ROW |85839 |1644 |28583 |0 |3 |00EEEE|0 |2 |0 |
+ROW |85840 |1644 |28582 |0 |4 |990099|0 |2 |0 |
+ROW |85841 |1645 |28572 |0 |0 |00EE00|0 |2 |0 |
+ROW |85842 |1645 |28568 |0 |1 |FFAA00|0 |2 |0 |
+ROW |85843 |1645 |28564 |0 |2 |990099|0 |2 |0 |
+ROW |85844 |1645 |28578 |0 |3 |FF66FF|0 |2 |0 |
+ROW |85845 |1645 |28580 |0 |4 |009999|0 |2 |0 |
+ROW |85846 |1645 |33016 |0 |5 |2B5429|0 |2 |0 |
+ROW |85847 |1645 |28565 |0 |6 |8048B4|0 |2 |0 |
+ROW |85848 |1645 |28577 |0 |7 |FD5434|0 |2 |0 |
+ROW |85849 |1646 |28566 |0 |0 |00EE00|0 |2 |0 |
+ROW |85850 |1646 |28561 |0 |1 |0000EE|0 |2 |0 |
+ROW |85851 |1646 |28563 |0 |2 |FFAA00|0 |2 |0 |
+ROW |85852 |1646 |29821 |0 |3 |00EEEE|0 |2 |0 |
+ROW |85853 |1646 |34314 |0 |4 |990099|0 |2 |0 |
+ROW |85854 |1646 |34315 |0 |5 |EE0000|0 |2 |0 |
+ROW |85855 |1647 |33015 |0 |0 |C80000|0 |2 |0 |
+ROW |85856 |1647 |33014 |0 |1 |00C800|0 |2 |0 |
+ROW |85857 |797 |28546 |0 |0 |C80000|0 |2 |0 |
+ROW |85858 |797 |28545 |0 |1 |00C800|0 |2 |0 |
+ROW |85859 |798 |28551 |0 |0 |009900|0 |2 |0 |
+ROW |85860 |798 |28543 |0 |1 |DD0000|0 |2 |0 |
+ROW |85861 |798 |28542 |0 |2 |00DDDD|0 |2 |0 |
+ROW |85862 |798 |28549 |0 |3 |3333FF|0 |2 |0 |
+ROW |85863 |798 |28544 |0 |4 |999900|0 |2 |0 |
+ROW |85864 |798 |28548 |0 |5 |00FF00|0 |2 |0 |
+ROW |85865 |799 |28581 |0 |0 |990099|0 |2 |0 |
+ROW |85866 |799 |28574 |0 |1 |990000|0 |2 |0 |
+ROW |85867 |799 |28571 |0 |2 |0000EE|0 |2 |0 |
+ROW |85868 |799 |28565 |0 |3 |FF33FF|0 |2 |0 |
+ROW |85869 |799 |28570 |0 |4 |009600|0 |2 |0 |
+ROW |85870 |799 |28569 |0 |5 |003300|0 |2 |0 |
+ROW |85871 |799 |28577 |0 |6 |CCCC00|0 |2 |0 |
+ROW |85872 |799 |28552 |0 |7 |33FFFF|0 |2 |0 |
+ROW |85873 |799 |28573 |0 |8 |DD0000|0 |2 |0 |
+ROW |85874 |799 |28579 |0 |9 |000099|0 |2 |0 |
+ROW |85875 |799 |28559 |0 |10 |00FF00|0 |2 |0 |
+ROW |85876 |799 |33017 |0 |11 |5A2B57|0 |2 |0 |
+ROW |85877 |800 |28572 |0 |0 |00EE00|0 |2 |0 |
+ROW |85878 |800 |28566 |0 |1 |0000EE|0 |2 |0 |
+ROW |85879 |800 |28568 |0 |2 |FFAA00|0 |2 |0 |
+ROW |85880 |800 |28561 |0 |3 |00EEEE|0 |2 |0 |
+ROW |85881 |800 |28564 |0 |4 |990099|0 |2 |0 |
+ROW |85882 |800 |28567 |0 |5 |EE0000|0 |2 |0 |
+ROW |85883 |800 |28578 |0 |6 |FF66FF|0 |2 |0 |
+ROW |85884 |800 |28580 |0 |7 |009999|0 |2 |0 |
+ROW |85885 |800 |28562 |0 |8 |BBBB00|0 |2 |0 |
+ROW |85886 |800 |28563 |0 |9 |AA0000|0 |2 |0 |
+ROW |85887 |800 |28575 |0 |10 |990000|0 |2 |0 |
+ROW |85888 |800 |28576 |0 |11 |008800|0 |2 |0 |
+ROW |85889 |800 |28582 |0 |12 |80B0E0|0 |2 |0 |
+ROW |85890 |800 |28583 |0 |13 |4080B0|0 |2 |0 |
+ROW |85891 |800 |29821 |0 |14 |8000FF|0 |2 |0 |
+ROW |85892 |800 |33016 |0 |15 |2B5429|0 |2 |0 |
+ROW |85893 |800 |34314 |0 |16 |8048B4|0 |2 |0 |
+ROW |85894 |800 |34315 |0 |17 |FD5434|0 |2 |0 |
+ROW |85895 |801 |28560 |0 |0 |008800|0 |2 |0 |
+ROW |85896 |801 |28584 |0 |1 |EE0000|0 |2 |0 |
+ROW |85897 |802 |28550 |5 |0 |00C800|0 |2 |0 |
+ROW |85898 |802 |28540 |0 |1 |F63100|0 |2 |0 |
+ROW |85899 |1438 |33001 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85900 |1438 |33002 |0 |1 |2774A4|0 |2 |0 |
+ROW |85901 |1438 |33000 |2 |2 |F63100|0 |2 |0 |
+ROW |85902 |1439 |33005 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85903 |1439 |33004 |0 |1 |2774A4|0 |2 |0 |
+ROW |85904 |1440 |32980 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85905 |1440 |32970 |0 |1 |2774A4|0 |2 |0 |
+ROW |85906 |1441 |32967 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85907 |1441 |32968 |0 |1 |2774A4|0 |2 |0 |
+ROW |85908 |1441 |32995 |2 |2 |F63100|0 |2 |0 |
+ROW |85909 |1442 |32997 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85910 |1442 |32984 |0 |1 |2774A4|0 |2 |0 |
+ROW |85911 |1443 |32973 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85912 |1443 |32971 |0 |1 |2774A4|0 |2 |0 |
+ROW |85913 |1503 |33518 |5 |0 |1A7C11|0 |2 |0 |
+ROW |85914 |1504 |33501 |0 |0 |1A7C11|0 |2 |0 |
+ROW |85915 |803 |28599 |0 |0 |DD0000|0 |2 |0 |
+ROW |85916 |803 |28596 |0 |1 |00DDDD|0 |2 |0 |
+ROW |85917 |803 |28597 |0 |2 |3333FF|0 |2 |0 |
+ROW |85918 |803 |28598 |0 |3 |00FF00|0 |2 |0 |
+ROW |85919 |804 |28602 |0 |1 |990099|0 |2 |0 |
+ROW |85920 |804 |28606 |0 |2 |990000|0 |2 |0 |
+ROW |85921 |804 |28608 |0 |3 |0000EE|0 |2 |0 |
+ROW |85922 |804 |28615 |0 |4 |FF33FF|0 |2 |0 |
+ROW |85923 |804 |28610 |0 |5 |00EE00|0 |2 |0 |
+ROW |85924 |804 |28611 |0 |6 |003300|0 |2 |0 |
+ROW |85925 |804 |28616 |0 |7 |33FFFF|0 |2 |0 |
+ROW |85926 |804 |28607 |0 |8 |DD0000|0 |2 |0 |
+ROW |85927 |804 |28604 |0 |9 |000099|0 |2 |0 |
+ROW |85928 |804 |28588 |0 |10 |00FF00|0 |2 |0 |
+ROW |85929 |804 |33013 |0 |11 |BB2A02|0 |2 |0 |
+ROW |85930 |805 |28612 |0 |1 |FFAA00|0 |2 |0 |
+ROW |85931 |805 |28600 |0 |2 |990099|0 |2 |0 |
+ROW |85932 |805 |28613 |0 |3 |EE0000|0 |2 |0 |
+ROW |85933 |805 |28605 |0 |4 |FF66FF|0 |2 |0 |
+ROW |85934 |805 |28614 |0 |5 |960000|0 |2 |0 |
+ROW |85935 |805 |28601 |0 |6 |009600|0 |2 |0 |
+ROW |85936 |805 |28603 |0 |7 |009999|0 |2 |0 |
+ROW |85937 |805 |28609 |0 |8 |BBBB00|0 |2 |0 |
+ROW |85938 |805 |33012 |0 |9 |F230E0|0 |2 |0 |
+ROW |85939 |806 |28595 |0 |0 |00C800|0 |2 |0 |
+ROW |85940 |806 |28586 |0 |1 |C80000|0 |2 |0 |
+ROW |85941 |529 |23357 |0 |0 |DD0000|0 |2 |0 |
+ROW |85942 |529 |23341 |0 |1 |00DDDD|0 |2 |0 |
+ROW |85943 |529 |23342 |0 |2 |3333FF|0 |2 |0 |
+ROW |85944 |529 |28251 |0 |3 |00FF00|0 |2 |0 |
+ROW |85945 |530 |23345 |0 |1 |990099|0 |2 |0 |
+ROW |85946 |530 |23348 |0 |2 |990000|0 |2 |0 |
+ROW |85947 |530 |23355 |0 |3 |0000EE|0 |2 |0 |
+ROW |85948 |530 |23352 |0 |4 |FF33FF|0 |2 |0 |
+ROW |85949 |530 |23356 |0 |5 |007700|0 |2 |0 |
+ROW |85950 |530 |23354 |0 |6 |003300|0 |2 |0 |
+ROW |85951 |530 |23346 |0 |7 |33FFFF|0 |2 |0 |
+ROW |85952 |530 |23349 |0 |8 |DD0000|0 |2 |0 |
+ROW |85953 |530 |23344 |0 |9 |000099|0 |7 |0 |
+ROW |85954 |530 |28250 |0 |10 |00FF00|0 |2 |0 |
+ROW |85955 |530 |33019 |0 |11 |BB2A02|0 |2 |0 |
+ROW |85956 |531 |23353 |0 |1 |FFAA00|0 |2 |0 |
+ROW |85957 |531 |23347 |0 |2 |990099|0 |2 |0 |
+ROW |85958 |531 |23350 |0 |3 |EE0000|0 |2 |0 |
+ROW |85959 |531 |23343 |0 |4 |FF66FF|0 |2 |0 |
+ROW |85960 |531 |23351 |0 |5 |0000EE|0 |2 |0 |
+ROW |85961 |531 |23360 |0 |6 |00EE00|0 |2 |0 |
+ROW |85962 |531 |25369 |0 |7 |009999|0 |2 |0 |
+ROW |85963 |531 |25368 |0 |8 |BBBB00|0 |2 |0 |
+ROW |85964 |531 |28618 |0 |9 |990000|0 |2 |0 |
+ROW |85965 |531 |28619 |0 |10 |008800|0 |2 |0 |
+ROW |85966 |531 |33018 |0 |11 |BB2A02|0 |2 |0 |
+ROW |85967 |807 |28617 |0 |0 |008800|0 |2 |0 |
+ROW |85968 |532 |23340 |5 |0 |00C800|0 |2 |0 |
+ROW |85969 |532 |23358 |5 |1 |C80000|1 |2 |0 |
+ROW |85970 |472 |22945 |5 |0 |00AA00|0 |2 |0 |
+ROW |85971 |472 |22946 |5 |1 |3333FF|0 |2 |0 |
+ROW |85972 |473 |22950 |0 |0 |C80000|0 |2 |2 |
+ROW |85973 |473 |22948 |0 |1 |00C800|0 |2 |0 |
+ROW |85974 |471 |22924 |0 |0 |009900|0 |2 |0 |
+ROW |85975 |471 |22920 |0 |1 |000099|0 |2 |0 |
+ROW |85976 |469 |22922 |0 |0 |009900|0 |2 |0 |
+ROW |85977 |469 |22923 |0 |1 |000099|0 |2 |0 |
+ROW |85978 |469 |22921 |0 |2 |990000|0 |2 |0 |
+ROW |85979 |498 |23109 |0 |0 |009999|0 |2 |0 |
+ROW |85980 |498 |23112 |0 |1 |990099|0 |2 |0 |
+ROW |85981 |498 |23115 |0 |2 |999900|0 |2 |0 |
+ROW |85982 |498 |23113 |0 |3 |990000|0 |2 |0 |
+ROW |85983 |498 |23114 |0 |4 |000099|0 |2 |0 |
+ROW |85984 |498 |23110 |0 |5 |009900|0 |2 |0 |
+ROW |85985 |540 |22942 |5 |0 |00C800|0 |2 |0 |
+ROW |85986 |492 |23073 |5 |0 |00AA00|0 |2 |0 |
+ROW |85987 |492 |23074 |5 |1 |3333FF|0 |2 |0 |
+ROW |85988 |467 |22910 |0 |0 |C80000|0 |2 |2 |
+ROW |85989 |467 |22908 |0 |1 |00C800|0 |2 |0 |
+ROW |85990 |465 |22884 |0 |0 |009900|0 |2 |0 |
+ROW |85991 |465 |22880 |0 |1 |000099|0 |2 |0 |
+ROW |85992 |463 |22882 |0 |0 |009900|0 |2 |0 |
+ROW |85993 |463 |22883 |0 |1 |000099|0 |2 |0 |
+ROW |85994 |463 |22881 |0 |2 |990000|0 |2 |0 |
+ROW |85995 |462 |22886 |1 |0 |009999|0 |2 |0 |
+ROW |85996 |462 |22888 |1 |1 |990099|0 |2 |0 |
+ROW |85997 |462 |22891 |1 |2 |990000|0 |2 |0 |
+ROW |85998 |462 |22892 |1 |3 |000099|0 |2 |0 |
+ROW |85999 |462 |22885 |1 |4 |009900|0 |2 |0 |
+ROW |86000 |541 |22902 |5 |0 |00C800|0 |2 |0 |
+ROW |86001 |464 |22897 |0 |0 |AA0000|0 |2 |2 |
+ROW |86002 |464 |22895 |0 |1 |00AA00|0 |2 |0 |
+ROW |86003 |478 |22985 |5 |0 |00AA00|0 |2 |0 |
+ROW |86004 |478 |22986 |5 |1 |3333FF|0 |2 |0 |
+ROW |86005 |479 |22990 |0 |0 |C80000|0 |2 |2 |
+ROW |86006 |479 |22988 |0 |1 |00C800|0 |2 |0 |
+ROW |86007 |475 |22962 |0 |0 |009900|0 |2 |0 |
+ROW |86008 |475 |22963 |0 |1 |000099|0 |2 |0 |
+ROW |86009 |475 |22961 |0 |2 |990000|0 |2 |0 |
+ROW |86010 |474 |22968 |1 |0 |990099|0 |2 |0 |
+ROW |86011 |474 |22971 |1 |1 |990000|0 |2 |0 |
+ROW |86012 |474 |22972 |1 |2 |000099|0 |2 |0 |
+ROW |86013 |474 |22965 |1 |3 |009900|0 |2 |0 |
+ROW |86014 |542 |22982 |5 |0 |00C800|0 |2 |0 |
+ROW |86015 |491 |23070 |0 |0 |C80000|0 |2 |2 |
+ROW |86016 |491 |23068 |0 |1 |00C800|0 |2 |0 |
+ROW |86017 |487 |23042 |0 |0 |009900|0 |2 |0 |
+ROW |86018 |487 |23043 |0 |1 |000099|0 |2 |0 |
+ROW |86019 |487 |23041 |0 |2 |990000|0 |2 |0 |
+ROW |86020 |543 |23062 |5 |0 |00C800|0 |2 |0 |
+ROW |86021 |494 |23077 |5 |0 |00AA00|0 |2 |0 |
+ROW |86022 |494 |23078 |5 |1 |3333FF|0 |2 |0 |
+ROW |86023 |493 |23075 |5 |0 |00AA00|0 |2 |0 |
+ROW |86024 |493 |23076 |5 |1 |3333FF|0 |2 |0 |
+ROW |86025 |461 |22870 |0 |0 |C80000|0 |2 |2 |
+ROW |86026 |461 |22868 |0 |1 |00C800|0 |2 |0 |
+ROW |86027 |459 |22844 |0 |0 |009900|0 |2 |0 |
+ROW |86028 |459 |22840 |0 |1 |000099|0 |2 |0 |
+ROW |86029 |457 |22842 |0 |0 |009900|0 |2 |0 |
+ROW |86030 |457 |22843 |0 |1 |000099|0 |2 |0 |
+ROW |86031 |457 |22841 |0 |2 |990000|0 |2 |0 |
+ROW |86032 |456 |22846 |1 |0 |009999|0 |2 |0 |
+ROW |86033 |456 |22848 |1 |1 |990099|0 |2 |0 |
+ROW |86034 |456 |22851 |1 |2 |990000|0 |2 |0 |
+ROW |86035 |456 |22852 |1 |3 |000099|0 |2 |0 |
+ROW |86036 |456 |22845 |1 |4 |009900|0 |2 |0 |
+ROW |86037 |544 |22862 |5 |0 |00C800|0 |2 |0 |
+ROW |86038 |458 |22857 |0 |0 |AA0000|0 |2 |2 |
+ROW |86039 |458 |22855 |0 |1 |00AA00|0 |2 |0 |
+ROW |86040 |484 |23025 |5 |0 |00AA00|0 |2 |0 |
+ROW |86041 |484 |23026 |5 |1 |3333FF|0 |2 |0 |
+ROW |86042 |485 |23030 |0 |0 |C80000|0 |2 |2 |
+ROW |86043 |485 |23028 |0 |1 |00C800|0 |2 |0 |
+ROW |86044 |483 |23004 |0 |0 |009900|0 |2 |0 |
+ROW |86045 |483 |23000 |0 |1 |000099|0 |2 |0 |
+ROW |86046 |481 |23002 |0 |0 |009900|0 |2 |0 |
+ROW |86047 |481 |23003 |0 |1 |000099|0 |2 |0 |
+ROW |86048 |481 |23001 |0 |2 |990000|0 |2 |0 |
+ROW |86049 |480 |23007 |1 |0 |999900|0 |2 |0 |
+ROW |86050 |480 |23011 |1 |1 |990000|0 |2 |0 |
+ROW |86051 |480 |23012 |1 |2 |000099|0 |2 |0 |
+ROW |86052 |480 |23005 |1 |3 |009900|0 |2 |0 |
+ROW |86053 |545 |23022 |5 |0 |00C800|0 |2 |0 |
+ROW |86054 |482 |23017 |0 |0 |AA0000|0 |2 |2 |
+ROW |86055 |482 |23015 |0 |1 |00AA00|0 |2 |0 |
+ROW |86056 |651 |26928 |5 |0 |EE0000|0 |2 |0 |
+ROW |86057 |651 |26927 |0 |1 |000000|1 |2 |0 |
+ROW |86058 |652 |26925 |2 |0 |880000|0 |2 |0 |
+ROW |86059 |652 |26932 |0 |1 |009900|0 |2 |0 |
+ROW |86060 |652 |26930 |0 |2 |00CCCC|0 |2 |0 |
+ROW |86061 |652 |26931 |0 |3 |000000|0 |2 |0 |
+ROW |86062 |652 |26929 |0 |4 |3333FF|0 |2 |0 |
+ROW |86063 |652 |26926 |0 |5 |777700|0 |2 |0 |
+ROW |86064 |653 |26933 |2 |0 |EE0000|0 |2 |0 |
+ROW |86065 |653 |26943 |2 |1 |EE00EE|0 |2 |0 |
+ROW |86066 |653 |26935 |0 |2 |000000|1 |2 |0 |
+ROW |86067 |653 |26936 |4 |3 |000000|1 |2 |0 |
+ROW |86068 |654 |26934 |2 |0 |880000|0 |2 |0 |
+ROW |86069 |654 |26939 |0 |1 |009900|0 |2 |0 |
+ROW |86070 |654 |26942 |0 |2 |00CCCC|0 |2 |0 |
+ROW |86071 |654 |26938 |0 |3 |000000|0 |2 |0 |
+ROW |86072 |654 |26937 |0 |4 |3333FF|0 |2 |0 |
+ROW |86073 |1447 |33113 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86074 |1447 |33112 |0 |1 |2774A4|0 |2 |0 |
+ROW |86075 |1447 |33099 |0 |2 |F63100|0 |2 |0 |
+ROW |86076 |1447 |33098 |0 |3 |A54F10|0 |2 |0 |
+ROW |86077 |1448 |33125 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86078 |1448 |33110 |0 |1 |2774A4|0 |2 |0 |
+ROW |86079 |1449 |33080 |2 |0 |1A7C11|0 |2 |0 |
+ROW |86080 |1449 |33081 |2 |1 |2774A4|0 |2 |0 |
+ROW |86081 |1450 |33089 |2 |0 |1A7C11|0 |2 |0 |
+ROW |86082 |1450 |33085 |2 |1 |2774A4|0 |2 |0 |
+ROW |86083 |1451 |33082 |2 |0 |1A7C11|0 |2 |0 |
+ROW |86084 |1451 |33086 |2 |1 |2774A4|0 |2 |0 |
+ROW |86085 |1451 |33083 |0 |2 |F63100|0 |2 |0 |
+ROW |86086 |1451 |33084 |0 |3 |A54F10|0 |2 |0 |
+ROW |86087 |1451 |33087 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |86088 |1451 |33088 |0 |5 |6C59DC|0 |2 |0 |
+ROW |86089 |1452 |33093 |2 |0 |1A7C11|0 |2 |0 |
+ROW |86090 |1452 |33092 |2 |1 |2774A4|0 |2 |0 |
+ROW |86091 |1453 |33077 |2 |0 |1A7C11|0 |2 |0 |
+ROW |86092 |1453 |33063 |2 |1 |2774A4|0 |2 |0 |
+ROW |86093 |1454 |33094 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86094 |1454 |33059 |0 |1 |2774A4|0 |2 |0 |
+ROW |86095 |1455 |33066 |2 |0 |1A7C11|0 |2 |0 |
+ROW |86096 |1455 |33071 |2 |1 |2774A4|0 |2 |0 |
+ROW |86097 |1455 |33067 |0 |2 |F63100|0 |2 |0 |
+ROW |86098 |1455 |33068 |0 |3 |A54F10|0 |2 |0 |
+ROW |86099 |1455 |33072 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |86100 |1455 |33073 |0 |5 |6C59DC|0 |2 |0 |
+ROW |86101 |1159 |30886 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86102 |1159 |30887 |0 |1 |2774A4|0 |2 |0 |
+ROW |86103 |1160 |30888 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86104 |1160 |30882 |0 |1 |2774A4|0 |2 |0 |
+ROW |86105 |1160 |30890 |0 |2 |F63100|0 |2 |0 |
+ROW |86106 |1160 |30881 |0 |3 |A54F10|0 |2 |0 |
+ROW |86107 |1160 |30889 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |86108 |1161 |30847 |2 |0 |1A7C11|0 |2 |0 |
+ROW |86109 |1161 |30872 |2 |1 |2774A4|0 |2 |0 |
+ROW |86110 |1162 |30853 |2 |0 |1A7C11|0 |2 |0 |
+ROW |86111 |1162 |30849 |2 |1 |2774A4|0 |2 |0 |
+ROW |86112 |1162 |30852 |2 |2 |F63100|0 |2 |0 |
+ROW |86113 |1162 |30851 |2 |3 |A54F10|0 |2 |0 |
+ROW |86114 |1162 |30848 |2 |4 |FC6EA3|0 |2 |0 |
+ROW |86115 |1163 |30856 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86116 |1163 |30855 |0 |1 |2774A4|0 |2 |0 |
+ROW |86117 |1163 |30854 |2 |2 |F63100|1 |2 |0 |
+ROW |86118 |1164 |30859 |2 |0 |1A7C11|0 |2 |0 |
+ROW |86119 |1164 |30870 |2 |1 |2774A4|0 |2 |0 |
+ROW |86120 |1165 |30860 |2 |0 |1A7C11|0 |2 |0 |
+ROW |86121 |1165 |30871 |2 |1 |2774A4|0 |2 |0 |
+ROW |86122 |1166 |30868 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86123 |1166 |30869 |0 |1 |2774A4|0 |2 |0 |
+ROW |86124 |1166 |30867 |0 |2 |F63100|0 |2 |0 |
+ROW |86125 |1166 |30866 |0 |3 |A54F10|0 |2 |0 |
+ROW |86126 |1166 |30865 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |86127 |1167 |30850 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86128 |1167 |30863 |5 |1 |2774A4|0 |2 |0 |
+ROW |86129 |1167 |30861 |5 |2 |F63100|0 |2 |0 |
+ROW |86130 |1168 |30833 |2 |0 |1A7C11|0 |2 |0 |
+ROW |86131 |1168 |30841 |2 |1 |2774A4|0 |2 |0 |
+ROW |86132 |1168 |30857 |2 |2 |F63100|0 |2 |0 |
+ROW |86133 |1169 |30834 |2 |0 |1A7C11|0 |2 |0 |
+ROW |86134 |1169 |30831 |2 |1 |2774A4|0 |2 |0 |
+ROW |86135 |1170 |30846 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86136 |1576 |34320 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86137 |1576 |30845 |0 |1 |2774A4|0 |2 |0 |
+ROW |86138 |1576 |30842 |0 |2 |F63100|0 |2 |0 |
+ROW |86139 |1576 |30873 |2 |3 |A54F10|1 |2 |0 |
+ROW |86140 |1753 |36436 |2 |0 |1A7C11|0 |2 |0 |
+ROW |86141 |1753 |36445 |0 |1 |2774A4|0 |2 |0 |
+ROW |86142 |1754 |36440 |2 |0 |1A7C11|0 |2 |0 |
+ROW |86143 |1754 |36441 |0 |1 |2774A4|0 |2 |0 |
+ROW |86144 |1755 |36446 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86145 |1755 |36451 |0 |1 |2774A4|0 |2 |0 |
+ROW |86146 |1755 |36449 |0 |2 |F63100|0 |2 |0 |
+ROW |86147 |1755 |36447 |0 |3 |A54F10|0 |2 |0 |
+ROW |86148 |1756 |36453 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86149 |1756 |36455 |0 |1 |2774A4|0 |2 |0 |
+ROW |86150 |1756 |36454 |0 |2 |F63100|0 |2 |0 |
+ROW |86151 |1757 |36467 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86152 |1757 |36465 |0 |1 |2774A4|0 |2 |0 |
+ROW |86153 |1758 |36474 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86154 |1758 |36475 |0 |1 |2774A4|0 |2 |0 |
+ROW |86155 |1759 |36477 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86156 |1759 |36479 |0 |1 |2774A4|0 |2 |0 |
+ROW |86157 |1760 |36480 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86158 |1760 |36478 |0 |1 |2774A4|0 |2 |0 |
+ROW |86159 |1761 |36483 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86160 |1761 |36486 |0 |1 |2774A4|0 |2 |0 |
+ROW |86161 |1761 |36484 |0 |2 |F63100|0 |2 |0 |
+ROW |86162 |1761 |36485 |0 |3 |A54F10|0 |2 |0 |
+ROW |86163 |1762 |36492 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86164 |1762 |36491 |0 |1 |2774A4|0 |2 |0 |
+ROW |86165 |1762 |36490 |0 |2 |F63100|0 |2 |0 |
+ROW |86166 |1763 |36495 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86167 |1763 |36496 |0 |1 |2774A4|0 |2 |0 |
+ROW |86168 |1764 |36494 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86169 |1764 |36497 |0 |1 |2774A4|0 |2 |0 |
+ROW |86170 |1764 |36498 |0 |2 |F63100|0 |2 |0 |
+ROW |86171 |1765 |36500 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86172 |1765 |36501 |0 |1 |2774A4|0 |2 |0 |
+ROW |86173 |1505 |33553 |2 |0 |1A7C11|0 |2 |0 |
+ROW |86174 |1505 |33562 |0 |1 |2774A4|0 |2 |0 |
+ROW |86175 |1506 |33557 |2 |0 |1A7C11|0 |2 |0 |
+ROW |86176 |1506 |33558 |0 |1 |2774A4|0 |2 |0 |
+ROW |86177 |1507 |33563 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86178 |1507 |33568 |0 |1 |2774A4|0 |2 |0 |
+ROW |86179 |1507 |33566 |0 |2 |F63100|0 |2 |0 |
+ROW |86180 |1507 |33564 |0 |3 |A54F10|0 |2 |0 |
+ROW |86181 |1508 |33570 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86182 |1508 |33572 |0 |1 |2774A4|0 |2 |0 |
+ROW |86183 |1508 |33571 |0 |2 |F63100|0 |2 |0 |
+ROW |86184 |1509 |33584 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86185 |1509 |33582 |0 |1 |2774A4|0 |2 |0 |
+ROW |86186 |1510 |33591 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86187 |1510 |33592 |0 |1 |2774A4|0 |2 |0 |
+ROW |86188 |1511 |33594 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86189 |1511 |33596 |0 |1 |2774A4|0 |2 |0 |
+ROW |86190 |1512 |33597 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86191 |1512 |33595 |0 |1 |2774A4|0 |2 |0 |
+ROW |86192 |1513 |33600 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86193 |1513 |33603 |0 |1 |2774A4|0 |2 |0 |
+ROW |86194 |1513 |33601 |0 |2 |F63100|0 |2 |0 |
+ROW |86195 |1513 |33602 |0 |3 |A54F10|0 |2 |0 |
+ROW |86196 |1514 |33609 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86197 |1514 |33608 |0 |1 |2774A4|0 |2 |0 |
+ROW |86198 |1514 |33607 |0 |2 |F63100|0 |2 |0 |
+ROW |86199 |1515 |33612 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86200 |1515 |33613 |0 |1 |2774A4|0 |2 |0 |
+ROW |86201 |1516 |33611 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86202 |1516 |33614 |0 |1 |2774A4|0 |2 |0 |
+ROW |86203 |1516 |33615 |0 |2 |F63100|0 |2 |0 |
+ROW |86204 |1517 |33617 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86205 |1517 |33618 |0 |1 |2774A4|0 |2 |0 |
+ROW |86206 |1807 |36811 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86207 |1807 |36810 |0 |1 |2774A4|0 |2 |0 |
+ROW |86208 |1808 |36809 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86209 |1808 |36808 |0 |1 |2774A4|0 |2 |0 |
+ROW |86210 |1808 |36812 |0 |2 |F63100|0 |2 |0 |
+ROW |86211 |1808 |36813 |0 |3 |A54F10|0 |2 |0 |
+ROW |86212 |1809 |36799 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86213 |1809 |36798 |0 |1 |2774A4|0 |2 |0 |
+ROW |86214 |1527 |33819 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86215 |1527 |33839 |0 |1 |2774A4|0 |2 |0 |
+ROW |86216 |1528 |33820 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86217 |1528 |33816 |0 |1 |2774A4|0 |2 |0 |
+ROW |86218 |1529 |33826 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86219 |1529 |33831 |0 |1 |2774A4|0 |2 |0 |
+ROW |86220 |1529 |33829 |0 |2 |F63100|0 |2 |0 |
+ROW |86221 |1529 |33821 |0 |3 |A54F10|0 |2 |0 |
+ROW |86222 |1529 |33825 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |86223 |1529 |33833 |0 |5 |6C59DC|0 |2 |0 |
+ROW |86224 |1529 |33823 |2 |6 |AC8C14|0 |2 |0 |
+ROW |86225 |1530 |33828 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86226 |1530 |33832 |0 |1 |2774A4|0 |2 |0 |
+ROW |86227 |1530 |33830 |0 |2 |F63100|0 |2 |0 |
+ROW |86228 |1530 |33822 |0 |3 |A54F10|0 |2 |0 |
+ROW |86229 |1530 |33815 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |86230 |1530 |33834 |0 |5 |6C59DC|0 |2 |0 |
+ROW |86231 |1530 |33824 |2 |6 |AC8C14|0 |2 |0 |
+ROW |86232 |1531 |33840 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86233 |1531 |33845 |0 |1 |2774A4|0 |2 |0 |
+ROW |86234 |1532 |33844 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86235 |1532 |33847 |0 |1 |2774A4|0 |2 |0 |
+ROW |86236 |1532 |33843 |0 |2 |F63100|0 |2 |0 |
+ROW |86237 |1532 |33841 |0 |3 |A54F10|0 |2 |0 |
+ROW |86238 |1533 |33863 |2 |0 |1A7C11|0 |2 |0 |
+ROW |86239 |1534 |33792 |2 |0 |1A7C11|0 |2 |0 |
+ROW |86240 |1534 |33791 |0 |1 |2774A4|0 |2 |0 |
+ROW |86241 |1534 |33793 |0 |2 |F63100|0 |2 |0 |
+ROW |86242 |1535 |33802 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86243 |1535 |33770 |0 |1 |2774A4|0 |2 |0 |
+ROW |86244 |1536 |33800 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86245 |1536 |33799 |0 |1 |2774A4|0 |2 |0 |
+ROW |86246 |1536 |33801 |0 |2 |F63100|0 |2 |0 |
+ROW |86247 |1537 |33798 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86248 |1537 |33806 |0 |1 |2774A4|0 |2 |0 |
+ROW |86249 |1537 |33774 |0 |2 |F63100|0 |2 |0 |
+ROW |86250 |1538 |33769 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86251 |1538 |33787 |0 |1 |2774A4|0 |2 |0 |
+ROW |86252 |1538 |33789 |0 |2 |F63100|0 |2 |0 |
+ROW |86253 |1538 |33790 |0 |3 |A54F10|0 |2 |0 |
+ROW |86254 |1539 |33785 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86255 |1539 |33772 |0 |1 |2774A4|0 |2 |0 |
+ROW |86256 |1539 |33773 |0 |2 |F63100|0 |2 |0 |
+ROW |86257 |1539 |33771 |0 |3 |A54F10|0 |2 |0 |
+ROW |86258 |1540 |33776 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86259 |1540 |33775 |0 |1 |2774A4|0 |2 |0 |
+ROW |86260 |1541 |33782 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86261 |1541 |33781 |0 |1 |2774A4|0 |2 |0 |
+ROW |86262 |1541 |33780 |0 |2 |F63100|0 |2 |0 |
+ROW |86263 |1541 |33783 |0 |3 |A54F10|0 |2 |0 |
+ROW |86264 |1541 |33777 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |86265 |1541 |33778 |0 |5 |6C59DC|0 |2 |0 |
+ROW |86266 |1542 |33804 |2 |0 |1A7C11|0 |2 |0 |
+ROW |86267 |1542 |33803 |2 |1 |2774A4|0 |2 |0 |
+ROW |86268 |1542 |33805 |2 |2 |F63100|0 |2 |0 |
+ROW |86269 |1543 |33937 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86270 |1543 |33940 |0 |1 |2774A4|0 |2 |0 |
+ROW |86271 |1543 |33936 |0 |2 |F63100|0 |2 |0 |
+ROW |86272 |1543 |33934 |0 |3 |A54F10|0 |2 |0 |
+ROW |86273 |1544 |33915 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86274 |1544 |33911 |0 |1 |2774A4|0 |2 |0 |
+ROW |86275 |1544 |33912 |0 |2 |F63100|0 |2 |0 |
+ROW |86276 |1544 |33910 |0 |3 |A54F10|0 |2 |0 |
+ROW |86277 |1544 |33914 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |86278 |1545 |33918 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86279 |1545 |33905 |0 |1 |2774A4|0 |2 |0 |
+ROW |86280 |1545 |33917 |0 |2 |F63100|0 |2 |0 |
+ROW |86281 |1545 |33916 |2 |3 |A54F10|1 |2 |0 |
+ROW |86282 |1546 |33908 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86283 |1546 |33909 |0 |1 |2774A4|0 |2 |0 |
+ROW |86284 |1546 |33902 |0 |2 |F63100|0 |2 |0 |
+ROW |86285 |1547 |33893 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86286 |1547 |33892 |0 |1 |2774A4|0 |2 |0 |
+ROW |86287 |1548 |33899 |2 |0 |1A7C11|0 |2 |0 |
+ROW |86288 |1548 |33898 |2 |1 |2774A4|0 |2 |0 |
+ROW |86289 |1548 |33895 |2 |2 |F63100|0 |2 |0 |
+ROW |86290 |1548 |33900 |2 |3 |A54F10|0 |2 |0 |
+ROW |86291 |1548 |33896 |2 |4 |FC6EA3|0 |2 |0 |
+ROW |86292 |1548 |33891 |2 |5 |6C59DC|0 |2 |0 |
+ROW |86293 |1190 |31140 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86294 |1190 |31141 |0 |1 |2774A4|0 |2 |0 |
+ROW |86295 |1261 |31145 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86296 |1261 |31146 |0 |1 |2774A4|0 |2 |0 |
+ROW |86297 |1261 |31147 |0 |2 |F63100|0 |2 |0 |
+ROW |86298 |1191 |31138 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86299 |1192 |31157 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86300 |1192 |31158 |0 |1 |2774A4|0 |2 |0 |
+ROW |86301 |1193 |31092 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86302 |1193 |31108 |0 |1 |2774A4|0 |2 |0 |
+ROW |86303 |1193 |31110 |0 |2 |F63100|0 |2 |0 |
+ROW |86304 |1193 |31067 |0 |3 |A54F10|0 |2 |0 |
+ROW |86305 |1193 |31086 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |86306 |1193 |31087 |0 |5 |6C59DC|0 |2 |0 |
+ROW |86307 |1194 |31120 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86308 |1194 |31105 |0 |1 |2774A4|0 |2 |0 |
+ROW |86309 |1194 |31071 |0 |2 |F63100|0 |2 |0 |
+ROW |86310 |1194 |31081 |0 |3 |A54F10|0 |2 |0 |
+ROW |86311 |1195 |31098 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86312 |1195 |31099 |0 |1 |2774A4|0 |2 |0 |
+ROW |86313 |1196 |31072 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86314 |1196 |31072 |0 |1 |2774A4|0 |2 |0 |
+ROW |86315 |1197 |31103 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86316 |1197 |31074 |0 |1 |2774A4|0 |2 |0 |
+ROW |86317 |1198 |31104 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86318 |1198 |31063 |0 |1 |2774A4|0 |2 |0 |
+ROW |86319 |1198 |31111 |0 |2 |F63100|0 |2 |0 |
+ROW |86320 |1198 |31112 |0 |3 |A54F10|0 |2 |0 |
+ROW |86321 |1198 |31084 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |86322 |1199 |31115 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86323 |1199 |31116 |0 |1 |2774A4|0 |2 |0 |
+ROW |86324 |1199 |31062 |0 |2 |F63100|0 |2 |0 |
+ROW |86325 |1199 |31118 |0 |3 |A54F10|0 |2 |0 |
+ROW |86326 |1199 |31056 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |86327 |1200 |31107 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86328 |1200 |31090 |0 |1 |2774A4|0 |2 |0 |
+ROW |86329 |1201 |31097 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86330 |1201 |31096 |0 |1 |2774A4|0 |2 |0 |
+ROW |86331 |1202 |31089 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86332 |1202 |31061 |0 |1 |2774A4|0 |2 |0 |
+ROW |86333 |1203 |31064 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86334 |1204 |31065 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86335 |1204 |31066 |0 |1 |2774A4|0 |2 |0 |
+ROW |86336 |1204 |31068 |0 |2 |F63100|0 |2 |0 |
+ROW |86337 |1204 |31070 |0 |3 |A54F10|0 |2 |0 |
+ROW |86338 |1204 |31101 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |86339 |1204 |31106 |0 |5 |6C59DC|0 |2 |0 |
+ROW |86340 |1204 |31114 |0 |6 |AC8C14|0 |2 |0 |
+ROW |86341 |1205 |31069 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86342 |1206 |31076 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86343 |1206 |31078 |0 |1 |2774A4|0 |2 |0 |
+ROW |86344 |1206 |31109 |0 |2 |F63100|0 |2 |0 |
+ROW |86345 |1206 |31075 |0 |3 |A54F10|0 |2 |0 |
+ROW |86346 |1207 |31080 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86347 |1207 |31095 |0 |1 |2774A4|0 |2 |0 |
+ROW |86348 |1208 |31113 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86349 |1208 |31118 |0 |1 |2774A4|0 |2 |0 |
+ROW |86350 |1209 |31058 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86351 |1209 |31077 |0 |1 |2774A4|0 |2 |0 |
+ROW |86352 |1209 |31056 |0 |2 |F63100|0 |2 |0 |
+ROW |86353 |1209 |31117 |0 |3 |A54F10|0 |2 |0 |
+ROW |86354 |1109 |30453 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86355 |1109 |30455 |5 |1 |2774A4|0 |2 |0 |
+ROW |86356 |1110 |30471 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86357 |1110 |30470 |0 |1 |2774A4|0 |2 |0 |
+ROW |86358 |1110 |30466 |0 |2 |F63100|0 |2 |0 |
+ROW |86359 |1110 |30441 |0 |3 |A54F10|0 |2 |0 |
+ROW |86360 |1111 |30463 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86361 |1111 |30452 |0 |1 |2774A4|0 |2 |0 |
+ROW |86362 |1111 |30451 |0 |2 |F63100|0 |2 |0 |
+ROW |86363 |1111 |30437 |0 |3 |A54F10|0 |2 |0 |
+ROW |86364 |1112 |30456 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86365 |1112 |30457 |0 |1 |2774A4|0 |2 |0 |
+ROW |86366 |1112 |30458 |0 |2 |F63100|0 |2 |0 |
+ROW |86367 |1112 |30459 |0 |3 |A54F10|0 |2 |0 |
+ROW |86368 |1113 |30442 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86369 |1113 |30444 |0 |1 |2774A4|0 |2 |0 |
+ROW |86370 |1113 |30445 |0 |2 |F63100|0 |2 |0 |
+ROW |86371 |1114 |30446 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86372 |1114 |30447 |0 |1 |2774A4|0 |2 |0 |
+ROW |86373 |1114 |31168 |0 |2 |F63100|0 |2 |0 |
+ROW |86374 |1114 |30449 |0 |3 |A54F10|0 |2 |0 |
+ROW |86375 |1136 |30659 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86376 |1136 |30661 |5 |1 |2774A4|0 |2 |0 |
+ROW |86377 |1137 |30677 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86378 |1137 |30676 |0 |1 |2774A4|0 |2 |0 |
+ROW |86379 |1137 |30672 |0 |2 |F63100|0 |2 |0 |
+ROW |86380 |1137 |30647 |0 |3 |A54F10|0 |2 |0 |
+ROW |86381 |1138 |30669 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86382 |1138 |30658 |0 |1 |2774A4|0 |2 |0 |
+ROW |86383 |1138 |30657 |0 |2 |F63100|0 |2 |0 |
+ROW |86384 |1138 |30643 |0 |3 |A54F10|0 |2 |0 |
+ROW |86385 |1139 |30662 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86386 |1139 |30663 |0 |1 |2774A4|0 |2 |0 |
+ROW |86387 |1139 |30664 |0 |2 |F63100|0 |2 |0 |
+ROW |86388 |1139 |30665 |0 |3 |A54F10|0 |2 |0 |
+ROW |86389 |1140 |30648 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86390 |1140 |30650 |0 |1 |2774A4|0 |2 |0 |
+ROW |86391 |1140 |30651 |0 |2 |F63100|0 |2 |0 |
+ROW |86392 |1141 |30652 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86393 |1141 |30653 |0 |1 |2774A4|0 |2 |0 |
+ROW |86394 |1141 |31172 |0 |2 |F63100|0 |2 |0 |
+ROW |86395 |1141 |30655 |0 |3 |A54F10|0 |2 |0 |
+ROW |86396 |1115 |30506 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86397 |1115 |30507 |5 |1 |2774A4|0 |2 |0 |
+ROW |86398 |1116 |30504 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86399 |1116 |30505 |0 |1 |2774A4|0 |2 |0 |
+ROW |86400 |1116 |30518 |0 |2 |F63100|0 |2 |0 |
+ROW |86401 |1116 |30492 |0 |3 |A54F10|0 |2 |0 |
+ROW |86402 |1117 |30493 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86403 |1117 |30500 |0 |1 |2774A4|0 |2 |0 |
+ROW |86404 |1117 |30486 |0 |2 |F63100|0 |2 |0 |
+ROW |86405 |1117 |30488 |0 |3 |A54F10|0 |2 |0 |
+ROW |86406 |1118 |30508 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86407 |1118 |30509 |0 |1 |2774A4|0 |2 |0 |
+ROW |86408 |1118 |30503 |0 |2 |F63100|0 |2 |0 |
+ROW |86409 |1118 |30510 |0 |3 |A54F10|0 |2 |0 |
+ROW |86410 |1119 |30491 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86411 |1119 |30494 |0 |1 |2774A4|0 |2 |0 |
+ROW |86412 |1119 |30495 |0 |2 |F63100|0 |2 |0 |
+ROW |86413 |1120 |30496 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86414 |1120 |30497 |0 |1 |2774A4|0 |2 |0 |
+ROW |86415 |1120 |31176 |0 |2 |F63100|0 |2 |0 |
+ROW |86416 |1120 |30499 |0 |3 |A54F10|0 |2 |0 |
+ROW |86417 |1266 |31773 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86418 |1266 |31774 |0 |1 |2774A4|0 |2 |0 |
+ROW |86419 |1267 |31777 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86420 |1267 |31779 |0 |1 |2774A4|0 |2 |0 |
+ROW |86421 |1267 |33168 |0 |2 |F63100|0 |2 |0 |
+ROW |86422 |1268 |31685 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86423 |1268 |31738 |0 |1 |2774A4|0 |2 |0 |
+ROW |86424 |1269 |31723 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86425 |1269 |31757 |0 |1 |2774A4|0 |2 |0 |
+ROW |86426 |1269 |31721 |0 |2 |F63100|0 |2 |0 |
+ROW |86427 |1270 |31728 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86428 |1270 |31759 |0 |1 |2774A4|0 |2 |0 |
+ROW |86429 |1271 |31745 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86430 |1271 |31727 |0 |1 |2774A4|0 |2 |0 |
+ROW |86431 |1272 |31687 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86432 |1272 |31710 |0 |1 |2774A4|0 |2 |0 |
+ROW |86433 |1273 |31705 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86434 |1273 |31703 |0 |1 |2774A4|0 |2 |0 |
+ROW |86435 |1273 |31706 |0 |2 |F63100|0 |2 |0 |
+ROW |86436 |1273 |31701 |0 |3 |A54F10|0 |2 |0 |
+ROW |86437 |1273 |31708 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |86438 |1274 |31715 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86439 |1274 |31726 |0 |1 |2774A4|0 |2 |0 |
+ROW |86440 |1274 |31717 |0 |2 |F63100|0 |2 |0 |
+ROW |86441 |1274 |31716 |0 |3 |A54F10|0 |2 |0 |
+ROW |86442 |1274 |31714 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |86443 |1274 |31713 |0 |5 |6C59DC|0 |2 |0 |
+ROW |86444 |1210 |31261 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86445 |1210 |31262 |0 |1 |2774A4|0 |2 |0 |
+ROW |86446 |1211 |31269 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86447 |1211 |31271 |0 |1 |2774A4|0 |2 |0 |
+ROW |86448 |1211 |33170 |0 |2 |F63100|0 |2 |0 |
+ROW |86449 |1212 |31233 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86450 |1212 |31234 |0 |1 |2774A4|0 |2 |0 |
+ROW |86451 |1213 |31216 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86452 |1213 |31237 |0 |1 |2774A4|0 |2 |0 |
+ROW |86453 |1213 |31214 |0 |2 |F63100|0 |2 |0 |
+ROW |86454 |1214 |31191 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86455 |1214 |31221 |0 |1 |2774A4|0 |2 |0 |
+ROW |86456 |1215 |31206 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86457 |1215 |31220 |0 |1 |2774A4|0 |2 |0 |
+ROW |86458 |1216 |31192 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86459 |1216 |31193 |0 |1 |2774A4|0 |2 |0 |
+ROW |86460 |1217 |31200 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86461 |1217 |31197 |0 |1 |2774A4|0 |2 |0 |
+ROW |86462 |1217 |31201 |0 |2 |F63100|0 |2 |0 |
+ROW |86463 |1217 |31198 |0 |3 |A54F10|0 |2 |0 |
+ROW |86464 |1217 |31202 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |86465 |1218 |31207 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86466 |1218 |31208 |0 |1 |2774A4|0 |2 |0 |
+ROW |86467 |1218 |31210 |0 |2 |F63100|0 |2 |0 |
+ROW |86468 |1218 |31209 |0 |3 |A54F10|0 |2 |0 |
+ROW |86469 |1218 |31219 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |86470 |1218 |31205 |0 |5 |6C59DC|0 |2 |0 |
+ROW |86471 |1380 |32423 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86472 |1380 |32421 |0 |1 |2774A4|0 |2 |0 |
+ROW |86473 |1381 |32405 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86474 |1382 |32426 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86475 |1382 |32408 |0 |1 |2774A4|0 |2 |0 |
+ROW |86476 |1382 |32422 |0 |2 |F63100|0 |2 |0 |
+ROW |86477 |1382 |32425 |0 |3 |A54F10|0 |2 |0 |
+ROW |86478 |1383 |32409 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86479 |1384 |32419 |0 |0 |1A7C11|1 |2 |0 |
+ROW |86480 |1384 |32416 |0 |1 |2774A4|1 |2 |0 |
+ROW |86481 |1384 |32413 |0 |2 |F63100|1 |2 |0 |
+ROW |86482 |1384 |32418 |5 |3 |A54F10|0 |2 |0 |
+ROW |86483 |1384 |32415 |5 |4 |FC6EA3|0 |2 |0 |
+ROW |86484 |1384 |32412 |5 |5 |6C59DC|0 |2 |0 |
+ROW |86485 |1385 |32420 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86486 |1385 |32417 |0 |1 |2774A4|0 |2 |0 |
+ROW |86487 |1385 |32414 |0 |2 |F63100|0 |2 |0 |
+ROW |86488 |1386 |32433 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86489 |1386 |32432 |0 |1 |2774A4|1 |2 |0 |
+ROW |86490 |1387 |32431 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86491 |1387 |32430 |0 |1 |2774A4|0 |2 |0 |
+ROW |86492 |1387 |32429 |0 |2 |F63100|0 |2 |0 |
+ROW |86493 |1387 |32428 |0 |3 |A54F10|0 |2 |0 |
+ROW |86494 |1387 |32427 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |86495 |1388 |32386 |0 |0 |1A7C11|1 |2 |0 |
+ROW |86496 |1388 |32391 |0 |1 |2774A4|1 |2 |0 |
+ROW |86497 |1388 |32387 |0 |2 |F63100|1 |2 |0 |
+ROW |86498 |1388 |32390 |0 |3 |A54F10|1 |2 |0 |
+ROW |86499 |1388 |32395 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |86500 |1388 |32389 |0 |5 |6C59DC|0 |2 |0 |
+ROW |86501 |1389 |32393 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86502 |1389 |32392 |0 |1 |2774A4|0 |2 |0 |
+ROW |86503 |1389 |32394 |0 |2 |F63100|1 |2 |0 |
+ROW |86504 |1389 |32388 |0 |3 |A54F10|1 |2 |0 |
+ROW |86505 |1390 |32401 |5 |0 |1A7C11|1 |2 |0 |
+ROW |86506 |1390 |32402 |0 |1 |2774A4|0 |2 |0 |
+ROW |86507 |1390 |32397 |0 |2 |F63100|1 |2 |0 |
+ROW |86508 |1390 |32398 |0 |3 |A54F10|1 |2 |0 |
+ROW |86509 |1390 |32399 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |86510 |1390 |32400 |0 |5 |6C59DC|1 |2 |0 |
+ROW |86511 |1390 |32396 |0 |6 |AC8C14|1 |2 |0 |
+ROW |86512 |1391 |32367 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86513 |1391 |32366 |0 |1 |2774A4|1 |2 |0 |
+ROW |86514 |1392 |32370 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86515 |1393 |32382 |0 |0 |1A7C11|1 |2 |0 |
+ROW |86516 |1393 |32381 |0 |1 |2774A4|1 |2 |0 |
+ROW |86517 |1393 |32383 |0 |2 |F63100|1 |2 |0 |
+ROW |86518 |1393 |32384 |0 |3 |A54F10|1 |2 |0 |
+ROW |86519 |1394 |32377 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86520 |1394 |32374 |0 |1 |2774A4|1 |2 |0 |
+ROW |86521 |1395 |32403 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86522 |1395 |32385 |0 |1 |2774A4|1 |2 |0 |
+ROW |86523 |1219 |31363 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86524 |1219 |31346 |0 |1 |2774A4|0 |2 |0 |
+ROW |86525 |1219 |31345 |0 |2 |F63100|0 |2 |0 |
+ROW |86526 |1219 |31344 |0 |3 |A54F10|0 |2 |0 |
+ROW |86527 |1219 |31343 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |86528 |1219 |31342 |0 |5 |6C59DC|0 |2 |0 |
+ROW |86529 |1219 |31340 |0 |6 |AC8C14|0 |2 |0 |
+ROW |86530 |1219 |31339 |0 |7 |611F27|0 |2 |0 |
+ROW |86531 |1219 |31341 |0 |8 |F230E0|0 |2 |0 |
+ROW |86532 |1219 |31341 |0 |9 |FFAD40|0 |2 |0 |
+ROW |86533 |1220 |31337 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86534 |1221 |31360 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86535 |1221 |31359 |0 |1 |2774A4|0 |2 |0 |
+ROW |86536 |1221 |31357 |0 |2 |F63100|0 |2 |0 |
+ROW |86537 |1221 |31356 |0 |3 |A54F10|0 |2 |0 |
+ROW |86538 |1221 |31354 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |86539 |1221 |31353 |0 |5 |6C59DC|0 |2 |0 |
+ROW |86540 |1221 |31352 |0 |6 |AC8C14|0 |2 |0 |
+ROW |86541 |1221 |31350 |0 |7 |611F27|0 |2 |0 |
+ROW |86542 |1221 |31351 |0 |8 |F230E0|0 |2 |0 |
+ROW |86543 |1221 |31338 |0 |9 |FFAD40|0 |2 |0 |
+ROW |86544 |1221 |31349 |0 |10 |40CDFF|0 |2 |0 |
+ROW |86545 |1221 |31348 |0 |11 |40FFA0|0 |2 |0 |
+ROW |86546 |1221 |31347 |0 |12 |AE4500|0 |2 |0 |
+ROW |86547 |1222 |31336 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86548 |1456 |33178 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86549 |1456 |33179 |0 |1 |2774A4|0 |2 |0 |
+ROW |86550 |1456 |33180 |0 |2 |F63100|0 |2 |0 |
+ROW |86551 |1087 |30346 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86552 |1087 |30345 |0 |1 |2774A4|0 |2 |0 |
+ROW |86553 |1088 |30350 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86554 |1088 |30349 |5 |1 |2774A4|0 |2 |0 |
+ROW |86555 |1089 |30396 |2 |0 |1A7C11|0 |2 |0 |
+ROW |86556 |1090 |30398 |2 |0 |1A7C11|0 |2 |0 |
+ROW |86557 |1091 |30322 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86558 |1091 |30277 |5 |1 |2774A4|0 |2 |0 |
+ROW |86559 |1092 |30284 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86560 |1093 |30313 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86561 |1093 |30314 |0 |1 |2774A4|0 |2 |0 |
+ROW |86562 |1093 |30315 |5 |2 |F63100|0 |2 |0 |
+ROW |86563 |1093 |30316 |0 |3 |A54F10|0 |2 |0 |
+ROW |86564 |1094 |30279 |2 |0 |1A7C11|0 |2 |0 |
+ROW |86565 |1094 |30280 |2 |1 |2774A4|0 |2 |0 |
+ROW |86566 |1095 |30290 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86567 |1095 |30293 |0 |1 |2774A4|0 |2 |0 |
+ROW |86568 |1096 |30318 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86569 |1096 |30308 |2 |1 |2774A4|0 |2 |0 |
+ROW |86570 |1096 |30320 |2 |2 |F63100|0 |2 |0 |
+ROW |86571 |1097 |30317 |2 |0 |1A7C11|0 |2 |0 |
+ROW |86572 |1098 |30289 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86573 |1098 |30291 |5 |1 |2774A4|0 |2 |0 |
+ROW |86574 |1099 |30334 |2 |0 |1A7C11|0 |2 |0 |
+ROW |86575 |1099 |30325 |2 |1 |2774A4|0 |2 |0 |
+ROW |86576 |1100 |30306 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86577 |1101 |30274 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86578 |1102 |30281 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86579 |1577 |34351 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86580 |1577 |34350 |0 |1 |2774A4|0 |2 |0 |
+ROW |86581 |1578 |34387 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86582 |1578 |34388 |2 |1 |2774A4|0 |2 |0 |
+ROW |86583 |1579 |34393 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86584 |1579 |34386 |0 |1 |2774A4|0 |2 |0 |
+ROW |86585 |1580 |34370 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86586 |1580 |34384 |0 |1 |2774A4|0 |2 |0 |
+ROW |86587 |1580 |34383 |0 |2 |F63100|0 |2 |0 |
+ROW |86588 |1581 |34438 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86589 |1581 |34413 |0 |1 |2774A4|0 |2 |0 |
+ROW |86590 |1581 |34427 |0 |2 |F63100|0 |2 |0 |
+ROW |86591 |1582 |34420 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86592 |1582 |34419 |0 |1 |2774A4|0 |2 |0 |
+ROW |86593 |1582 |34418 |0 |2 |F63100|0 |2 |0 |
+ROW |86594 |1060 |30159 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86595 |1065 |30161 |0 |0 |969696|0 |9 |2 |
+ROW |86596 |1065 |30162 |0 |1 |C80000|0 |9 |0 |
+ROW |86597 |1070 |30142 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86598 |741 |27084 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86599 |741 |27085 |2 |1 |2774A4|0 |2 |0 |
+ROW |86600 |741 |27083 |0 |2 |F63100|1 |2 |0 |
+ROW |86601 |741 |27086 |0 |3 |A54F10|1 |2 |0 |
+ROW |86602 |741 |27082 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |86603 |741 |27079 |0 |5 |6C59DC|1 |2 |0 |
+ROW |86604 |745 |27104 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86605 |745 |27105 |2 |1 |2774A4|0 |2 |0 |
+ROW |86606 |745 |27103 |0 |2 |F63100|1 |2 |0 |
+ROW |86607 |745 |27106 |0 |3 |A54F10|1 |2 |0 |
+ROW |86608 |745 |27102 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |86609 |745 |27099 |0 |5 |6C59DC|1 |2 |0 |
+ROW |86610 |766 |27124 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86611 |766 |27125 |2 |1 |2774A4|0 |2 |0 |
+ROW |86612 |766 |27123 |0 |2 |F63100|1 |2 |0 |
+ROW |86613 |766 |27126 |0 |3 |A54F10|1 |2 |0 |
+ROW |86614 |766 |27122 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |86615 |766 |27119 |0 |5 |6C59DC|1 |2 |0 |
+ROW |86616 |668 |27208 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86617 |1032 |30088 |2 |0 |1A7C11|0 |2 |0 |
+ROW |86618 |1032 |30087 |5 |1 |2774A4|0 |2 |0 |
+ROW |86619 |1033 |30089 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86620 |671 |27240 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86621 |1034 |30093 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86622 |675 |27294 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86623 |1035 |30094 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86624 |1800 |36729 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86625 |1801 |36732 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86626 |1802 |36739 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86627 |1802 |36746 |0 |1 |2774A4|0 |2 |0 |
+ROW |86628 |1802 |36737 |0 |2 |F63100|0 |2 |0 |
+ROW |86629 |1802 |36744 |0 |3 |A54F10|0 |2 |0 |
+ROW |86630 |1802 |36736 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |86631 |1802 |36743 |0 |5 |6C59DC|0 |2 |0 |
+ROW |86632 |1803 |36747 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86633 |1803 |36740 |0 |1 |2774A4|0 |2 |0 |
+ROW |86634 |1804 |36738 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86635 |1804 |36745 |0 |1 |2774A4|0 |2 |0 |
+ROW |86636 |1805 |36763 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86637 |1805 |36764 |0 |1 |2774A4|0 |2 |0 |
+ROW |86638 |1549 |33966 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86639 |1550 |33971 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86640 |1551 |33974 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86641 |1551 |33977 |2 |1 |2774A4|0 |2 |0 |
+ROW |86642 |1551 |33976 |0 |2 |F63100|1 |2 |0 |
+ROW |86643 |1551 |33973 |0 |3 |A54F10|1 |2 |0 |
+ROW |86644 |1551 |33975 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |86645 |1551 |33972 |0 |5 |6C59DC|1 |2 |0 |
+ROW |86646 |1552 |34007 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86647 |1553 |34012 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86648 |1554 |34015 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86649 |1554 |34018 |2 |1 |2774A4|0 |2 |0 |
+ROW |86650 |1554 |34017 |0 |2 |F63100|1 |2 |0 |
+ROW |86651 |1554 |34014 |0 |3 |A54F10|1 |2 |0 |
+ROW |86652 |1554 |34016 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |86653 |1554 |34013 |0 |5 |6C59DC|1 |2 |0 |
+ROW |86654 |1555 |34048 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86655 |1556 |34053 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86656 |1557 |34056 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86657 |1557 |34059 |2 |1 |2774A4|0 |2 |0 |
+ROW |86658 |1557 |34058 |0 |2 |F63100|1 |2 |0 |
+ROW |86659 |1557 |34055 |0 |3 |A54F10|1 |2 |0 |
+ROW |86660 |1557 |34057 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |86661 |1557 |34054 |0 |5 |6C59DC|1 |2 |0 |
+ROW |86662 |1558 |34089 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86663 |1559 |34094 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86664 |1560 |34097 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86665 |1560 |34100 |2 |1 |2774A4|0 |2 |0 |
+ROW |86666 |1560 |34099 |0 |2 |F63100|1 |2 |0 |
+ROW |86667 |1560 |34096 |0 |3 |A54F10|1 |2 |0 |
+ROW |86668 |1560 |34098 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |86669 |1560 |34095 |0 |5 |6C59DC|1 |2 |0 |
+ROW |86670 |1561 |34130 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86671 |1562 |34135 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86672 |1563 |34138 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86673 |1563 |34141 |2 |1 |2774A4|0 |2 |0 |
+ROW |86674 |1563 |34140 |0 |2 |F63100|1 |2 |0 |
+ROW |86675 |1563 |34137 |0 |3 |A54F10|1 |2 |0 |
+ROW |86676 |1563 |34139 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |86677 |1563 |34136 |0 |5 |6C59DC|1 |2 |0 |
+ROW |86678 |1038 |30101 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86679 |786 |28246 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86680 |687 |27417 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86681 |691 |27376 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86682 |694 |27478 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86683 |1042 |30105 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86684 |1043 |30107 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86685 |698 |27511 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86686 |1044 |30108 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86687 |701 |27547 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86688 |1045 |27591 |2 |0 |1A7C11|0 |2 |0 |
+ROW |86689 |1045 |30110 |5 |1 |2774A4|0 |2 |0 |
+ROW |86690 |1046 |30111 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86691 |704 |27586 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86692 |1766 |36536 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86693 |1767 |36538 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86694 |1768 |36540 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86695 |1769 |36543 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86696 |1770 |36547 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86697 |1770 |36562 |0 |1 |2774A4|0 |2 |0 |
+ROW |86698 |1770 |36553 |0 |2 |F63100|0 |2 |0 |
+ROW |86699 |1770 |36544 |0 |3 |A54F10|0 |2 |0 |
+ROW |86700 |1770 |36565 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |86701 |1770 |36568 |0 |5 |6C59DC|0 |2 |0 |
+ROW |86702 |1770 |36556 |0 |6 |AC8C14|0 |2 |0 |
+ROW |86703 |1771 |36546 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86704 |1771 |36561 |0 |1 |2774A4|0 |2 |0 |
+ROW |86705 |1771 |36552 |0 |2 |F63100|0 |2 |0 |
+ROW |86706 |1771 |36558 |0 |3 |A54F10|0 |2 |0 |
+ROW |86707 |1771 |36564 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |86708 |1771 |36567 |0 |5 |6C59DC|0 |2 |0 |
+ROW |86709 |1771 |36554 |0 |6 |AC8C14|0 |2 |0 |
+ROW |86710 |1772 |36570 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86711 |1772 |36560 |0 |1 |2774A4|0 |2 |0 |
+ROW |86712 |1772 |36551 |0 |2 |F63100|0 |2 |0 |
+ROW |86713 |1772 |36569 |0 |3 |A54F10|0 |2 |0 |
+ROW |86714 |1772 |36563 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |86715 |1772 |36566 |0 |5 |6C59DC|0 |2 |0 |
+ROW |86716 |1772 |36555 |0 |6 |AC8C14|0 |2 |0 |
+ROW |86717 |1773 |36571 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86718 |1774 |36573 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86719 |1775 |36575 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86720 |1775 |36577 |0 |1 |2774A4|0 |2 |0 |
+ROW |86721 |1776 |36584 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86722 |1776 |36581 |0 |1 |2774A4|0 |2 |0 |
+ROW |86723 |1777 |36583 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86724 |1777 |36580 |0 |1 |2774A4|0 |2 |0 |
+ROW |86725 |1778 |36587 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86726 |1778 |36585 |0 |1 |2774A4|0 |2 |0 |
+ROW |86727 |1778 |36586 |0 |2 |F63100|0 |2 |0 |
+ROW |86728 |1779 |36594 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86729 |1779 |36590 |0 |1 |2774A4|1 |2 |0 |
+ROW |86730 |1779 |36600 |0 |2 |F63100|0 |2 |0 |
+ROW |86731 |1779 |36596 |0 |3 |A54F10|1 |2 |0 |
+ROW |86732 |1779 |36593 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |86733 |1779 |36599 |0 |5 |6C59DC|0 |2 |0 |
+ROW |86734 |1780 |36605 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86735 |1780 |36604 |0 |1 |2774A4|1 |2 |0 |
+ROW |86736 |1780 |36607 |0 |2 |F63100|0 |2 |0 |
+ROW |86737 |1780 |36606 |0 |3 |A54F10|1 |2 |0 |
+ROW |86738 |1781 |36613 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86739 |1781 |36612 |0 |1 |2774A4|1 |2 |0 |
+ROW |86740 |1781 |36615 |0 |2 |F63100|0 |2 |0 |
+ROW |86741 |1781 |36614 |0 |3 |A54F10|1 |2 |0 |
+ROW |86742 |1782 |36621 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86743 |1782 |36620 |0 |1 |2774A4|1 |2 |0 |
+ROW |86744 |1782 |36623 |0 |2 |F63100|0 |2 |0 |
+ROW |86745 |1782 |36622 |0 |3 |A54F10|1 |2 |0 |
+ROW |86746 |1783 |36628 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86747 |1783 |36626 |0 |1 |2774A4|0 |2 |0 |
+ROW |86748 |1783 |36627 |0 |2 |F63100|0 |2 |0 |
+ROW |86749 |1784 |36508 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86750 |1784 |36506 |0 |1 |2774A4|0 |2 |0 |
+ROW |86751 |1784 |36504 |0 |2 |F63100|0 |2 |0 |
+ROW |86752 |1784 |36510 |0 |3 |A54F10|0 |2 |0 |
+ROW |86753 |1784 |36509 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |86754 |1784 |36507 |0 |5 |6C59DC|0 |2 |0 |
+ROW |86755 |708 |27671 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86756 |1047 |30112 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86757 |1048 |30114 |2 |0 |1A7C11|0 |2 |0 |
+ROW |86758 |1048 |30113 |5 |1 |2774A4|0 |2 |0 |
+ROW |86759 |1049 |30115 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86760 |775 |28143 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86761 |714 |27753 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86762 |1050 |30116 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86763 |856 |28894 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86764 |1051 |30118 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86765 |1564 |34166 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86766 |1564 |34169 |2 |1 |2774A4|0 |2 |0 |
+ROW |86767 |1564 |34168 |0 |2 |F63100|1 |2 |0 |
+ROW |86768 |1564 |34165 |0 |3 |A54F10|1 |2 |0 |
+ROW |86769 |1564 |34167 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |86770 |1564 |34164 |0 |5 |6C59DC|1 |2 |0 |
+ROW |86771 |1565 |34174 |0 |0 |969696|0 |9 |2 |
+ROW |86772 |1565 |34175 |0 |1 |C80000|0 |9 |0 |
+ROW |86773 |1566 |34178 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86774 |1567 |34154 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86775 |724 |27904 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86776 |1396 |32439 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86777 |1396 |32437 |0 |1 |2774A4|0 |2 |0 |
+ROW |86778 |1396 |32436 |0 |2 |F63100|0 |2 |0 |
+ROW |86779 |1396 |32438 |0 |3 |A54F10|0 |2 |0 |
+ROW |86780 |1052 |27907 |0 |0 |969696|0 |9 |2 |
+ROW |86781 |1052 |27908 |0 |1 |C80000|0 |9 |0 |
+ROW |86782 |1053 |30120 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86783 |1457 |33206 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86784 |1457 |33193 |5 |1 |2774A4|0 |2 |0 |
+ROW |86785 |1458 |33195 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86786 |1458 |33203 |5 |1 |2774A4|0 |2 |0 |
+ROW |86787 |1458 |33202 |5 |2 |F63100|0 |2 |0 |
+ROW |86788 |1459 |33200 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86789 |1459 |33194 |5 |1 |2774A4|0 |2 |0 |
+ROW |86790 |1460 |33187 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86791 |1460 |33186 |5 |1 |2774A4|0 |2 |0 |
+ROW |86792 |1460 |33204 |5 |2 |F63100|0 |2 |0 |
+ROW |86793 |1461 |33226 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86794 |1461 |33215 |5 |1 |2774A4|0 |2 |0 |
+ROW |86795 |1462 |33207 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86796 |1463 |33223 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86797 |1463 |33218 |5 |1 |2774A4|0 |2 |0 |
+ROW |86798 |1464 |33210 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86799 |1464 |33209 |5 |1 |2774A4|0 |2 |0 |
+ROW |86800 |1464 |33224 |5 |2 |F63100|0 |2 |0 |
+ROW |86801 |1465 |33249 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86802 |1465 |33236 |5 |1 |2774A4|0 |2 |0 |
+ROW |86803 |1466 |33238 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86804 |1466 |33246 |5 |1 |2774A4|0 |2 |0 |
+ROW |86805 |1466 |33245 |5 |2 |F63100|0 |2 |0 |
+ROW |86806 |1467 |33243 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86807 |1467 |33237 |5 |1 |2774A4|0 |2 |0 |
+ROW |86808 |1468 |33230 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86809 |1468 |33229 |5 |1 |2774A4|0 |2 |0 |
+ROW |86810 |1468 |33247 |5 |2 |F63100|0 |2 |0 |
+ROW |86811 |1469 |33258 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86812 |1470 |33251 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86813 |1471 |33256 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86814 |1472 |33277 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86815 |1473 |33274 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86816 |1473 |33273 |5 |1 |2774A4|0 |2 |0 |
+ROW |86817 |1473 |33272 |5 |2 |F63100|0 |2 |0 |
+ROW |86818 |1474 |33270 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86819 |1475 |33269 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86820 |1476 |33261 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86821 |1476 |33275 |5 |1 |2774A4|0 |2 |0 |
+ROW |86822 |1477 |33296 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86823 |1478 |33293 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86824 |1478 |33292 |5 |1 |2774A4|0 |2 |0 |
+ROW |86825 |1478 |33291 |5 |2 |F63100|0 |2 |0 |
+ROW |86826 |1479 |33289 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86827 |1480 |33288 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86828 |1481 |33280 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86829 |1481 |33294 |5 |1 |2774A4|0 |2 |0 |
+ROW |86830 |1482 |33312 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86831 |1483 |33313 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86832 |1484 |33314 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86833 |1485 |33319 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86834 |1486 |33320 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86835 |1487 |33304 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86836 |1487 |33305 |5 |1 |2774A4|0 |2 |0 |
+ROW |86837 |727 |27936 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86838 |1054 |27935 |2 |0 |1A7C11|0 |2 |0 |
+ROW |86839 |1054 |30122 |5 |1 |2774A4|0 |2 |0 |
+ROW |86840 |1055 |30123 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86841 |730 |27975 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86842 |1056 |30126 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86843 |733 |28003 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86844 |1057 |30131 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86845 |736 |28031 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86846 |1058 |30136 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86847 |1810 |36846 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86848 |1810 |36847 |0 |1 |2774A4|0 |2 |0 |
+ROW |86849 |1810 |36848 |0 |2 |F63100|0 |2 |0 |
+ROW |86850 |1810 |36849 |0 |3 |A54F10|0 |2 |0 |
+ROW |86851 |1811 |36850 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86852 |1811 |36851 |0 |1 |2774A4|0 |2 |0 |
+ROW |86853 |1812 |36852 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86854 |1812 |36853 |0 |1 |2774A4|0 |2 |0 |
+ROW |86855 |1812 |36858 |0 |2 |F63100|0 |2 |0 |
+ROW |86856 |1813 |36855 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86857 |1813 |36856 |0 |1 |2774A4|0 |2 |0 |
+ROW |86858 |1813 |36859 |0 |2 |F63100|0 |2 |0 |
+ROW |86859 |1814 |36870 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86860 |1814 |36868 |0 |1 |2774A4|0 |2 |0 |
+ROW |86861 |1814 |36871 |0 |2 |F63100|0 |2 |0 |
+ROW |86862 |1814 |36873 |0 |3 |A54F10|0 |2 |0 |
+ROW |86863 |1814 |36874 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |86864 |1648 |35196 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86865 |1648 |35199 |0 |1 |2774A4|0 |2 |0 |
+ROW |86866 |1649 |35201 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86867 |1649 |35204 |0 |1 |2774A4|0 |2 |0 |
+ROW |86868 |1650 |35205 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86869 |1651 |35206 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86870 |1652 |35235 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86871 |1652 |35227 |0 |1 |2774A4|0 |2 |0 |
+ROW |86872 |1652 |35237 |0 |2 |F63100|0 |2 |0 |
+ROW |86873 |1652 |35229 |0 |3 |A54F10|0 |2 |0 |
+ROW |86874 |1652 |35238 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |86875 |1652 |35230 |0 |5 |6C59DC|0 |2 |0 |
+ROW |86876 |1653 |35236 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86877 |1653 |35228 |0 |1 |2774A4|0 |2 |0 |
+ROW |86878 |1654 |35226 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86879 |1654 |35234 |0 |1 |2774A4|0 |2 |0 |
+ROW |86880 |1655 |35241 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86881 |1656 |35249 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86882 |1657 |35250 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86883 |1658 |35209 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86884 |1659 |35265 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86885 |1660 |35277 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86886 |1660 |35269 |0 |1 |2774A4|0 |2 |0 |
+ROW |86887 |1660 |35279 |0 |2 |F63100|0 |2 |0 |
+ROW |86888 |1660 |35271 |0 |3 |A54F10|0 |2 |0 |
+ROW |86889 |1660 |35280 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |86890 |1660 |35272 |0 |5 |6C59DC|0 |2 |0 |
+ROW |86891 |1661 |35278 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86892 |1661 |35270 |0 |1 |2774A4|0 |2 |0 |
+ROW |86893 |1662 |35268 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86894 |1662 |35276 |0 |1 |2774A4|0 |2 |0 |
+ROW |86895 |1663 |35283 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86896 |1664 |35284 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86897 |1665 |35253 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86898 |1666 |35301 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86899 |1667 |35302 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86900 |1668 |35303 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86901 |1669 |35304 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86902 |1670 |35312 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86903 |1670 |35322 |0 |1 |2774A4|0 |2 |0 |
+ROW |86904 |1670 |35313 |0 |2 |F63100|0 |2 |0 |
+ROW |86905 |1670 |35308 |0 |3 |A54F10|0 |2 |0 |
+ROW |86906 |1670 |35315 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |86907 |1670 |35309 |0 |5 |6C59DC|0 |2 |0 |
+ROW |86908 |1671 |35306 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86909 |1671 |35307 |0 |1 |2774A4|0 |2 |0 |
+ROW |86910 |1672 |35329 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86911 |1672 |35336 |0 |1 |2774A4|0 |2 |0 |
+ROW |86912 |1672 |35327 |0 |2 |F63100|0 |2 |0 |
+ROW |86913 |1672 |35334 |0 |3 |A54F10|0 |2 |0 |
+ROW |86914 |1672 |35326 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |86915 |1672 |35333 |0 |5 |6C59DC|0 |2 |0 |
+ROW |86916 |1673 |35328 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86917 |1673 |35335 |0 |1 |2774A4|0 |2 |0 |
+ROW |86918 |1674 |35337 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86919 |1674 |35330 |0 |1 |2774A4|0 |2 |0 |
+ROW |86920 |1675 |35350 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86921 |1676 |35351 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86922 |1677 |35368 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86923 |1678 |35369 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86924 |1679 |35370 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86925 |1680 |35371 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86926 |1681 |35379 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86927 |1681 |35389 |0 |1 |2774A4|0 |2 |0 |
+ROW |86928 |1681 |35380 |0 |2 |F63100|0 |2 |0 |
+ROW |86929 |1681 |35375 |0 |3 |A54F10|0 |2 |0 |
+ROW |86930 |1681 |35382 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |86931 |1681 |35376 |0 |5 |6C59DC|0 |2 |0 |
+ROW |86932 |1682 |35373 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86933 |1682 |35374 |0 |1 |2774A4|0 |2 |0 |
+ROW |86934 |1683 |35396 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86935 |1683 |35403 |0 |1 |2774A4|0 |2 |0 |
+ROW |86936 |1683 |35394 |0 |2 |F63100|0 |2 |0 |
+ROW |86937 |1683 |35401 |0 |3 |A54F10|0 |2 |0 |
+ROW |86938 |1683 |35393 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |86939 |1683 |35400 |0 |5 |6C59DC|0 |2 |0 |
+ROW |86940 |1684 |35395 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86941 |1684 |35402 |0 |1 |2774A4|0 |2 |0 |
+ROW |86942 |1685 |35404 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86943 |1685 |35397 |0 |1 |2774A4|0 |2 |0 |
+ROW |86944 |1686 |35417 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86945 |1687 |35418 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86946 |1688 |35434 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86947 |1689 |35442 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86948 |1689 |35445 |0 |1 |2774A4|0 |2 |0 |
+ROW |86949 |1690 |35447 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86950 |1690 |35450 |0 |1 |2774A4|0 |2 |0 |
+ROW |86951 |1691 |35451 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86952 |1692 |35452 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86953 |1693 |35477 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86954 |1693 |35469 |0 |1 |2774A4|0 |2 |0 |
+ROW |86955 |1693 |35479 |0 |2 |F63100|0 |2 |0 |
+ROW |86956 |1693 |35471 |0 |3 |A54F10|0 |2 |0 |
+ROW |86957 |1693 |35480 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |86958 |1693 |35472 |0 |5 |6C59DC|0 |2 |0 |
+ROW |86959 |1694 |35478 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86960 |1694 |35470 |0 |1 |2774A4|0 |2 |0 |
+ROW |86961 |1695 |35468 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86962 |1695 |35476 |0 |1 |2774A4|0 |2 |0 |
+ROW |86963 |1696 |35483 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86964 |1697 |35455 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86965 |1698 |35519 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86966 |1698 |35511 |0 |1 |2774A4|0 |2 |0 |
+ROW |86967 |1698 |35521 |0 |2 |F63100|0 |2 |0 |
+ROW |86968 |1698 |35513 |0 |3 |A54F10|0 |2 |0 |
+ROW |86969 |1698 |35522 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |86970 |1698 |35514 |0 |5 |6C59DC|0 |2 |0 |
+ROW |86971 |1699 |35520 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86972 |1699 |35512 |0 |1 |2774A4|0 |2 |0 |
+ROW |86973 |1700 |35510 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86974 |1700 |35518 |0 |1 |2774A4|0 |2 |0 |
+ROW |86975 |1701 |35525 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86976 |1702 |35533 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86977 |1703 |35534 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86978 |1704 |35493 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86979 |1705 |35563 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86980 |1705 |35555 |0 |1 |2774A4|0 |2 |0 |
+ROW |86981 |1705 |35565 |0 |2 |F63100|0 |2 |0 |
+ROW |86982 |1705 |35557 |0 |3 |A54F10|0 |2 |0 |
+ROW |86983 |1705 |35566 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |86984 |1705 |35558 |0 |5 |6C59DC|0 |2 |0 |
+ROW |86985 |1706 |35564 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86986 |1706 |35556 |0 |1 |2774A4|0 |2 |0 |
+ROW |86987 |1707 |35554 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86988 |1707 |35562 |0 |1 |2774A4|0 |2 |0 |
+ROW |86989 |1708 |35569 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86990 |1709 |35577 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86991 |1710 |35578 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86992 |1711 |35537 |5 |0 |1A7C11|0 |2 |0 |
+ROW |86993 |1712 |35595 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86994 |1713 |35607 |0 |0 |1A7C11|0 |2 |0 |
+ROW |86995 |1713 |35599 |0 |1 |2774A4|0 |2 |0 |
+ROW |86996 |1713 |35609 |0 |2 |F63100|0 |2 |0 |
+ROW |86997 |1713 |35601 |0 |3 |A54F10|0 |2 |0 |
+ROW |86998 |1713 |35610 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |86999 |1713 |35602 |0 |5 |6C59DC|0 |2 |0 |
+ROW |87000 |1714 |35608 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87001 |1714 |35600 |0 |1 |2774A4|0 |2 |0 |
+ROW |87002 |1715 |35598 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87003 |1715 |35606 |0 |1 |2774A4|0 |2 |0 |
+ROW |87004 |1716 |35613 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87005 |1717 |35621 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87006 |1718 |35622 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87007 |1719 |35581 |5 |0 |1A7C11|0 |2 |0 |
+ROW |87008 |1720 |35639 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87009 |1721 |35651 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87010 |1721 |35643 |0 |1 |2774A4|0 |2 |0 |
+ROW |87011 |1721 |35653 |0 |2 |F63100|0 |2 |0 |
+ROW |87012 |1721 |35645 |0 |3 |A54F10|0 |2 |0 |
+ROW |87013 |1721 |35654 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |87014 |1721 |35646 |0 |5 |6C59DC|0 |2 |0 |
+ROW |87015 |1722 |35652 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87016 |1722 |35644 |0 |1 |2774A4|0 |2 |0 |
+ROW |87017 |1723 |35642 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87018 |1723 |35650 |0 |1 |2774A4|0 |2 |0 |
+ROW |87019 |1724 |35657 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87020 |1725 |35665 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87021 |1726 |35666 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87022 |1727 |35625 |5 |0 |1A7C11|0 |2 |0 |
+ROW |87023 |1728 |35684 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87024 |1729 |35696 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87025 |1729 |35688 |0 |1 |2774A4|0 |2 |0 |
+ROW |87026 |1729 |35698 |0 |2 |F63100|0 |2 |0 |
+ROW |87027 |1729 |35690 |0 |3 |A54F10|0 |2 |0 |
+ROW |87028 |1729 |35699 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |87029 |1729 |35691 |0 |5 |6C59DC|0 |2 |0 |
+ROW |87030 |1730 |35697 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87031 |1730 |35689 |0 |1 |2774A4|0 |2 |0 |
+ROW |87032 |1731 |35687 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87033 |1731 |35695 |0 |1 |2774A4|0 |2 |0 |
+ROW |87034 |1732 |35702 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87035 |1733 |35710 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87036 |1734 |35711 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87037 |1735 |35669 |5 |0 |1A7C11|0 |2 |0 |
+ROW |87038 |1736 |35729 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87039 |1737 |35741 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87040 |1737 |35733 |0 |1 |2774A4|0 |2 |0 |
+ROW |87041 |1737 |35743 |0 |2 |F63100|0 |2 |0 |
+ROW |87042 |1737 |35735 |0 |3 |A54F10|0 |2 |0 |
+ROW |87043 |1737 |35744 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |87044 |1737 |35736 |0 |5 |6C59DC|0 |2 |0 |
+ROW |87045 |1738 |35742 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87046 |1738 |35734 |0 |1 |2774A4|0 |2 |0 |
+ROW |87047 |1739 |35732 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87048 |1739 |35740 |0 |1 |2774A4|0 |2 |0 |
+ROW |87049 |1740 |35747 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87050 |1741 |35755 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87051 |1742 |35756 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87052 |1743 |35714 |5 |0 |1A7C11|0 |2 |0 |
+ROW |87053 |1744 |35774 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87054 |1745 |35787 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87055 |1745 |35779 |0 |1 |2774A4|0 |2 |0 |
+ROW |87056 |1745 |35789 |0 |2 |F63100|0 |2 |0 |
+ROW |87057 |1745 |35781 |0 |3 |A54F10|0 |2 |0 |
+ROW |87058 |1745 |35790 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |87059 |1745 |35782 |0 |5 |6C59DC|0 |2 |0 |
+ROW |87060 |1746 |35788 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87061 |1746 |35780 |0 |1 |2774A4|0 |2 |0 |
+ROW |87062 |1747 |35778 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87063 |1747 |35786 |0 |1 |2774A4|0 |2 |0 |
+ROW |87064 |1748 |35793 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87065 |1749 |35801 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87066 |1750 |35802 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87067 |1751 |35759 |5 |0 |1A7C11|0 |2 |0 |
+ROW |87068 |1223 |31370 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87069 |1223 |31371 |5 |1 |2774A4|0 |2 |0 |
+ROW |87070 |1226 |31380 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87071 |1226 |31383 |5 |1 |2774A4|0 |2 |0 |
+ROW |87072 |1229 |31379 |0 |0 |1A7C11|1 |2 |0 |
+ROW |87073 |1229 |31382 |5 |1 |2774A4|0 |2 |0 |
+ROW |87074 |887 |29211 |0 |0 |969696|0 |9 |2 |
+ROW |87075 |887 |29210 |0 |1 |C80000|0 |9 |0 |
+ROW |87076 |899 |29216 |5 |0 |1A7C11|0 |2 |0 |
+ROW |87077 |899 |29217 |2 |1 |2774A4|0 |2 |0 |
+ROW |87078 |899 |29218 |0 |2 |F63100|1 |2 |0 |
+ROW |87079 |899 |29219 |0 |3 |A54F10|1 |2 |0 |
+ROW |87080 |899 |29220 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |87081 |899 |29221 |0 |5 |6C59DC|1 |2 |0 |
+ROW |87082 |911 |29089 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87083 |911 |29102 |0 |1 |2774A4|0 |2 |0 |
+ROW |87084 |908 |29098 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87085 |908 |29097 |0 |1 |2774A4|0 |2 |0 |
+ROW |87086 |908 |29095 |0 |2 |F63100|0 |2 |0 |
+ROW |87087 |908 |29088 |0 |3 |A54F10|0 |2 |0 |
+ROW |87088 |908 |29094 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |87089 |908 |29093 |0 |5 |6C59DC|0 |2 |0 |
+ROW |87090 |908 |29092 |0 |6 |AC8C14|0 |2 |0 |
+ROW |87091 |908 |29091 |0 |7 |611F27|0 |2 |0 |
+ROW |87092 |908 |29090 |0 |8 |F230E0|0 |2 |0 |
+ROW |87093 |905 |29198 |5 |0 |1A7C11|0 |2 |0 |
+ROW |87094 |917 |29104 |2 |0 |1A7C11|0 |2 |0 |
+ROW |87095 |917 |29105 |5 |1 |2774A4|0 |2 |0 |
+ROW |87096 |914 |31364 |5 |0 |1A7C11|0 |2 |0 |
+ROW |87097 |923 |29118 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87098 |923 |29119 |0 |1 |2774A4|0 |2 |0 |
+ROW |87099 |923 |29117 |0 |2 |F63100|0 |2 |0 |
+ROW |87100 |920 |29107 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87101 |920 |29106 |0 |1 |2774A4|0 |2 |0 |
+ROW |87102 |902 |29096 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87103 |902 |29101 |0 |1 |2774A4|0 |2 |0 |
+ROW |87104 |902 |29100 |0 |2 |F63100|0 |2 |0 |
+ROW |87105 |902 |29087 |0 |3 |A54F10|1 |2 |0 |
+ROW |87106 |1279 |31902 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87107 |1279 |31903 |5 |1 |2774A4|0 |2 |0 |
+ROW |87108 |1281 |31933 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87109 |1281 |31936 |5 |1 |2774A4|0 |2 |0 |
+ROW |87110 |1283 |31932 |0 |0 |1A7C11|1 |2 |0 |
+ROW |87111 |1283 |31935 |5 |1 |2774A4|0 |2 |0 |
+ROW |87112 |1285 |31907 |0 |0 |969696|0 |9 |2 |
+ROW |87113 |1285 |31908 |0 |1 |C80000|0 |9 |0 |
+ROW |87114 |1287 |31911 |5 |0 |1A7C11|0 |2 |0 |
+ROW |87115 |1287 |31914 |2 |1 |2774A4|0 |2 |0 |
+ROW |87116 |1287 |31913 |0 |2 |F63100|1 |2 |0 |
+ROW |87117 |1287 |31910 |0 |3 |A54F10|1 |2 |0 |
+ROW |87118 |1287 |31912 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |87119 |1287 |31909 |0 |5 |6C59DC|1 |2 |0 |
+ROW |87120 |1289 |31831 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87121 |1289 |31820 |0 |1 |2774A4|0 |2 |0 |
+ROW |87122 |1291 |31822 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87123 |1291 |31835 |0 |1 |2774A4|0 |2 |0 |
+ROW |87124 |1291 |31825 |0 |2 |F63100|0 |2 |0 |
+ROW |87125 |1291 |31826 |0 |3 |A54F10|0 |2 |0 |
+ROW |87126 |1291 |31823 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |87127 |1291 |31827 |0 |5 |6C59DC|0 |2 |0 |
+ROW |87128 |1291 |31824 |0 |6 |AC8C14|0 |2 |0 |
+ROW |87129 |1291 |31828 |0 |7 |611F27|0 |2 |0 |
+ROW |87130 |1291 |31830 |0 |8 |F230E0|0 |2 |0 |
+ROW |87131 |1293 |31892 |5 |0 |1A7C11|0 |2 |0 |
+ROW |87132 |1295 |31855 |2 |0 |1A7C11|0 |2 |0 |
+ROW |87133 |1295 |31853 |5 |1 |2774A4|0 |2 |0 |
+ROW |87134 |1297 |31893 |5 |0 |1A7C11|0 |2 |0 |
+ROW |87135 |1299 |31838 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87136 |1299 |31839 |0 |1 |2774A4|0 |2 |0 |
+ROW |87137 |1299 |31837 |0 |2 |F63100|0 |2 |0 |
+ROW |87138 |1301 |31850 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87139 |1301 |31852 |0 |1 |2774A4|0 |2 |0 |
+ROW |87140 |1303 |31829 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87141 |1303 |31833 |0 |1 |2774A4|0 |2 |0 |
+ROW |87142 |1303 |31834 |0 |2 |F63100|0 |2 |0 |
+ROW |87143 |1303 |31832 |0 |3 |A54F10|1 |2 |0 |
+ROW |87144 |952 |29436 |5 |0 |1A7C11|0 |2 |0 |
+ROW |87145 |952 |29437 |2 |1 |2774A4|0 |2 |0 |
+ROW |87146 |952 |29438 |0 |2 |F63100|1 |2 |0 |
+ROW |87147 |952 |29439 |0 |3 |A54F10|1 |2 |0 |
+ROW |87148 |952 |29441 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |87149 |952 |29440 |0 |5 |6C59DC|1 |2 |0 |
+ROW |87150 |955 |29434 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87151 |955 |29435 |5 |1 |2774A4|0 |2 |0 |
+ROW |87152 |954 |29448 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87153 |954 |29449 |5 |1 |2774A4|0 |2 |0 |
+ROW |87154 |956 |29452 |0 |0 |1A7C11|1 |2 |0 |
+ROW |87155 |956 |29453 |5 |1 |2774A4|0 |2 |0 |
+ROW |87156 |953 |29446 |0 |0 |969696|0 |9 |2 |
+ROW |87157 |953 |29432 |0 |1 |C80000|0 |9 |0 |
+ROW |87158 |960 |29405 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87159 |960 |29406 |0 |1 |2774A4|0 |2 |0 |
+ROW |87160 |959 |29426 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87161 |959 |29413 |0 |1 |2774A4|0 |2 |0 |
+ROW |87162 |959 |29411 |0 |2 |F63100|0 |2 |0 |
+ROW |87163 |959 |29410 |0 |3 |A54F10|0 |2 |0 |
+ROW |87164 |959 |29399 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |87165 |959 |29409 |0 |5 |6C59DC|0 |2 |0 |
+ROW |87166 |959 |29412 |0 |6 |AC8C14|0 |2 |0 |
+ROW |87167 |959 |29408 |0 |7 |611F27|0 |2 |0 |
+ROW |87168 |959 |29407 |0 |8 |F230E0|0 |2 |0 |
+ROW |87169 |958 |29427 |5 |0 |1A7C11|0 |2 |0 |
+ROW |87170 |962 |29403 |2 |0 |1A7C11|0 |2 |0 |
+ROW |87171 |962 |29402 |5 |1 |2774A4|0 |2 |0 |
+ROW |87172 |961 |29396 |5 |0 |1A7C11|0 |2 |0 |
+ROW |87173 |963 |29400 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87174 |963 |29401 |0 |1 |2774A4|0 |2 |0 |
+ROW |87175 |957 |29420 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87176 |957 |29419 |0 |1 |2774A4|0 |2 |0 |
+ROW |87177 |957 |29418 |0 |2 |F63100|0 |2 |0 |
+ROW |87178 |957 |29417 |0 |3 |A54F10|1 |2 |0 |
+ROW |87179 |866 |29014 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87180 |866 |29015 |5 |1 |2774A4|0 |2 |0 |
+ROW |87181 |868 |29018 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87182 |868 |29019 |0 |1 |2774A4|0 |2 |0 |
+ROW |87183 |868 |29022 |0 |2 |F63100|0 |2 |0 |
+ROW |87184 |868 |29023 |0 |3 |A54F10|0 |2 |0 |
+ROW |87185 |868 |29020 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |87186 |868 |29024 |0 |5 |6C59DC|0 |2 |0 |
+ROW |87187 |868 |29021 |0 |6 |AC8C14|0 |2 |0 |
+ROW |87188 |868 |29025 |0 |7 |611F27|0 |2 |0 |
+ROW |87189 |868 |29026 |0 |8 |F230E0|0 |2 |0 |
+ROW |87190 |870 |29048 |5 |0 |1A7C11|0 |2 |0 |
+ROW |87191 |872 |29028 |0 |0 |969696|0 |9 |2 |
+ROW |87192 |872 |29027 |0 |1 |C80000|0 |9 |0 |
+ROW |87193 |882 |28992 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87194 |882 |28991 |0 |1 |2774A4|0 |2 |0 |
+ROW |87195 |876 |28982 |2 |0 |1A7C11|0 |2 |0 |
+ROW |87196 |876 |28983 |5 |1 |2774A4|0 |2 |0 |
+ROW |87197 |874 |28978 |5 |0 |1A7C11|0 |2 |0 |
+ROW |87198 |878 |28985 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87199 |878 |28984 |0 |1 |2774A4|0 |2 |0 |
+ROW |87200 |880 |28987 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87201 |880 |28988 |0 |1 |2774A4|0 |2 |0 |
+ROW |87202 |880 |28989 |0 |2 |F63100|0 |2 |0 |
+ROW |87203 |880 |28990 |0 |3 |A54F10|1 |2 |0 |
+ROW |87204 |964 |29513 |0 |0 |969696|0 |9 |2 |
+ROW |87205 |964 |29512 |0 |1 |C80000|0 |9 |0 |
+ROW |87206 |1238 |31435 |5 |0 |1A7C11|0 |2 |0 |
+ROW |87207 |1238 |31438 |2 |1 |2774A4|0 |2 |0 |
+ROW |87208 |1238 |31437 |0 |2 |F63100|1 |2 |0 |
+ROW |87209 |1238 |31434 |0 |3 |A54F10|1 |2 |0 |
+ROW |87210 |1238 |31436 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |87211 |1238 |31433 |0 |5 |6C59DC|1 |2 |0 |
+ROW |87212 |1488 |33321 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87213 |1488 |33324 |0 |1 |2774A4|0 |2 |0 |
+ROW |87214 |1490 |33322 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87215 |1490 |33323 |5 |1 |2774A4|0 |2 |0 |
+ROW |87216 |1240 |31441 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87217 |1240 |31442 |5 |1 |2774A4|0 |2 |0 |
+ROW |87218 |1242 |31440 |0 |0 |1A7C11|1 |2 |0 |
+ROW |87219 |1242 |31439 |5 |1 |2774A4|0 |2 |0 |
+ROW |87220 |974 |29456 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87221 |974 |29455 |0 |1 |2774A4|0 |2 |0 |
+ROW |87222 |976 |29458 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87223 |976 |29457 |0 |1 |2774A4|0 |2 |0 |
+ROW |87224 |972 |29454 |5 |0 |1A7C11|0 |2 |0 |
+ROW |87225 |978 |29462 |5 |0 |1A7C11|0 |2 |0 |
+ROW |87226 |980 |31421 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87227 |980 |29466 |0 |1 |2774A4|0 |2 |0 |
+ROW |87228 |1305 |32013 |0 |0 |969696|0 |9 |2 |
+ROW |87229 |1305 |32014 |0 |1 |C80000|0 |9 |0 |
+ROW |87230 |1307 |32017 |5 |0 |1A7C11|0 |2 |0 |
+ROW |87231 |1307 |32020 |2 |1 |2774A4|0 |2 |0 |
+ROW |87232 |1307 |32019 |0 |2 |F63100|1 |2 |0 |
+ROW |87233 |1307 |32016 |0 |3 |A54F10|1 |2 |0 |
+ROW |87234 |1307 |32018 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |87235 |1307 |32015 |0 |5 |6C59DC|1 |2 |0 |
+ROW |87236 |1492 |33329 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87237 |1492 |33332 |0 |1 |2774A4|0 |2 |0 |
+ROW |87238 |1494 |33330 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87239 |1494 |33331 |5 |1 |2774A4|0 |2 |0 |
+ROW |87240 |1309 |32023 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87241 |1309 |32024 |5 |1 |2774A4|0 |2 |0 |
+ROW |87242 |1311 |32022 |0 |0 |1A7C11|1 |2 |0 |
+ROW |87243 |1311 |32021 |5 |1 |2774A4|0 |2 |0 |
+ROW |87244 |1313 |31952 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87245 |1313 |31949 |0 |1 |2774A4|0 |2 |0 |
+ROW |87246 |1315 |31951 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87247 |1315 |31950 |0 |1 |2774A4|0 |2 |0 |
+ROW |87248 |1317 |31954 |5 |0 |1A7C11|0 |2 |0 |
+ROW |87249 |1319 |31973 |5 |0 |1A7C11|0 |2 |0 |
+ROW |87250 |1321 |31969 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87251 |1321 |31970 |0 |1 |2774A4|0 |2 |0 |
+ROW |87252 |1583 |34451 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87253 |1584 |34465 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87254 |1584 |34463 |0 |1 |2774A4|0 |2 |0 |
+ROW |87255 |1585 |34466 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87256 |1585 |34462 |0 |1 |2774A4|0 |2 |0 |
+ROW |87257 |1586 |34499 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87258 |1587 |34513 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87259 |1587 |34511 |0 |1 |2774A4|0 |2 |0 |
+ROW |87260 |1588 |34514 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87261 |1588 |34510 |0 |1 |2774A4|0 |2 |0 |
+ROW |87262 |1589 |34547 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87263 |1590 |34561 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87264 |1590 |34559 |0 |1 |2774A4|0 |2 |0 |
+ROW |87265 |1591 |34562 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87266 |1591 |34558 |0 |1 |2774A4|0 |2 |0 |
+ROW |87267 |1592 |34595 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87268 |1593 |34609 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87269 |1593 |34607 |0 |1 |2774A4|0 |2 |0 |
+ROW |87270 |1594 |34610 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87271 |1594 |34606 |0 |1 |2774A4|0 |2 |0 |
+ROW |87272 |1595 |34643 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87273 |1596 |34657 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87274 |1596 |34655 |0 |1 |2774A4|0 |2 |0 |
+ROW |87275 |1597 |34658 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87276 |1597 |34654 |0 |1 |2774A4|0 |2 |0 |
+ROW |87277 |1619 |35016 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87278 |1620 |35030 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87279 |1620 |35028 |0 |1 |2774A4|0 |2 |0 |
+ROW |87280 |1621 |35031 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87281 |1621 |35027 |0 |1 |2774A4|0 |2 |0 |
+ROW |87282 |1601 |34739 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87283 |1602 |34753 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87284 |1602 |34751 |0 |1 |2774A4|0 |2 |0 |
+ROW |87285 |1603 |34754 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87286 |1603 |34750 |0 |1 |2774A4|0 |2 |0 |
+ROW |87287 |1604 |34787 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87288 |1569 |34192 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87289 |1569 |34180 |0 |1 |2774A4|0 |2 |0 |
+ROW |87290 |1570 |34194 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87291 |1570 |34190 |0 |1 |2774A4|0 |2 |0 |
+ROW |87292 |1605 |34793 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87293 |1606 |34807 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87294 |1606 |34805 |0 |1 |2774A4|0 |2 |0 |
+ROW |87295 |1607 |34808 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87296 |1607 |34804 |0 |1 |2774A4|0 |2 |0 |
+ROW |87297 |1608 |34841 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87298 |1609 |34855 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87299 |1609 |34853 |0 |1 |2774A4|0 |2 |0 |
+ROW |87300 |1610 |34856 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87301 |1610 |34852 |0 |1 |2774A4|0 |2 |0 |
+ROW |87302 |1611 |34889 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87303 |1612 |34903 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87304 |1612 |34901 |0 |1 |2774A4|0 |2 |0 |
+ROW |87305 |1613 |34904 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87306 |1613 |34900 |0 |1 |2774A4|0 |2 |0 |
+ROW |87307 |1518 |33705 |5 |0 |1A7C11|0 |2 |0 |
+ROW |87308 |1519 |33724 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87309 |1519 |33722 |0 |1 |2774A4|0 |2 |0 |
+ROW |87310 |1519 |33726 |0 |2 |F63100|0 |2 |0 |
+ROW |87311 |1520 |33719 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87312 |1520 |33720 |0 |1 |2774A4|0 |2 |0 |
+ROW |87313 |1520 |33721 |0 |2 |F63100|0 |2 |0 |
+ROW |87314 |1521 |33725 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87315 |1521 |33723 |0 |1 |2774A4|0 |2 |0 |
+ROW |87316 |1521 |33727 |0 |2 |F63100|0 |2 |0 |
+ROW |87317 |1522 |33730 |5 |0 |1A7C11|0 |2 |0 |
+ROW |87318 |1523 |33734 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87319 |1523 |33732 |0 |1 |2774A4|0 |2 |0 |
+ROW |87320 |1523 |33736 |0 |2 |F63100|0 |2 |0 |
+ROW |87321 |1524 |33735 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87322 |1524 |33733 |0 |1 |2774A4|0 |2 |0 |
+ROW |87323 |1524 |33737 |0 |2 |F63100|0 |2 |0 |
+ROW |87324 |1525 |33743 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87325 |1525 |33742 |0 |1 |2774A4|0 |2 |0 |
+ROW |87326 |1525 |33738 |0 |2 |F63100|0 |2 |0 |
+ROW |87327 |1526 |33692 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87328 |1526 |33693 |0 |1 |2774A4|0 |2 |0 |
+ROW |87329 |1571 |34269 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87330 |1571 |34270 |0 |1 |2774A4|0 |2 |0 |
+ROW |87331 |1571 |34271 |0 |2 |F63100|0 |2 |0 |
+ROW |87332 |1571 |34272 |0 |3 |A54F10|0 |2 |0 |
+ROW |87333 |1572 |34311 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87334 |1572 |34301 |0 |1 |2774A4|0 |2 |0 |
+ROW |87335 |1573 |34243 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87336 |1573 |34244 |0 |1 |2774A4|0 |2 |0 |
+ROW |87337 |1573 |34246 |0 |2 |F63100|0 |2 |0 |
+ROW |87338 |1573 |34245 |0 |3 |A54F10|0 |2 |0 |
+ROW |87339 |1574 |34239 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87340 |1574 |34227 |0 |1 |2774A4|0 |2 |0 |
+ROW |87341 |1574 |34236 |0 |2 |F63100|0 |2 |0 |
+ROW |87342 |1574 |34237 |0 |3 |A54F10|0 |2 |0 |
+ROW |87343 |1575 |34253 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87344 |1575 |34252 |0 |1 |2774A4|0 |2 |0 |
+ROW |87345 |1575 |34249 |0 |2 |F63100|0 |2 |0 |
+ROW |87346 |1575 |34251 |0 |3 |A54F10|0 |2 |0 |
+ROW |87347 |1496 |33368 |5 |0 |1A7C11|0 |2 |0 |
+ROW |87348 |1497 |33371 |1 |0 |1A7C11|0 |2 |0 |
+ROW |87349 |1497 |33371 |1 |1 |2774A4|0 |2 |0 |
+ROW |87350 |1498 |33379 |5 |0 |1A7C11|0 |2 |0 |
+ROW |87351 |1498 |33382 |2 |1 |2774A4|0 |2 |0 |
+ROW |87352 |1498 |33381 |0 |2 |F63100|1 |2 |0 |
+ROW |87353 |1498 |33378 |0 |3 |A54F10|1 |2 |0 |
+ROW |87354 |1498 |33380 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |87355 |1498 |33377 |0 |5 |6C59DC|1 |2 |0 |
+ROW |87356 |1142 |30689 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87357 |1752 |35830 |5 |0 |1A7C11|0 |2 |0 |
+ROW |87358 |1752 |35835 |2 |1 |2774A4|0 |2 |0 |
+ROW |87359 |1752 |35833 |0 |2 |F63100|1 |2 |0 |
+ROW |87360 |1752 |35828 |0 |3 |A54F10|1 |2 |0 |
+ROW |87361 |1752 |35832 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |87362 |1752 |35827 |0 |5 |6C59DC|1 |2 |0 |
+ROW |87363 |1275 |31794 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87364 |1275 |31792 |0 |1 |2774A4|0 |2 |0 |
+ROW |87365 |1275 |31800 |0 |2 |F63100|1 |2 |0 |
+ROW |87366 |1276 |36086 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87367 |1276 |33390 |0 |1 |2774A4|0 |2 |0 |
+ROW |87368 |1276 |31799 |0 |2 |F63100|0 |2 |0 |
+ROW |87369 |1276 |31797 |0 |3 |A54F10|0 |2 |0 |
+ROW |87370 |1277 |36085 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87371 |1277 |33389 |0 |1 |2774A4|0 |2 |0 |
+ROW |87372 |1277 |31795 |0 |2 |F63100|0 |2 |0 |
+ROW |87373 |1278 |36084 |0 |0 |1A7C11|0 |2 |0 |
+ROW |87374 |1278 |31793 |0 |1 |2774A4|0 |2 |0 |
+ROW |87375 |1278 |31802 |0 |2 |F63100|0 |2 |0 |
+ROW |87376 |1278 |31790 |0 |3 |A54F10|0 |2 |0 |
+ROW |87377 |1278 |31791 |0 |4 |FC6EA3|0 |2 |0 |
TABLE |hostmacro
FIELDS|hostmacroid|hostid|macro |value |description |type|
@@ -23076,7 +23077,7 @@ ROW |904 |10285 |{$MEMORY.UTIL.MAX}
ROW |905 |10285 |{$NET.IF.IFALIAS.MATCHES} |^.*$ | |0 |
ROW |906 |10285 |{$NET.IF.IFALIAS.NOT_MATCHES} |CHANGE_IF_NEEDED | |0 |
ROW |907 |10285 |{$NET.IF.IFNAME.MATCHES} |^.*$ | |0 |
-ROW |908 |10285 |{$NET.IF.IFNAME.NOT_MATCHES} |(^Software Loopback Interface&pipe;^NULL[0-9.]*$&pipe;^[Ll]o[0-9.]*$&pipe;^[Ss]ystem$&pipe;^Nu[0-9.]*$&pipe;^veth[0-9a-z]+$&pipe;docker[0-9]+&pipe;br-[a-z0-9]{12}) |Filter out loopbacks, nulls, docker veth links and docker0 bridge by default |0 |
+ROW |908 |10285 |{$NET.IF.IFNAME.NOT_MATCHES} |(^Software Loopback Interface&pipe;^NULL[0-9.]*$&pipe;^[Ll]o[0-9.]*$&pipe;^[Ss]ystem$&pipe;^Nu[0-9.]*$&pipe;^veth[0-9A-z]+$&pipe;docker[0-9]+&pipe;br-[a-z0-9]{12}) |Filter out loopbacks, nulls, docker veth links and docker0 bridge by default |0 |
ROW |909 |10285 |{$NET.IF.IFOPERSTATUS.MATCHES} |^.*$ | |0 |
ROW |910 |10285 |{$NET.IF.IFOPERSTATUS.NOT_MATCHES} |^7$ |Ignore notPresent(7) |0 |
ROW |911 |10285 |{$NODE_EXPORTER_PORT} |9100 |TCP Port node_exporter is listening on. |0 |
@@ -23512,7 +23513,7 @@ ROW |1475 |10341 |{$SWAP.PFREE.MIN.WARN}
ROW |1476 |10342 |{$IF.ERRORS.WARN} |2 | |0 |
ROW |1477 |10342 |{$IFCONTROL} |1 | |0 |
ROW |1478 |10342 |{$NET.IF.IFNAME.MATCHES} |^.*$ | |0 |
-ROW |1479 |10342 |{$NET.IF.IFNAME.NOT_MATCHES} |(^Software Loopback Interface&pipe;^NULL[0-9.]*$&pipe;^[Ll]o[0-9.]*$&pipe;^[Ss]ystem$&pipe;^Nu[0-9.]*$&pipe;^veth[0-9a-z]+$&pipe;docker[0-9]+&pipe;br-[a-z0-9]{12}) |Filter out loopbacks, nulls, docker veth links and docker0 bridge by default |0 |
+ROW |1479 |10342 |{$NET.IF.IFNAME.NOT_MATCHES} |(^Software Loopback Interface&pipe;^NULL[0-9.]*$&pipe;^[Ll]o[0-9.]*$&pipe;^[Ss]ystem$&pipe;^Nu[0-9.]*$&pipe;^veth[0-9A-z]+$&pipe;docker[0-9]+&pipe;br-[a-z0-9]{12}) |Filter out loopbacks, nulls, docker veth links and docker0 bridge by default |0 |
ROW |1480 |10344 |{$CPU.INTERRUPT.CRIT.MAX} |50 |The critical threshold of the % Interrupt Time counter. |0 |
ROW |1481 |10344 |{$CPU.PRIV.CRIT.MAX} |30 |The threshold of the % Privileged Time counter. |0 |
ROW |1482 |10344 |{$CPU.QUEUE.CRIT.MAX} |3 |The threshold of the Processor Queue Length counter. |0 |
@@ -29150,10 +29151,10 @@ ROW |3922 |259 |1 |available
ROW |3923 |259 |2 |unknown |0 |2 |
ROW |3924 |260 |1 |up |0 |0 |
ROW |3925 |260 |2 |down |0 |1 |
-ROW |3926 |260 |4 |unknown |0 |2 |
-ROW |3927 |260 |5 |dormant |0 |3 |
-ROW |3928 |260 |6 |notPresent |0 |4 |
-ROW |3929 |260 |7 |lowerLayerDown |0 |5 |
+ROW |3926 |260 |4 |unknown |0 |3 |
+ROW |3927 |260 |5 |dormant |0 |4 |
+ROW |3928 |260 |6 |notPresent |0 |5 |
+ROW |3929 |260 |7 |lowerLayerDown |0 |6 |
ROW |3930 |261 |1 |other |0 |0 |
ROW |3931 |261 |2 |regular1822 |0 |1 |
ROW |3932 |261 |3 |hdh1822 |0 |2 |
@@ -32057,6 +32058,7 @@ ROW |6829 |65 |0 |unknown
ROW |6830 |65 |3 |lowerlayerdown |0 |3 |
ROW |6831 |64 |0 |unknown |0 |0 |
ROW |6832 |64 |3 |lowerlayerdown |0 |3 |
+ROW |6833 |260 |3 |testing |0 |2 |
TABLE |sysmaps
FIELDS|sysmapid|name |width|height|backgroundid|label_type|label_location|highlight|expandproblem|markelements|show_unack|grid_size|grid_show|grid_align|label_format|label_type_host|label_type_hostgroup|label_type_trigger|label_type_map|label_type_image|label_string_host|label_string_hostgroup|label_string_trigger|label_string_map|label_string_image|iconmapid|expand_macros|severity_min|userid|private|show_suppressed|
@@ -35559,6 +35561,7 @@ ROW |4891 |36871 |36831 |
ROW |4892 |36872 |36831 |
ROW |4893 |36873 |36831 |
ROW |4894 |36874 |36831 |
+ROW |4895 |36881 |30571 |
TABLE |host_discovery
FIELDS|hostid|parent_hostid|parent_itemid|
@@ -35611,11 +35614,11 @@ ROW |261 |27321 |9 |{#IFADMINSTATUS} |{$NET.IF.IFA
ROW |262 |27331 |8 |{#IFOPERSTATUS} |1 |
ROW |263 |27331 |8 |{#SNMPVALUE} |(2&pipe;3) |
ROW |266 |27393 |8 |{#ENT_SN} |.+ |
-ROW |267 |27393 |8 |{#ENT_CLASS} |[^3] |
+ROW |267 |27393 |8 |{#ENT_CLASS} |^3$ |
ROW |268 |27399 |8 |{#ENT_SN} |.+ |
-ROW |269 |27399 |8 |{#ENT_CLASS} |[^3] |
+ROW |269 |27399 |8 |{#ENT_CLASS} |^3$ |
ROW |272 |27410 |8 |{#ENT_SN} |.+ |
-ROW |273 |27410 |8 |{#ENT_CLASS} |[^3] |
+ROW |273 |27410 |8 |{#ENT_CLASS} |^3$ |
ROW |274 |27450 |8 |{#IFADMINSTATUS} |{$NET.IF.IFADMINSTATUS.MATCHES} |
ROW |275 |27450 |9 |{#IFADMINSTATUS} |{$NET.IF.IFADMINSTATUS.NOT_MATCHES} |
ROW |276 |27460 |8 |{#IFOPERSTATUS} |1 |
@@ -35697,7 +35700,7 @@ ROW |399 |28197 |8 |{#SNMPVALUE} |10
ROW |400 |28198 |8 |{#ENT_CLASS} |3 |
ROW |401 |28199 |8 |{#ENT_CLASS} |6 |
ROW |402 |28207 |8 |{#ENT_SN} |.+ |
-ROW |403 |28207 |8 |{#ENT_CLASS} |[^3] |
+ROW |403 |28207 |8 |{#ENT_CLASS} |^3$ |
ROW |404 |28223 |8 |{#IFADMINSTATUS} |{$NET.IF.IFADMINSTATUS.MATCHES} |
ROW |405 |28223 |9 |{#IFADMINSTATUS} |{$NET.IF.IFADMINSTATUS.NOT_MATCHES} |
ROW |407 |27098 |8 |{#IFOPERSTATUS} |{$NET.IF.IFOPERSTATUS.MATCHES} |
@@ -39119,191 +39122,191 @@ ROW |79954 |30402 |1 |12 |$.Replication.slave_priority
ROW |79955 |30403 |1 |12 |$.Replication.slave_read_only |0 | |
ROW |79956 |30403 |2 |20 |1d |0 | |
ROW |79957 |30404 |1 |12 |$.Replication.slave_repl_offset |0 | |
-ROW |79958 |27152 |1 |20 |1h |0 | |
+ROW |79958 |27152 |1 |20 |12h |0 | |
ROW |79959 |29844 |1 |1 |0.01 |0 | |
-ROW |79960 |29845 |1 |20 |1h |0 | |
-ROW |79961 |29846 |1 |20 |1d |0 | |
-ROW |79962 |29847 |1 |20 |1h |0 | |
-ROW |79963 |29848 |1 |20 |1d |0 | |
-ROW |79964 |27199 |1 |20 |1h |0 | |
-ROW |79965 |27232 |1 |20 |1h |0 | |
-ROW |79966 |27268 |1 |20 |1h |0 | |
-ROW |79967 |27289 |1 |20 |1h |0 | |
-ROW |79968 |27340 |1 |20 |1h |0 | |
-ROW |79969 |27372 |1 |20 |1h |0 | |
-ROW |79970 |27469 |1 |20 |1h |0 | |
-ROW |79971 |27503 |1 |20 |1h |0 | |
-ROW |79972 |27539 |1 |20 |1h |0 | |
-ROW |79973 |27575 |1 |20 |1h |0 | |
-ROW |79974 |27638 |1 |20 |1h |0 | |
-ROW |79975 |27661 |1 |20 |1h |0 | |
-ROW |79976 |27741 |1 |20 |1h |0 | |
-ROW |79977 |27773 |1 |20 |1h |0 | |
-ROW |79978 |27807 |1 |20 |1h |0 | |
-ROW |79979 |27889 |1 |20 |1h |0 | |
-ROW |79980 |27926 |1 |20 |1h |0 | |
-ROW |79981 |27963 |1 |20 |1h |0 | |
-ROW |79982 |27993 |1 |20 |1h |0 | |
-ROW |79983 |28022 |1 |20 |1h |0 | |
-ROW |79984 |28137 |1 |20 |1h |0 | |
-ROW |79986 |28240 |1 |20 |1h |0 | |
-ROW |79987 |28289 |1 |20 |1h |0 | |
-ROW |79988 |28337 |1 |20 |1h |0 | |
-ROW |79989 |28384 |1 |20 |1h |0 | |
-ROW |79990 |28461 |1 |20 |1h |0 | |
-ROW |79991 |28489 |1 |20 |1h |0 | |
-ROW |79992 |28964 |1 |20 |1h |0 | |
-ROW |79993 |29057 |1 |20 |1h |0 | |
+ROW |79960 |29845 |1 |20 |12h |0 | |
+ROW |79961 |29846 |1 |20 |12h |0 | |
+ROW |79962 |29847 |1 |20 |12h |0 | |
+ROW |79963 |29848 |1 |20 |12h |0 | |
+ROW |79964 |27199 |1 |20 |12h |0 | |
+ROW |79965 |27232 |1 |20 |12h |0 | |
+ROW |79966 |27268 |1 |20 |12h |0 | |
+ROW |79967 |27289 |1 |20 |12h |0 | |
+ROW |79968 |27340 |1 |20 |12h |0 | |
+ROW |79969 |27372 |1 |20 |12h |0 | |
+ROW |79970 |27469 |1 |20 |12h |0 | |
+ROW |79971 |27503 |1 |20 |12h |0 | |
+ROW |79972 |27539 |1 |20 |12h |0 | |
+ROW |79973 |27575 |1 |20 |12h |0 | |
+ROW |79974 |27638 |1 |20 |12h |0 | |
+ROW |79975 |27661 |1 |20 |12h |0 | |
+ROW |79976 |27741 |1 |20 |12h |0 | |
+ROW |79977 |27773 |1 |20 |12h |0 | |
+ROW |79978 |27807 |1 |20 |12h |0 | |
+ROW |79979 |27889 |1 |20 |12h |0 | |
+ROW |79980 |27926 |1 |20 |12h |0 | |
+ROW |79981 |27963 |1 |20 |12h |0 | |
+ROW |79982 |27993 |1 |20 |12h |0 | |
+ROW |79983 |28022 |1 |20 |12h |0 | |
+ROW |79984 |28137 |1 |20 |12h |0 | |
+ROW |79986 |28240 |1 |20 |12h |0 | |
+ROW |79987 |28289 |1 |20 |12h |0 | |
+ROW |79988 |28337 |1 |20 |12h |0 | |
+ROW |79989 |28384 |1 |20 |12h |0 | |
+ROW |79990 |28461 |1 |20 |12h |0 | |
+ROW |79991 |28489 |1 |20 |12h |0 | |
+ROW |79992 |28964 |1 |20 |12h |0 | |
+ROW |79993 |29057 |1 |20 |12h |0 | |
ROW |79994 |29834 |1 |1 |0.01 |0 | |
-ROW |79995 |29835 |1 |20 |1h |0 | |
-ROW |79996 |29836 |1 |20 |1d |0 | |
-ROW |79997 |29837 |1 |20 |1h |0 | |
-ROW |79998 |29838 |1 |20 |1d |0 | |
+ROW |79995 |29835 |1 |20 |12h |0 | |
+ROW |79996 |29836 |1 |20 |12h |0 | |
+ROW |79997 |29837 |1 |20 |12h |0 | |
+ROW |79998 |29838 |1 |20 |12h |0 | |
ROW |79999 |29849 |1 |1 |0.01 |0 | |
-ROW |80000 |29850 |1 |20 |1h |0 | |
-ROW |80001 |29851 |1 |20 |1d |0 | |
-ROW |80002 |29852 |1 |20 |1h |0 | |
-ROW |80003 |29853 |1 |20 |1d |0 | |
+ROW |80000 |29850 |1 |20 |12h |0 | |
+ROW |80001 |29851 |1 |20 |12h |0 | |
+ROW |80002 |29852 |1 |20 |12h |0 | |
+ROW |80003 |29853 |1 |20 |12h |0 | |
ROW |80004 |29854 |1 |1 |0.01 |0 | |
-ROW |80005 |29855 |1 |20 |1h |0 | |
-ROW |80006 |29856 |1 |20 |1d |0 | |
-ROW |80007 |29857 |1 |20 |1h |0 | |
-ROW |80008 |29858 |1 |20 |1d |0 | |
+ROW |80005 |29855 |1 |20 |12h |0 | |
+ROW |80006 |29856 |1 |20 |12h |0 | |
+ROW |80007 |29857 |1 |20 |12h |0 | |
+ROW |80008 |29858 |1 |20 |12h |0 | |
ROW |80009 |29859 |1 |1 |0.01 |0 | |
-ROW |80010 |29860 |1 |20 |1h |0 | |
-ROW |80011 |29861 |1 |20 |1d |0 | |
-ROW |80012 |29862 |1 |20 |1h |0 | |
-ROW |80013 |29863 |1 |20 |1d |0 | |
+ROW |80010 |29860 |1 |20 |12h |0 | |
+ROW |80011 |29861 |1 |20 |12h |0 | |
+ROW |80012 |29862 |1 |20 |12h |0 | |
+ROW |80013 |29863 |1 |20 |12h |0 | |
ROW |80014 |29864 |1 |1 |0.01 |0 | |
-ROW |80015 |29865 |1 |20 |1h |0 | |
-ROW |80016 |29866 |1 |20 |1d |0 | |
-ROW |80017 |29867 |1 |20 |1h |0 | |
-ROW |80018 |29868 |1 |20 |1d |0 | |
+ROW |80015 |29865 |1 |20 |12h |0 | |
+ROW |80016 |29866 |1 |20 |12h |0 | |
+ROW |80017 |29867 |1 |20 |12h |0 | |
+ROW |80018 |29868 |1 |20 |12h |0 | |
ROW |80019 |29869 |1 |1 |0.01 |0 | |
-ROW |80020 |29870 |1 |20 |1h |0 | |
-ROW |80021 |29871 |1 |20 |1d |0 | |
-ROW |80022 |29872 |1 |20 |1h |0 | |
-ROW |80023 |29873 |1 |20 |1d |0 | |
+ROW |80020 |29870 |1 |20 |12h |0 | |
+ROW |80021 |29871 |1 |20 |12h |0 | |
+ROW |80022 |29872 |1 |20 |12h |0 | |
+ROW |80023 |29873 |1 |20 |12h |0 | |
ROW |80024 |29874 |1 |1 |0.01 |0 | |
-ROW |80025 |29875 |1 |20 |1h |0 | |
-ROW |80026 |29876 |1 |20 |1d |0 | |
-ROW |80027 |29877 |1 |20 |1h |0 | |
-ROW |80028 |29878 |1 |20 |1d |0 | |
+ROW |80025 |29875 |1 |20 |12h |0 | |
+ROW |80026 |29876 |1 |20 |12h |0 | |
+ROW |80027 |29877 |1 |20 |12h |0 | |
+ROW |80028 |29878 |1 |20 |12h |0 | |
ROW |80029 |29879 |1 |1 |0.01 |0 | |
-ROW |80030 |29880 |1 |20 |1h |0 | |
-ROW |80031 |29881 |1 |20 |1d |0 | |
-ROW |80032 |29882 |1 |20 |1h |0 | |
-ROW |80033 |29883 |1 |20 |1d |0 | |
+ROW |80030 |29880 |1 |20 |12h |0 | |
+ROW |80031 |29881 |1 |20 |12h |0 | |
+ROW |80032 |29882 |1 |20 |12h |0 | |
+ROW |80033 |29883 |1 |20 |12h |0 | |
ROW |80034 |29884 |1 |1 |0.01 |0 | |
-ROW |80035 |29885 |1 |20 |1h |0 | |
-ROW |80036 |29886 |1 |20 |1d |0 | |
-ROW |80037 |29887 |1 |20 |1h |0 | |
-ROW |80038 |29888 |1 |20 |1d |0 | |
+ROW |80035 |29885 |1 |20 |12h |0 | |
+ROW |80036 |29886 |1 |20 |12h |0 | |
+ROW |80037 |29887 |1 |20 |12h |0 | |
+ROW |80038 |29888 |1 |20 |12h |0 | |
ROW |80039 |29889 |1 |1 |0.01 |0 | |
-ROW |80040 |29890 |1 |20 |1h |0 | |
-ROW |80041 |29891 |1 |20 |1d |0 | |
-ROW |80042 |29892 |1 |20 |1h |0 | |
-ROW |80043 |29893 |1 |20 |1d |0 | |
+ROW |80040 |29890 |1 |20 |12h |0 | |
+ROW |80041 |29891 |1 |20 |12h |0 | |
+ROW |80042 |29892 |1 |20 |12h |0 | |
+ROW |80043 |29893 |1 |20 |12h |0 | |
ROW |80044 |29894 |1 |1 |0.01 |0 | |
-ROW |80045 |29895 |1 |20 |1h |0 | |
-ROW |80046 |29896 |1 |20 |1d |0 | |
-ROW |80047 |29897 |1 |20 |1h |0 | |
-ROW |80048 |29898 |1 |20 |1d |0 | |
+ROW |80045 |29895 |1 |20 |12h |0 | |
+ROW |80046 |29896 |1 |20 |12h |0 | |
+ROW |80047 |29897 |1 |20 |12h |0 | |
+ROW |80048 |29898 |1 |20 |12h |0 | |
ROW |80049 |29899 |1 |1 |0.01 |0 | |
-ROW |80050 |29900 |1 |20 |1h |0 | |
-ROW |80051 |29901 |1 |20 |1d |0 | |
-ROW |80052 |29902 |1 |20 |1h |0 | |
-ROW |80053 |29903 |1 |20 |1d |0 | |
+ROW |80050 |29900 |1 |20 |12h |0 | |
+ROW |80051 |29901 |1 |20 |12h |0 | |
+ROW |80052 |29902 |1 |20 |12h |0 | |
+ROW |80053 |29903 |1 |20 |12h |0 | |
ROW |80054 |29904 |1 |1 |0.01 |0 | |
-ROW |80055 |29905 |1 |20 |1h |0 | |
-ROW |80056 |29906 |1 |20 |1d |0 | |
-ROW |80057 |29907 |1 |20 |1h |0 | |
-ROW |80058 |29908 |1 |20 |1d |0 | |
+ROW |80055 |29905 |1 |20 |12h |0 | |
+ROW |80056 |29906 |1 |20 |12h |0 | |
+ROW |80057 |29907 |1 |20 |12h |0 | |
+ROW |80058 |29908 |1 |20 |12h |0 | |
ROW |80059 |29909 |1 |1 |0.01 |0 | |
-ROW |80060 |29910 |1 |20 |1h |0 | |
-ROW |80061 |29911 |1 |20 |1d |0 | |
-ROW |80062 |29912 |1 |20 |1h |0 | |
-ROW |80063 |29913 |1 |20 |1d |0 | |
+ROW |80060 |29910 |1 |20 |12h |0 | |
+ROW |80061 |29911 |1 |20 |12h |0 | |
+ROW |80062 |29912 |1 |20 |12h |0 | |
+ROW |80063 |29913 |1 |20 |12h |0 | |
ROW |80064 |29914 |1 |1 |0.01 |0 | |
-ROW |80065 |29915 |1 |20 |1h |0 | |
-ROW |80066 |29916 |1 |20 |1d |0 | |
-ROW |80067 |29917 |1 |20 |1h |0 | |
-ROW |80068 |29918 |1 |20 |1d |0 | |
+ROW |80065 |29915 |1 |20 |12h |0 | |
+ROW |80066 |29916 |1 |20 |12h |0 | |
+ROW |80067 |29917 |1 |20 |12h |0 | |
+ROW |80068 |29918 |1 |20 |12h |0 | |
ROW |80069 |29919 |1 |1 |0.01 |0 | |
-ROW |80070 |29920 |1 |20 |1h |0 | |
-ROW |80071 |29921 |1 |20 |1d |0 | |
-ROW |80072 |29922 |1 |20 |1h |0 | |
-ROW |80073 |29923 |1 |20 |1d |0 | |
+ROW |80070 |29920 |1 |20 |12h |0 | |
+ROW |80071 |29921 |1 |20 |12h |0 | |
+ROW |80072 |29922 |1 |20 |12h |0 | |
+ROW |80073 |29923 |1 |20 |12h |0 | |
ROW |80074 |29924 |1 |1 |0.01 |0 | |
-ROW |80075 |29925 |1 |20 |1h |0 | |
-ROW |80076 |29926 |1 |20 |1d |0 | |
-ROW |80077 |29927 |1 |20 |1h |0 | |
-ROW |80078 |29928 |1 |20 |1d |0 | |
+ROW |80075 |29925 |1 |20 |12h |0 | |
+ROW |80076 |29926 |1 |20 |12h |0 | |
+ROW |80077 |29927 |1 |20 |12h |0 | |
+ROW |80078 |29928 |1 |20 |12h |0 | |
ROW |80079 |29929 |1 |1 |0.01 |0 | |
-ROW |80080 |29930 |1 |20 |1h |0 | |
-ROW |80081 |29931 |1 |20 |1d |0 | |
-ROW |80082 |29932 |1 |20 |1h |0 | |
-ROW |80083 |29933 |1 |20 |1d |0 | |
+ROW |80080 |29930 |1 |20 |12h |0 | |
+ROW |80081 |29931 |1 |20 |12h |0 | |
+ROW |80082 |29932 |1 |20 |12h |0 | |
+ROW |80083 |29933 |1 |20 |12h |0 | |
ROW |80084 |29934 |1 |1 |0.01 |0 | |
-ROW |80085 |29935 |1 |20 |1h |0 | |
-ROW |80086 |29936 |1 |20 |1d |0 | |
-ROW |80087 |29937 |1 |20 |1h |0 | |
-ROW |80088 |29938 |1 |20 |1d |0 | |
+ROW |80085 |29935 |1 |20 |12h |0 | |
+ROW |80086 |29936 |1 |20 |12h |0 | |
+ROW |80087 |29937 |1 |20 |12h |0 | |
+ROW |80088 |29938 |1 |20 |12h |0 | |
ROW |80089 |29939 |1 |1 |0.01 |0 | |
-ROW |80090 |29940 |1 |20 |1h |0 | |
-ROW |80091 |29941 |1 |20 |1d |0 | |
-ROW |80092 |29942 |1 |20 |1h |0 | |
-ROW |80093 |29943 |1 |20 |1d |0 | |
+ROW |80090 |29940 |1 |20 |12h |0 | |
+ROW |80091 |29941 |1 |20 |12h |0 | |
+ROW |80092 |29942 |1 |20 |12h |0 | |
+ROW |80093 |29943 |1 |20 |12h |0 | |
ROW |80094 |29944 |1 |1 |0.01 |0 | |
-ROW |80095 |29945 |1 |20 |1h |0 | |
-ROW |80096 |29946 |1 |20 |1d |0 | |
-ROW |80097 |29947 |1 |20 |1h |0 | |
-ROW |80098 |29948 |1 |20 |1d |0 | |
+ROW |80095 |29945 |1 |20 |12h |0 | |
+ROW |80096 |29946 |1 |20 |12h |0 | |
+ROW |80097 |29947 |1 |20 |12h |0 | |
+ROW |80098 |29948 |1 |20 |12h |0 | |
ROW |80104 |29954 |1 |1 |0.01 |0 | |
-ROW |80105 |29955 |1 |20 |1h |0 | |
-ROW |80106 |29956 |1 |20 |1d |0 | |
-ROW |80107 |29957 |1 |20 |1h |0 | |
-ROW |80108 |29958 |1 |20 |1d |0 | |
+ROW |80105 |29955 |1 |20 |12h |0 | |
+ROW |80106 |29956 |1 |20 |12h |0 | |
+ROW |80107 |29957 |1 |20 |12h |0 | |
+ROW |80108 |29958 |1 |20 |12h |0 | |
ROW |80109 |29959 |1 |1 |0.01 |0 | |
-ROW |80110 |29960 |1 |20 |1h |0 | |
-ROW |80111 |29961 |1 |20 |1d |0 | |
-ROW |80112 |29962 |1 |20 |1h |0 | |
-ROW |80113 |29963 |1 |20 |1d |0 | |
+ROW |80110 |29960 |1 |20 |12h |0 | |
+ROW |80111 |29961 |1 |20 |12h |0 | |
+ROW |80112 |29962 |1 |20 |12h |0 | |
+ROW |80113 |29963 |1 |20 |12h |0 | |
ROW |80114 |29964 |1 |1 |0.01 |0 | |
-ROW |80115 |29965 |1 |20 |1h |0 | |
-ROW |80116 |29966 |1 |20 |1d |0 | |
-ROW |80117 |29967 |1 |20 |1h |0 | |
-ROW |80118 |29968 |1 |20 |1d |0 | |
+ROW |80115 |29965 |1 |20 |12h |0 | |
+ROW |80116 |29966 |1 |20 |12h |0 | |
+ROW |80117 |29967 |1 |20 |12h |0 | |
+ROW |80118 |29968 |1 |20 |12h |0 | |
ROW |80119 |29969 |1 |1 |0.01 |0 | |
-ROW |80120 |29970 |1 |20 |1h |0 | |
-ROW |80121 |29971 |1 |20 |1d |0 | |
-ROW |80122 |29972 |1 |20 |1h |0 | |
-ROW |80123 |29973 |1 |20 |1d |0 | |
+ROW |80120 |29970 |1 |20 |12h |0 | |
+ROW |80121 |29971 |1 |20 |12h |0 | |
+ROW |80122 |29972 |1 |20 |12h |0 | |
+ROW |80123 |29973 |1 |20 |12h |0 | |
ROW |80124 |29974 |1 |1 |0.01 |0 | |
-ROW |80125 |29975 |1 |20 |1h |0 | |
-ROW |80126 |29976 |1 |20 |1d |0 | |
-ROW |80127 |29977 |1 |20 |1h |0 | |
-ROW |80128 |29978 |1 |20 |1d |0 | |
+ROW |80125 |29975 |1 |20 |12h |0 | |
+ROW |80126 |29976 |1 |20 |12h |0 | |
+ROW |80127 |29977 |1 |20 |12h |0 | |
+ROW |80128 |29978 |1 |20 |12h |0 | |
ROW |80129 |29979 |1 |1 |0.01 |0 | |
-ROW |80130 |29980 |1 |20 |1h |0 | |
-ROW |80131 |29981 |1 |20 |1d |0 | |
-ROW |80132 |29982 |1 |20 |1h |0 | |
-ROW |80133 |29983 |1 |20 |1d |0 | |
+ROW |80130 |29980 |1 |20 |12h |0 | |
+ROW |80131 |29981 |1 |20 |12h |0 | |
+ROW |80132 |29982 |1 |20 |12h |0 | |
+ROW |80133 |29983 |1 |20 |12h |0 | |
ROW |80134 |29984 |1 |1 |0.01 |0 | |
-ROW |80135 |29985 |1 |20 |1h |0 | |
-ROW |80136 |29986 |1 |20 |1d |0 | |
-ROW |80137 |29987 |1 |20 |1h |0 | |
-ROW |80138 |29988 |1 |20 |1d |0 | |
+ROW |80135 |29985 |1 |20 |12h |0 | |
+ROW |80136 |29986 |1 |20 |12h |0 | |
+ROW |80137 |29987 |1 |20 |12h |0 | |
+ROW |80138 |29988 |1 |20 |12h |0 | |
ROW |80139 |29989 |1 |1 |0.01 |0 | |
-ROW |80140 |29990 |1 |20 |1h |0 | |
-ROW |80141 |29991 |1 |20 |1d |0 | |
-ROW |80142 |29992 |1 |20 |1h |0 | |
-ROW |80143 |29993 |1 |20 |1d |0 | |
-ROW |80144 |30050 |1 |20 |1d |0 | |
-ROW |80145 |30051 |1 |20 |1d |0 | |
-ROW |80146 |30052 |1 |20 |1h |0 | |
-ROW |80147 |30053 |1 |20 |1h |0 | |
-ROW |80148 |30054 |1 |20 |1h |0 | |
+ROW |80140 |29990 |1 |20 |12h |0 | |
+ROW |80141 |29991 |1 |20 |12h |0 | |
+ROW |80142 |29992 |1 |20 |12h |0 | |
+ROW |80143 |29993 |1 |20 |12h |0 | |
+ROW |80144 |30050 |1 |20 |12h |0 | |
+ROW |80145 |30051 |1 |20 |12h |0 | |
+ROW |80146 |30052 |1 |20 |12h |0 | |
+ROW |80147 |30053 |1 |20 |12h |0 | |
+ROW |80148 |30054 |1 |20 |12h |0 | |
ROW |80149 |30055 |1 |1 |0.01 |0 | |
ROW |80150 |30142 |1 |12 |$..['{#CPU.UTIL}'].avg() |0 | |
ROW |80151 |30143 |1 |12 |$..['{#CPU.UTIL}'].avg() |0 | |
@@ -39758,8 +39761,8 @@ ROW |80619 |29087 |1 |20 |1d
ROW |80620 |29089 |1 |10 | |0 | |
ROW |80621 |29102 |1 |10 | |0 | |
ROW |80622 |29111 |1 |20 |1h |0 | |
-ROW |80623 |29113 |1 |20 |1h |0 | |
-ROW |80624 |29114 |1 |20 |1d |0 | |
+ROW |80623 |29113 |1 |20 |12h |0 | |
+ROW |80624 |29114 |1 |20 |12h |0 | |
ROW |80625 |29116 |1 |20 |1d |0 | |
ROW |80626 |29117 |1 |20 |1d |0 | |
ROW |80627 |29120 |1 |20 |1h |0 | |
@@ -39770,8 +39773,8 @@ ROW |80631 |29124 |1 |20 |1d
ROW |80632 |29126 |1 |10 | |0 | |
ROW |80633 |29139 |1 |10 | |0 | |
ROW |80634 |29148 |1 |20 |1h |0 | |
-ROW |80635 |29150 |1 |20 |1h |0 | |
-ROW |80636 |29151 |1 |20 |1d |0 | |
+ROW |80635 |29150 |1 |20 |12h |0 | |
+ROW |80636 |29151 |1 |20 |12h |0 | |
ROW |80637 |29153 |1 |20 |1d |0 | |
ROW |80638 |29154 |1 |20 |1d |0 | |
ROW |80639 |29157 |1 |20 |1h |0 | |
@@ -39782,8 +39785,8 @@ ROW |80643 |29161 |1 |20 |1d
ROW |80644 |29163 |1 |10 | |0 | |
ROW |80645 |29176 |1 |10 | |0 | |
ROW |80646 |29185 |1 |20 |1h |0 | |
-ROW |80647 |29187 |1 |20 |1h |0 | |
-ROW |80648 |29188 |1 |20 |1d |0 | |
+ROW |80647 |29187 |1 |20 |12h |0 | |
+ROW |80648 |29188 |1 |20 |12h |0 | |
ROW |80649 |29190 |1 |20 |1d |0 | |
ROW |80650 |29191 |1 |20 |1d |0 | |
ROW |80651 |29194 |1 |20 |1h |0 | |
@@ -39886,11 +39889,11 @@ ROW |80747 |31832 |1 |20 |1d
ROW |80748 |31836 |1 |20 |1d |0 | |
ROW |80749 |31837 |1 |20 |1d |0 | |
ROW |80750 |31840 |1 |20 |1h |0 | |
-ROW |80751 |31841 |1 |20 |1h |0 | |
+ROW |80751 |31841 |1 |20 |12h |0 | |
ROW |80752 |31843 |1 |20 |1d |0 | |
ROW |80753 |31844 |1 |20 |1d |0 | |
ROW |80754 |31845 |1 |20 |1d |0 | |
-ROW |80755 |31846 |1 |20 |1d |0 | |
+ROW |80755 |31846 |1 |20 |12h |0 | |
ROW |80756 |31849 |1 |20 |1h |0 | |
ROW |80757 |31856 |1 |10 | |0 | |
ROW |80758 |31867 |1 |10 | |0 | |
@@ -39898,11 +39901,11 @@ ROW |80759 |31868 |1 |20 |1d
ROW |80760 |31872 |1 |20 |1d |0 | |
ROW |80761 |31873 |1 |20 |1d |0 | |
ROW |80762 |31876 |1 |20 |1h |0 | |
-ROW |80763 |31877 |1 |20 |1h |0 | |
+ROW |80763 |31877 |1 |20 |12h |0 | |
ROW |80764 |31879 |1 |20 |1d |0 | |
ROW |80765 |31880 |1 |20 |1d |0 | |
ROW |80766 |31881 |1 |20 |1d |0 | |
-ROW |80767 |31882 |1 |20 |1d |0 | |
+ROW |80767 |31882 |1 |20 |12h |0 | |
ROW |80768 |31885 |1 |20 |1h |0 | |
ROW |80769 |31892 |1 |21 |//Calculate utilization&bsn;return (100 - value) |0 | |
ROW |80770 |31893 |1 |21 |return (100-value); |0 | |
@@ -41078,11 +41081,11 @@ ROW |81939 |32042 |2 |20 |1d
ROW |81940 |32043 |3 |20 |1h |0 | |
ROW |81941 |32044 |2 |20 |1d |0 | |
ROW |81942 |32045 |2 |20 |1d |0 | |
-ROW |81943 |33341 |1 |20 |1d |0 | |
-ROW |81944 |33342 |1 |20 |1d |0 | |
-ROW |81945 |33343 |1 |20 |1h |0 | |
-ROW |81946 |33344 |1 |20 |1h |0 | |
-ROW |81947 |33345 |1 |20 |1h |0 | |
+ROW |81943 |33341 |1 |20 |12h |0 | |
+ROW |81944 |33342 |1 |20 |12h |0 | |
+ROW |81945 |33343 |1 |20 |12h |0 | |
+ROW |81946 |33344 |1 |20 |12h |0 | |
+ROW |81947 |33345 |1 |20 |12h |0 | |
ROW |81948 |33346 |1 |1 |0.01 |0 | |
ROW |81949 |33348 |1 |20 |10m |0 | |
ROW |81950 |33349 |1 |20 |6h |0 | |
@@ -41544,11 +41547,11 @@ ROW |82406 |33678 |1 |12 |$[?(@.disk_name=='{#NAME}')].temperature.
ROW |82407 |33678 |2 |20 |6h |0 | |
ROW |82408 |33679 |1 |12 |$[?(@.disk_name=='{#NAME}')].ata_smart_data.self_test.status.passed.first() |0 | |
ROW |82409 |33679 |2 |20 |6h |0 | |
-ROW |82410 |33684 |1 |20 |1d |0 | |
-ROW |82411 |33685 |1 |20 |1d |0 | |
-ROW |82412 |33686 |1 |20 |1h |0 | |
-ROW |82413 |33687 |1 |20 |1h |0 | |
-ROW |82414 |33688 |1 |20 |1h |0 | |
+ROW |82410 |33684 |1 |20 |12h |0 | |
+ROW |82411 |33685 |1 |20 |12h |0 | |
+ROW |82412 |33686 |1 |20 |12h |0 | |
+ROW |82413 |33687 |1 |20 |12h |0 | |
+ROW |82414 |33688 |1 |20 |12h |0 | |
ROW |82415 |33689 |1 |1 |0.01 |0 | |
ROW |82416 |33691 |1 |20 |6h |0 | |
ROW |82417 |33692 |1 |1 |1048576 |0 | |
@@ -42001,12 +42004,12 @@ ROW |82864 |34142 |1 |1 |1000000
ROW |82865 |34142 |2 |20 |1h |0 | |
ROW |82866 |34143 |1 |20 |6h |0 | |
ROW |82867 |34144 |1 |20 |6h |0 | |
-ROW |82868 |34153 |1 |20 |1d |0 | |
+ROW |82868 |34153 |1 |20 |12h |0 | |
ROW |82869 |34154 |1 |12 |$..['{#CPU.UTIL}'].avg() |0 | |
-ROW |82870 |34155 |1 |20 |1d |0 | |
-ROW |82871 |34156 |1 |20 |1h |0 | |
-ROW |82872 |34157 |1 |20 |1h |0 | |
-ROW |82873 |34158 |1 |20 |1h |0 | |
+ROW |82870 |34155 |1 |20 |12h |0 | |
+ROW |82871 |34156 |1 |20 |12h |0 | |
+ROW |82872 |34157 |1 |20 |12h |0 | |
+ROW |82873 |34158 |1 |20 |12h |0 | |
ROW |82874 |34159 |1 |1 |0.01 |0 | |
ROW |82875 |34161 |1 |20 |6h |0 | |
ROW |82876 |34162 |1 |20 |6h |0 | |
@@ -42039,8 +42042,8 @@ ROW |82903 |34182 |1 |20 |6h
ROW |82904 |34183 |1 |20 |6h |0 | |
ROW |82906 |34185 |1 |20 |6h |0 | |
ROW |82907 |34186 |1 |20 |6h |0 | |
-ROW |82908 |34187 |1 |20 |1d |0 | |
-ROW |82909 |34188 |1 |20 |1d |0 | |
+ROW |82908 |34187 |1 |20 |12h |0 | |
+ROW |82909 |34188 |1 |20 |12h |0 | |
ROW |82910 |34190 |1 |1 |0.1 |0 | |
ROW |82911 |34190 |2 |20 |6h |0 | |
ROW |82912 |34191 |1 |20 |6h |0 | |
@@ -42445,8 +42448,8 @@ ROW |83310 |34455 |1 |20 |6h
ROW |83311 |34456 |1 |20 |6h |0 | |
ROW |83312 |34457 |1 |20 |6h |0 | |
ROW |83313 |34458 |1 |20 |6h |0 | |
-ROW |83314 |34459 |1 |20 |1d |0 | |
-ROW |83315 |34460 |1 |20 |1d |0 | |
+ROW |83314 |34459 |1 |20 |12h |0 | |
+ROW |83315 |34460 |1 |20 |12h |0 | |
ROW |83316 |34462 |1 |1 |0.1 |0 | |
ROW |83317 |34462 |2 |20 |6h |0 | |
ROW |83318 |34463 |1 |1 |0.1 |0 | |
@@ -42498,8 +42501,8 @@ ROW |83363 |34503 |1 |20 |6h
ROW |83364 |34504 |1 |20 |6h |0 | |
ROW |83365 |34505 |1 |20 |6h |0 | |
ROW |83366 |34506 |1 |20 |6h |0 | |
-ROW |83367 |34507 |1 |20 |1d |0 | |
-ROW |83368 |34508 |1 |20 |1d |0 | |
+ROW |83367 |34507 |1 |20 |12h |0 | |
+ROW |83368 |34508 |1 |20 |12h |0 | |
ROW |83369 |34510 |1 |1 |0.1 |0 | |
ROW |83370 |34510 |2 |20 |6h |0 | |
ROW |83371 |34511 |1 |1 |0.1 |0 | |
@@ -42551,8 +42554,8 @@ ROW |83416 |34551 |1 |20 |6h
ROW |83417 |34552 |1 |20 |6h |0 | |
ROW |83418 |34553 |1 |20 |6h |0 | |
ROW |83419 |34554 |1 |20 |6h |0 | |
-ROW |83420 |34555 |1 |20 |1d |0 | |
-ROW |83421 |34556 |1 |20 |1d |0 | |
+ROW |83420 |34555 |1 |20 |12h |0 | |
+ROW |83421 |34556 |1 |20 |12h |0 | |
ROW |83422 |34558 |1 |1 |0.1 |0 | |
ROW |83423 |34558 |2 |20 |6h |0 | |
ROW |83424 |34559 |1 |1 |0.1 |0 | |
@@ -42604,8 +42607,8 @@ ROW |83469 |34599 |1 |20 |6h
ROW |83470 |34600 |1 |20 |6h |0 | |
ROW |83471 |34601 |1 |20 |6h |0 | |
ROW |83472 |34602 |1 |20 |6h |0 | |
-ROW |83473 |34603 |1 |20 |1d |0 | |
-ROW |83474 |34604 |1 |20 |1d |0 | |
+ROW |83473 |34603 |1 |20 |12h |0 | |
+ROW |83474 |34604 |1 |20 |12h |0 | |
ROW |83475 |34606 |1 |1 |0.1 |0 | |
ROW |83476 |34606 |2 |20 |6h |0 | |
ROW |83477 |34607 |1 |1 |0.1 |0 | |
@@ -42657,8 +42660,8 @@ ROW |83522 |34647 |1 |20 |6h
ROW |83523 |34648 |1 |20 |6h |0 | |
ROW |83524 |34649 |1 |20 |6h |0 | |
ROW |83525 |34650 |1 |20 |6h |0 | |
-ROW |83526 |34651 |1 |20 |1d |0 | |
-ROW |83527 |34652 |1 |20 |1d |0 | |
+ROW |83526 |34651 |1 |20 |12h |0 | |
+ROW |83527 |34652 |1 |20 |12h |0 | |
ROW |83528 |34654 |1 |1 |0.1 |0 | |
ROW |83529 |34654 |2 |20 |6h |0 | |
ROW |83530 |34655 |1 |1 |0.1 |0 | |
@@ -42763,8 +42766,8 @@ ROW |83628 |34743 |1 |20 |6h
ROW |83629 |34744 |1 |20 |6h |0 | |
ROW |83630 |34745 |1 |20 |6h |0 | |
ROW |83631 |34746 |1 |20 |6h |0 | |
-ROW |83632 |34747 |1 |20 |1d |0 | |
-ROW |83633 |34748 |1 |20 |1d |0 | |
+ROW |83632 |34747 |1 |20 |12h |0 | |
+ROW |83633 |34748 |1 |20 |12h |0 | |
ROW |83634 |34750 |1 |1 |0.1 |0 | |
ROW |83635 |34750 |2 |20 |6h |0 | |
ROW |83636 |34751 |1 |1 |0.1 |0 | |
@@ -42824,8 +42827,8 @@ ROW |83689 |34797 |1 |20 |6h
ROW |83690 |34798 |1 |20 |6h |0 | |
ROW |83691 |34799 |1 |20 |6h |0 | |
ROW |83692 |34800 |1 |20 |6h |0 | |
-ROW |83693 |34801 |1 |20 |1d |0 | |
-ROW |83694 |34802 |1 |20 |1d |0 | |
+ROW |83693 |34801 |1 |20 |12h |0 | |
+ROW |83694 |34802 |1 |20 |12h |0 | |
ROW |83695 |34804 |1 |1 |0.1 |0 | |
ROW |83696 |34804 |2 |20 |6h |0 | |
ROW |83697 |34805 |1 |1 |0.1 |0 | |
@@ -42877,8 +42880,8 @@ ROW |83742 |34845 |1 |20 |6h
ROW |83743 |34846 |1 |20 |6h |0 | |
ROW |83744 |34847 |1 |20 |6h |0 | |
ROW |83745 |34848 |1 |20 |6h |0 | |
-ROW |83746 |34849 |1 |20 |1d |0 | |
-ROW |83747 |34850 |1 |20 |1d |0 | |
+ROW |83746 |34849 |1 |20 |12h |0 | |
+ROW |83747 |34850 |1 |20 |12h |0 | |
ROW |83748 |34852 |1 |1 |0.1 |0 | |
ROW |83749 |34852 |2 |20 |6h |0 | |
ROW |83750 |34853 |1 |1 |0.1 |0 | |
@@ -42930,8 +42933,8 @@ ROW |83795 |34893 |1 |20 |6h
ROW |83796 |34894 |1 |20 |6h |0 | |
ROW |83797 |34895 |1 |20 |6h |0 | |
ROW |83798 |34896 |1 |20 |6h |0 | |
-ROW |83799 |34897 |1 |20 |1d |0 | |
-ROW |83800 |34898 |1 |20 |1d |0 | |
+ROW |83799 |34897 |1 |20 |12h |0 | |
+ROW |83800 |34898 |1 |20 |12h |0 | |
ROW |83801 |34900 |1 |1 |0.1 |0 | |
ROW |83802 |34900 |2 |20 |6h |0 | |
ROW |83803 |34901 |1 |1 |0.1 |0 | |
@@ -43045,8 +43048,8 @@ ROW |83910 |35020 |1 |20 |6h
ROW |83911 |35021 |1 |20 |6h |0 | |
ROW |83912 |35022 |1 |20 |6h |0 | |
ROW |83913 |35023 |1 |20 |6h |0 | |
-ROW |83914 |35024 |1 |20 |1d |0 | |
-ROW |83915 |35025 |1 |20 |1d |0 | |
+ROW |83914 |35024 |1 |20 |12h |0 | |
+ROW |83915 |35025 |1 |20 |12h |0 | |
ROW |83916 |35027 |1 |1 |0.1 |0 | |
ROW |83917 |35027 |2 |20 |6h |0 | |
ROW |83918 |35028 |1 |1 |0.1 |0 | |
@@ -43936,11 +43939,11 @@ ROW |84801 |35800 |1 |20 |1h
ROW |84802 |35801 |1 |20 |1h |0 | |
ROW |84803 |35802 |1 |1 |0.001 |0 | |
ROW |84804 |35802 |2 |20 |1h |0 | |
-ROW |84805 |35803 |1 |20 |1d |0 | |
-ROW |84806 |35804 |1 |20 |1d |0 | |
-ROW |84807 |35805 |1 |20 |1h |0 | |
-ROW |84808 |35806 |1 |20 |1h |0 | |
-ROW |84809 |35807 |1 |20 |1h |0 | |
+ROW |84805 |35803 |1 |20 |12h |0 | |
+ROW |84806 |35804 |1 |20 |12h |0 | |
+ROW |84807 |35805 |1 |20 |12h |0 | |
+ROW |84808 |35806 |1 |20 |12h |0 | |
+ROW |84809 |35807 |1 |20 |12h |0 | |
ROW |84810 |35808 |1 |1 |0.01 |0 | |
ROW |84811 |35810 |1 |20 |1h |0 | |
ROW |84812 |35814 |1 |21 |var result = [];&bsn;&bsn;JSON.parse(value).forEach(function (netif) {&bsn; if (typeof netif["{#IFNAME}"] === 'undefined') {&bsn; netif["{#IFNAME}"] = netif["{#IFDESCR}"];&bsn; }&bsn; if (typeof netif["{#IFALIAS}"] === 'undefined') {&bsn; netif["{#IFALIAS}"] = "";&bsn; }&bsn; result.push(netif);&bsn;});&bsn;&bsn;return JSON.stringify(result); |0 | |
@@ -45185,6 +45188,11 @@ ROW |86057 |36875 |1 |20 |1d
ROW |86058 |36877 |1 |20 |1d |0 | |
ROW |86059 |36878 |1 |20 |1d |0 | |
ROW |86060 |36880 |1 |20 |1d |0 | |
+ROW |86061 |36881 |1 |12 |$.cpu_stats.cpu_usage.percent_usage |0 | |
+ROW |86062 |31439 |1 |21 |return (100 - value) |0 | |
+ROW |86063 |31443 |1 |21 |return (100 - value) |0 | |
+ROW |86064 |32021 |1 |21 |return (100 - value) |0 | |
+ROW |86065 |32035 |1 |21 |return (100 - value) |0 | |
TABLE |sysmap_shape
FIELDS|sysmap_shapeid|sysmapid|type|x |y |width|height|text |font|font_size|font_color|text_halign|text_valign|border_type|border_width|border_color|background_color|zindex|
@@ -45309,436 +45317,436 @@ TABLE |lld_override
FIELDS|lld_overrideid|itemid|name |step|evaltype|formula|stop|
ROW |195 |34718 |Temp |1 |0 | |0 |
ROW |196 |34719 |Temp |1 |0 | |0 |
-ROW |1111 |30961 |trigger |1 |0 | |0 |
-ROW |1112 |30193 |Discard HTTP status codes |1 |0 | |0 |
-ROW |1113 |30194 |Discard HTTP status codes |1 |0 | |0 |
-ROW |1114 |30195 |Discard HTTP status codes |1 |0 | |0 |
-ROW |1115 |30236 |Discard HTTP status codes |1 |0 | |0 |
-ROW |1116 |30237 |Discard HTTP status codes |1 |0 | |0 |
-ROW |1117 |30238 |Discard HTTP status codes |1 |0 | |0 |
-ROW |1118 |33521 |trigger disabled non main channels |1 |0 | |0 |
-ROW |1119 |33810 |Primary metrics |1 |0 | |0 |
-ROW |1120 |33810 |Arbiter metrics |2 |0 | |0 |
-ROW |1121 |34346 |Too many missed regions trigger |1 |0 | |0 |
-ROW |1122 |34346 |Unresponsive peers trigger |2 |0 | |0 |
-ROW |1123 |34403 |Failed GC-related operations trigger |1 |0 | |0 |
-ROW |1124 |34443 |Too many unreachable messages trigger |1 |0 | |0 |
-ROW |1125 |33657 |ID filter |1 |0 | |0 |
-ROW |1126 |33658 |Not NVMe |2 |0 | |0 |
-ROW |1127 |33658 |Self-test |1 |0 | |0 |
-ROW |1128 |33669 |ID filter |1 |0 | |0 |
-ROW |1129 |33670 |Not NVMe |2 |0 | |0 |
-ROW |1130 |33670 |Self-test |1 |0 | |0 |
-ROW |1131 |28306 |trigger THRESHOLD_HI_CRIT |4 |0 | |0 |
-ROW |1132 |28306 |trigger THRESHOLD_HI_WARN |3 |0 | |0 |
-ROW |1133 |28306 |trigger THRESHOLD_LO_CRIT |2 |0 | |0 |
-ROW |1134 |28306 |trigger THRESHOLD_LO_WARN |1 |0 | |0 |
-ROW |1135 |28307 |trigger THRESHOLD_HI_CRIT |4 |0 | |0 |
-ROW |1136 |28307 |trigger THRESHOLD_HI_WARN |3 |0 | |0 |
-ROW |1137 |28307 |trigger THRESHOLD_LO_CRIT |2 |0 | |0 |
-ROW |1138 |28307 |trigger THRESHOLD_LO_WARN |1 |0 | |0 |
-ROW |1139 |33182 |trigger THRESHOLD_HI_CRIT |4 |0 | |0 |
-ROW |1140 |33182 |trigger THRESHOLD_HI_WARN |3 |0 | |0 |
-ROW |1141 |33182 |trigger THRESHOLD_LO_CRIT |2 |0 | |0 |
-ROW |1142 |33182 |trigger THRESHOLD_LO_WARN |1 |0 | |0 |
-ROW |1143 |36726 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |1144 |35185 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |1145 |35186 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |1146 |35218 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |1147 |35262 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |1148 |35296 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |1149 |35297 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |1150 |35363 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |1151 |35364 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |1152 |35430 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |1153 |35431 |Trigger disabled |1 |0 | |0 |
-ROW |1154 |35431 |Trigger enabled |2 |0 | |0 |
-ROW |1155 |35463 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |1156 |35502 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |1157 |35546 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |1158 |35590 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |1159 |35634 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |1160 |35679 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |1161 |35724 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |1162 |35769 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |1163 |34478 |Temp |1 |0 | |0 |
-ROW |1164 |34479 |Temp |1 |0 | |0 |
-ROW |1165 |34526 |Temp |1 |0 | |0 |
-ROW |1166 |34527 |Temp |1 |0 | |0 |
-ROW |1167 |34574 |Temp |1 |0 | |0 |
-ROW |1168 |34575 |Temp |1 |0 | |0 |
-ROW |1169 |34622 |Temp |1 |0 | |0 |
-ROW |1170 |34623 |Temp |1 |0 | |0 |
-ROW |1171 |34670 |Temp |1 |0 | |0 |
-ROW |1172 |34671 |Temp |1 |0 | |0 |
-ROW |1173 |35043 |Temp |1 |0 | |0 |
-ROW |1174 |35044 |Temp |1 |0 | |0 |
-ROW |1175 |34766 |Temp |1 |0 | |0 |
-ROW |1176 |34767 |Temp |1 |0 | |0 |
-ROW |1177 |34209 |Temp |1 |0 | |0 |
-ROW |1178 |34210 |Temp |1 |0 | |0 |
-ROW |1179 |34820 |Temp |1 |0 | |0 |
-ROW |1180 |34821 |Temp |1 |0 | |0 |
-ROW |1181 |34868 |Temp |1 |0 | |0 |
-ROW |1182 |34869 |Temp |1 |0 | |0 |
-ROW |1183 |34916 |Temp |1 |0 | |0 |
-ROW |1184 |34917 |Temp |1 |0 | |0 |
-ROW |1185 |33354 |Do not discover aggregate metrics |1 |0 | |0 |
-ROW |1186 |30687 |trigger SENSOR_HI_CRIT |5 |0 | |0 |
-ROW |1187 |30687 |trigger SENSOR_HI_DISAST |6 |0 | |0 |
-ROW |1188 |30687 |trigger SENSOR_HI_WARN |4 |0 | |0 |
-ROW |1189 |30687 |trigger SENSOR_LO_CRIT |2 |0 | |0 |
-ROW |1190 |30687 |trigger SENSOR_LO_DISAST |3 |0 | |0 |
-ROW |1191 |30687 |trigger SENSOR_LO_WARN |1 |0 | |0 |
+ROW |1192 |30961 |trigger |1 |0 | |0 |
+ROW |1193 |30193 |Discard HTTP status codes |1 |0 | |0 |
+ROW |1194 |30194 |Discard HTTP status codes |1 |0 | |0 |
+ROW |1195 |30195 |Discard HTTP status codes |1 |0 | |0 |
+ROW |1196 |30236 |Discard HTTP status codes |1 |0 | |0 |
+ROW |1197 |30237 |Discard HTTP status codes |1 |0 | |0 |
+ROW |1198 |30238 |Discard HTTP status codes |1 |0 | |0 |
+ROW |1199 |33521 |trigger disabled non main channels |1 |0 | |0 |
+ROW |1200 |33810 |Primary metrics |1 |0 | |0 |
+ROW |1201 |33810 |Arbiter metrics |2 |0 | |0 |
+ROW |1202 |34346 |Too many missed regions trigger |1 |0 | |0 |
+ROW |1203 |34346 |Unresponsive peers trigger |2 |0 | |0 |
+ROW |1204 |34403 |Failed GC-related operations trigger |1 |0 | |0 |
+ROW |1205 |34443 |Too many unreachable messages trigger |1 |0 | |0 |
+ROW |1206 |33657 |ID filter |1 |0 | |0 |
+ROW |1207 |33658 |Not NVMe |2 |0 | |0 |
+ROW |1208 |33658 |Self-test |1 |0 | |0 |
+ROW |1209 |33669 |ID filter |1 |0 | |0 |
+ROW |1210 |33670 |Not NVMe |2 |0 | |0 |
+ROW |1211 |33670 |Self-test |1 |0 | |0 |
+ROW |1212 |28306 |trigger THRESHOLD_HI_CRIT |4 |0 | |0 |
+ROW |1213 |28306 |trigger THRESHOLD_HI_WARN |3 |0 | |0 |
+ROW |1214 |28306 |trigger THRESHOLD_LO_CRIT |2 |0 | |0 |
+ROW |1215 |28306 |trigger THRESHOLD_LO_WARN |1 |0 | |0 |
+ROW |1216 |28307 |trigger THRESHOLD_HI_CRIT |4 |0 | |0 |
+ROW |1217 |28307 |trigger THRESHOLD_HI_WARN |3 |0 | |0 |
+ROW |1218 |28307 |trigger THRESHOLD_LO_CRIT |2 |0 | |0 |
+ROW |1219 |28307 |trigger THRESHOLD_LO_WARN |1 |0 | |0 |
+ROW |1220 |33182 |trigger THRESHOLD_HI_CRIT |4 |0 | |0 |
+ROW |1221 |33182 |trigger THRESHOLD_HI_WARN |3 |0 | |0 |
+ROW |1222 |33182 |trigger THRESHOLD_LO_CRIT |2 |0 | |0 |
+ROW |1223 |33182 |trigger THRESHOLD_LO_WARN |1 |0 | |0 |
+ROW |1224 |36726 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |1225 |35185 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |1226 |35186 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |1227 |35218 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |1228 |35262 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |1229 |35296 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |1230 |35297 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |1231 |35363 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |1232 |35364 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |1233 |35430 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |1234 |35431 |Trigger disabled |1 |0 | |0 |
+ROW |1235 |35431 |Trigger enabled |2 |0 | |0 |
+ROW |1236 |35463 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |1237 |35502 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |1238 |35546 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |1239 |35590 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |1240 |35634 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |1241 |35679 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |1242 |35724 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |1243 |35769 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |1244 |34478 |Temp |1 |0 | |0 |
+ROW |1245 |34479 |Temp |1 |0 | |0 |
+ROW |1246 |34526 |Temp |1 |0 | |0 |
+ROW |1247 |34527 |Temp |1 |0 | |0 |
+ROW |1248 |34574 |Temp |1 |0 | |0 |
+ROW |1249 |34575 |Temp |1 |0 | |0 |
+ROW |1250 |34622 |Temp |1 |0 | |0 |
+ROW |1251 |34623 |Temp |1 |0 | |0 |
+ROW |1252 |34670 |Temp |1 |0 | |0 |
+ROW |1253 |34671 |Temp |1 |0 | |0 |
+ROW |1254 |35043 |Temp |1 |0 | |0 |
+ROW |1255 |35044 |Temp |1 |0 | |0 |
+ROW |1256 |34766 |Temp |1 |0 | |0 |
+ROW |1257 |34767 |Temp |1 |0 | |0 |
+ROW |1258 |34209 |Temp |1 |0 | |0 |
+ROW |1259 |34210 |Temp |1 |0 | |0 |
+ROW |1260 |34820 |Temp |1 |0 | |0 |
+ROW |1261 |34821 |Temp |1 |0 | |0 |
+ROW |1262 |34868 |Temp |1 |0 | |0 |
+ROW |1263 |34869 |Temp |1 |0 | |0 |
+ROW |1264 |34916 |Temp |1 |0 | |0 |
+ROW |1265 |34917 |Temp |1 |0 | |0 |
+ROW |1266 |33354 |Do not discover aggregate metrics |1 |0 | |0 |
+ROW |1267 |30687 |trigger SENSOR_HI_CRIT |5 |0 | |0 |
+ROW |1268 |30687 |trigger SENSOR_HI_DISAST |6 |0 | |0 |
+ROW |1269 |30687 |trigger SENSOR_HI_WARN |4 |0 | |0 |
+ROW |1270 |30687 |trigger SENSOR_LO_CRIT |2 |0 | |0 |
+ROW |1271 |30687 |trigger SENSOR_LO_DISAST |3 |0 | |0 |
+ROW |1272 |30687 |trigger SENSOR_LO_WARN |1 |0 | |0 |
TABLE |lld_override_condition
FIELDS|lld_override_conditionid|lld_overrideid|operator|macro |value |
ROW |116 |195 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
ROW |117 |196 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
-ROW |982 |1111 |8 |{#GRPC.CODE} |{$ETCD.GRPC_CODE.TRIGGER.MATCHES} |
-ROW |983 |1112 |8 |{#MODE} |tcp |
-ROW |984 |1113 |8 |{#MODE} |tcp |
-ROW |985 |1114 |8 |{#MODE} |tcp |
-ROW |986 |1115 |8 |{#MODE} |tcp |
-ROW |987 |1116 |8 |{#MODE} |tcp |
-ROW |988 |1117 |8 |{#MODE} |tcp |
-ROW |989 |1118 |9 |{#CHANNEL_ID} |{$HIKVISION_MAIN_CHANNEL_ID} |
-ROW |990 |1119 |8 |{#NODE_STATE} |1 |
-ROW |991 |1120 |8 |{#NODE_STATE} |7 |
-ROW |992 |1121 |8 |{#TYPE} |miss_peer_region_count |
-ROW |993 |1122 |8 |{#TYPE} |down_peer_region_count |
-ROW |994 |1123 |8 |{#TYPE} |failed |
-ROW |995 |1124 |8 |{#TYPE} |unreachable |
-ROW |996 |1125 |8 |{#ID} |{$SMART.ATTRIBUTE.ID.MATCHES} |
-ROW |997 |1125 |8 |{#NAME} |{$SMART.DISK.NAME.MATCHES} |
-ROW |998 |1126 |9 |{#DISKTYPE} |nvme |
-ROW |999 |1127 |8 |{#DISKTYPE} |nvme |
-ROW |1000 |1128 |8 |{#ID} |{$SMART.ATTRIBUTE.ID.MATCHES} |
-ROW |1001 |1128 |8 |{#NAME} |{$SMART.DISK.NAME.MATCHES} |
-ROW |1002 |1129 |9 |{#DISKTYPE} |nvme |
-ROW |1003 |1130 |8 |{#DISKTYPE} |nvme |
-ROW |1004 |1131 |8 |{#THRESHOLD_HI_CRIT} |^$ |
-ROW |1005 |1132 |8 |{#THRESHOLD_HI_WARN} |^$ |
-ROW |1006 |1133 |8 |{#THRESHOLD_LO_CRIT} |^$ |
-ROW |1007 |1134 |8 |{#THRESHOLD_LO_WARN} |^$ |
-ROW |1008 |1135 |8 |{#THRESHOLD_HI_CRIT} |^$ |
-ROW |1009 |1136 |8 |{#THRESHOLD_HI_WARN} |^$ |
-ROW |1010 |1137 |8 |{#THRESHOLD_LO_CRIT} |^$ |
-ROW |1011 |1138 |8 |{#THRESHOLD_LO_WARN} |^$ |
-ROW |1012 |1139 |8 |{#THRESHOLD_HI_CRIT} |^$ |
-ROW |1013 |1140 |8 |{#THRESHOLD_HI_WARN} |^$ |
-ROW |1014 |1141 |8 |{#THRESHOLD_LO_CRIT} |^$ |
-ROW |1015 |1142 |8 |{#THRESHOLD_LO_WARN} |^$ |
-ROW |1016 |1143 |9 |{#CISCO.IF.NAME} |{$CISCO.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |1017 |1144 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |1018 |1145 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |1019 |1146 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |1020 |1147 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |1021 |1148 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |1022 |1149 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |1023 |1150 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |1024 |1151 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |1025 |1152 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |1026 |1153 |8 |{#ZYXEL.IF.NAME} |.* |
-ROW |1027 |1154 |8 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |1028 |1155 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |1029 |1156 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |1030 |1157 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |1031 |1158 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |1032 |1159 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |1033 |1160 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |1034 |1161 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |1035 |1162 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |1036 |1163 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
-ROW |1037 |1164 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
-ROW |1038 |1165 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
-ROW |1039 |1166 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
-ROW |1040 |1167 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
-ROW |1041 |1168 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
-ROW |1042 |1169 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
-ROW |1043 |1170 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
-ROW |1044 |1171 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
-ROW |1045 |1172 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
-ROW |1046 |1173 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
-ROW |1047 |1174 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
-ROW |1048 |1175 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
-ROW |1049 |1176 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
-ROW |1050 |1177 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
-ROW |1051 |1178 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
-ROW |1052 |1179 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
-ROW |1053 |1180 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
-ROW |1054 |1181 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
-ROW |1055 |1182 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
-ROW |1056 |1183 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
-ROW |1057 |1184 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
-ROW |1058 |1185 |8 |{#FSTYPE} |3&pipe;4 |
+ROW |1059 |1192 |8 |{#GRPC.CODE} |{$ETCD.GRPC_CODE.TRIGGER.MATCHES} |
+ROW |1060 |1193 |8 |{#MODE} |tcp |
+ROW |1061 |1194 |8 |{#MODE} |tcp |
+ROW |1062 |1195 |8 |{#MODE} |tcp |
+ROW |1063 |1196 |8 |{#MODE} |tcp |
+ROW |1064 |1197 |8 |{#MODE} |tcp |
+ROW |1065 |1198 |8 |{#MODE} |tcp |
+ROW |1066 |1199 |9 |{#CHANNEL_ID} |{$HIKVISION_MAIN_CHANNEL_ID} |
+ROW |1067 |1200 |8 |{#NODE_STATE} |1 |
+ROW |1068 |1201 |8 |{#NODE_STATE} |7 |
+ROW |1069 |1202 |8 |{#TYPE} |miss_peer_region_count |
+ROW |1070 |1203 |8 |{#TYPE} |down_peer_region_count |
+ROW |1071 |1204 |8 |{#TYPE} |failed |
+ROW |1072 |1205 |8 |{#TYPE} |unreachable |
+ROW |1073 |1206 |8 |{#ID} |{$SMART.ATTRIBUTE.ID.MATCHES} |
+ROW |1074 |1206 |8 |{#NAME} |{$SMART.DISK.NAME.MATCHES} |
+ROW |1075 |1207 |9 |{#DISKTYPE} |nvme |
+ROW |1076 |1208 |8 |{#DISKTYPE} |nvme |
+ROW |1077 |1209 |8 |{#ID} |{$SMART.ATTRIBUTE.ID.MATCHES} |
+ROW |1078 |1209 |8 |{#NAME} |{$SMART.DISK.NAME.MATCHES} |
+ROW |1079 |1210 |9 |{#DISKTYPE} |nvme |
+ROW |1080 |1211 |8 |{#DISKTYPE} |nvme |
+ROW |1081 |1212 |8 |{#THRESHOLD_HI_CRIT} |^$ |
+ROW |1082 |1213 |8 |{#THRESHOLD_HI_WARN} |^$ |
+ROW |1083 |1214 |8 |{#THRESHOLD_LO_CRIT} |^$ |
+ROW |1084 |1215 |8 |{#THRESHOLD_LO_WARN} |^$ |
+ROW |1085 |1216 |8 |{#THRESHOLD_HI_CRIT} |^$ |
+ROW |1086 |1217 |8 |{#THRESHOLD_HI_WARN} |^$ |
+ROW |1087 |1218 |8 |{#THRESHOLD_LO_CRIT} |^$ |
+ROW |1088 |1219 |8 |{#THRESHOLD_LO_WARN} |^$ |
+ROW |1089 |1220 |8 |{#THRESHOLD_HI_CRIT} |^$ |
+ROW |1090 |1221 |8 |{#THRESHOLD_HI_WARN} |^$ |
+ROW |1091 |1222 |8 |{#THRESHOLD_LO_CRIT} |^$ |
+ROW |1092 |1223 |8 |{#THRESHOLD_LO_WARN} |^$ |
+ROW |1093 |1224 |9 |{#CISCO.IF.NAME} |{$CISCO.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |1094 |1225 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |1095 |1226 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |1096 |1227 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |1097 |1228 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |1098 |1229 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |1099 |1230 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |1100 |1231 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |1101 |1232 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |1102 |1233 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |1103 |1234 |8 |{#ZYXEL.IF.NAME} |.* |
+ROW |1104 |1235 |8 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |1105 |1236 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |1106 |1237 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |1107 |1238 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |1108 |1239 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |1109 |1240 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |1110 |1241 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |1111 |1242 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |1112 |1243 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |1113 |1244 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |1114 |1245 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |1115 |1246 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |1116 |1247 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |1117 |1248 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |1118 |1249 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |1119 |1250 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |1120 |1251 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |1121 |1252 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |1122 |1253 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |1123 |1254 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |1124 |1255 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |1125 |1256 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |1126 |1257 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |1127 |1258 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |1128 |1259 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |1129 |1260 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |1130 |1261 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |1131 |1262 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |1132 |1263 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |1133 |1264 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |1134 |1265 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |1135 |1266 |8 |{#FSTYPE} |3&pipe;4 |
TABLE |lld_override_operation
FIELDS|lld_override_operationid|lld_overrideid|operationobject|operator|value |
ROW |201 |195 |0 |2 |Humidity |
ROW |202 |196 |0 |2 |Humidity |
-ROW |1150 |1111 |1 |2 |Too many failed gRPC requests |
-ROW |1151 |1112 |0 |2 |Number of responses with codes |
-ROW |1152 |1113 |0 |2 |Number of responses with codes |
-ROW |1153 |1114 |0 |2 |Number of responses with codes |
-ROW |1154 |1115 |0 |2 |Number of responses with codes |
-ROW |1155 |1116 |0 |2 |Number of responses with codes |
-ROW |1156 |1117 |0 |2 |Number of responses with codes |
-ROW |1157 |1118 |1 |2 |Invalid video stream resolution parameters |
-ROW |1158 |1119 |0 |2 |Number of replicas |
-ROW |1159 |1119 |0 |2 |Unhealthy replicas |
-ROW |1160 |1119 |0 |2 |Number of unhealthy replicas |
-ROW |1161 |1119 |0 |2 |Replication lag |
-ROW |1162 |1120 |0 |2 |Replication lag |
-ROW |1163 |1121 |1 |2 |Too many missed regions |
-ROW |1164 |1122 |1 |2 |There are unresponsive peers |
-ROW |1165 |1123 |1 |2 |Too many failed GC-related operations |
-ROW |1166 |1124 |1 |2 |Too many failure messages |
-ROW |1167 |1125 |0 |8 | |
-ROW |1168 |1126 |0 |8 |Media&pipe;Percentage&pipe;Critical |
-ROW |1169 |1127 |0 |2 |Self-test |
-ROW |1170 |1128 |0 |8 | |
-ROW |1171 |1129 |0 |8 |Media&pipe;Percentage&pipe;Critical |
-ROW |1172 |1130 |0 |2 |Self-test |
-ROW |1173 |1131 |1 |8 |Temperature is above the critical threshold|
-ROW |1174 |1132 |1 |8 |Temperature is above the warning threshold |
-ROW |1175 |1133 |1 |8 |Temperature is below the critical threshold|
-ROW |1176 |1134 |1 |8 |Temperature is below the warning threshold |
-ROW |1177 |1135 |1 |8 |Fan speed is above the critical threshold |
-ROW |1178 |1136 |1 |8 |Fan speed is above the warning threshold |
-ROW |1179 |1137 |1 |8 |Fan speed is below the critical threshold |
-ROW |1180 |1138 |1 |8 |Fan speed is below the warning threshold |
-ROW |1181 |1139 |1 |8 |Voltage is above the critical threshold |
-ROW |1182 |1140 |1 |8 |Voltage is above the warning threshold |
-ROW |1183 |1141 |1 |8 |Voltage is below the critical threshold |
-ROW |1184 |1142 |1 |8 |Voltage is below the warning threshold |
-ROW |1185 |1143 |1 |8 |.* |
-ROW |1186 |1144 |1 |8 |.* |
-ROW |1187 |1145 |1 |8 |.* |
-ROW |1188 |1146 |1 |8 |.* |
-ROW |1189 |1147 |1 |8 |.* |
-ROW |1190 |1148 |1 |8 |.* |
-ROW |1191 |1149 |1 |8 |.* |
-ROW |1192 |1150 |1 |8 |.* |
-ROW |1193 |1151 |1 |8 |.* |
-ROW |1194 |1152 |1 |8 |.* |
-ROW |1195 |1153 |1 |8 |.* |
-ROW |1196 |1154 |1 |8 |.* |
-ROW |1197 |1155 |1 |8 |.* |
-ROW |1198 |1156 |1 |8 |.* |
-ROW |1199 |1157 |1 |8 |.* |
-ROW |1200 |1158 |1 |8 |.* |
-ROW |1201 |1159 |1 |8 |.* |
-ROW |1202 |1160 |1 |8 |.* |
-ROW |1203 |1161 |1 |8 |.* |
-ROW |1204 |1162 |1 |8 |.* |
-ROW |1205 |1163 |0 |2 |Humidity |
-ROW |1206 |1164 |0 |2 |Humidity |
-ROW |1207 |1165 |0 |2 |Humidity |
-ROW |1208 |1166 |0 |2 |Humidity |
-ROW |1209 |1167 |0 |2 |Humidity |
-ROW |1210 |1168 |0 |2 |Humidity |
-ROW |1211 |1169 |0 |2 |Humidity |
-ROW |1212 |1170 |0 |2 |Humidity |
-ROW |1213 |1171 |0 |2 |Humidity |
-ROW |1214 |1172 |0 |2 |Humidity |
-ROW |1215 |1173 |0 |2 |Humidity |
-ROW |1216 |1174 |0 |2 |Humidity |
-ROW |1217 |1175 |0 |2 |Humidity |
-ROW |1218 |1176 |0 |2 |Humidity |
-ROW |1219 |1177 |0 |2 |Humidity |
-ROW |1220 |1178 |0 |2 |Humidity |
-ROW |1221 |1179 |0 |2 |Humidity |
-ROW |1222 |1180 |0 |2 |Humidity |
-ROW |1223 |1181 |0 |2 |Humidity |
-ROW |1224 |1182 |0 |2 |Humidity |
-ROW |1225 |1183 |0 |2 |Humidity |
-ROW |1226 |1184 |0 |2 |Humidity |
-ROW |1227 |1185 |0 |2 |Saved |
-ROW |1228 |1186 |1 |2 |{#SENSOR_HI_CRIT} |
-ROW |1229 |1187 |1 |2 |{#SENSOR_HI_DISAST} |
-ROW |1230 |1188 |1 |2 |{#SENSOR_HI_WARN} |
-ROW |1231 |1189 |1 |2 |{#SENSOR_LO_CRIT} |
-ROW |1232 |1190 |1 |2 |{#SENSOR_LO_DISAST} |
-ROW |1233 |1191 |1 |2 |{#SENSOR_LO_WARN} |
+ROW |1234 |1192 |1 |2 |Too many failed gRPC requests |
+ROW |1235 |1193 |0 |2 |Number of responses with codes |
+ROW |1236 |1194 |0 |2 |Number of responses with codes |
+ROW |1237 |1195 |0 |2 |Number of responses with codes |
+ROW |1238 |1196 |0 |2 |Number of responses with codes |
+ROW |1239 |1197 |0 |2 |Number of responses with codes |
+ROW |1240 |1198 |0 |2 |Number of responses with codes |
+ROW |1241 |1199 |1 |2 |Invalid video stream resolution parameters |
+ROW |1242 |1200 |0 |2 |Number of replicas |
+ROW |1243 |1200 |0 |2 |Unhealthy replicas |
+ROW |1244 |1200 |0 |2 |Number of unhealthy replicas |
+ROW |1245 |1200 |0 |2 |Replication lag |
+ROW |1246 |1201 |0 |2 |Replication lag |
+ROW |1247 |1202 |1 |2 |Too many missed regions |
+ROW |1248 |1203 |1 |2 |There are unresponsive peers |
+ROW |1249 |1204 |1 |2 |Too many failed GC-related operations |
+ROW |1250 |1205 |1 |2 |Too many failure messages |
+ROW |1251 |1206 |0 |8 | |
+ROW |1252 |1207 |0 |8 |Media&pipe;Percentage&pipe;Critical |
+ROW |1253 |1208 |0 |2 |Self-test |
+ROW |1254 |1209 |0 |8 | |
+ROW |1255 |1210 |0 |8 |Media&pipe;Percentage&pipe;Critical |
+ROW |1256 |1211 |0 |2 |Self-test |
+ROW |1257 |1212 |1 |8 |Temperature is above the critical threshold|
+ROW |1258 |1213 |1 |8 |Temperature is above the warning threshold |
+ROW |1259 |1214 |1 |8 |Temperature is below the critical threshold|
+ROW |1260 |1215 |1 |8 |Temperature is below the warning threshold |
+ROW |1261 |1216 |1 |8 |Fan speed is above the critical threshold |
+ROW |1262 |1217 |1 |8 |Fan speed is above the warning threshold |
+ROW |1263 |1218 |1 |8 |Fan speed is below the critical threshold |
+ROW |1264 |1219 |1 |8 |Fan speed is below the warning threshold |
+ROW |1265 |1220 |1 |8 |Voltage is above the critical threshold |
+ROW |1266 |1221 |1 |8 |Voltage is above the warning threshold |
+ROW |1267 |1222 |1 |8 |Voltage is below the critical threshold |
+ROW |1268 |1223 |1 |8 |Voltage is below the warning threshold |
+ROW |1269 |1224 |1 |8 |.* |
+ROW |1270 |1225 |1 |8 |.* |
+ROW |1271 |1226 |1 |8 |.* |
+ROW |1272 |1227 |1 |8 |.* |
+ROW |1273 |1228 |1 |8 |.* |
+ROW |1274 |1229 |1 |8 |.* |
+ROW |1275 |1230 |1 |8 |.* |
+ROW |1276 |1231 |1 |8 |.* |
+ROW |1277 |1232 |1 |8 |.* |
+ROW |1278 |1233 |1 |8 |.* |
+ROW |1279 |1234 |1 |8 |.* |
+ROW |1280 |1235 |1 |8 |.* |
+ROW |1281 |1236 |1 |8 |.* |
+ROW |1282 |1237 |1 |8 |.* |
+ROW |1283 |1238 |1 |8 |.* |
+ROW |1284 |1239 |1 |8 |.* |
+ROW |1285 |1240 |1 |8 |.* |
+ROW |1286 |1241 |1 |8 |.* |
+ROW |1287 |1242 |1 |8 |.* |
+ROW |1288 |1243 |1 |8 |.* |
+ROW |1289 |1244 |0 |2 |Humidity |
+ROW |1290 |1245 |0 |2 |Humidity |
+ROW |1291 |1246 |0 |2 |Humidity |
+ROW |1292 |1247 |0 |2 |Humidity |
+ROW |1293 |1248 |0 |2 |Humidity |
+ROW |1294 |1249 |0 |2 |Humidity |
+ROW |1295 |1250 |0 |2 |Humidity |
+ROW |1296 |1251 |0 |2 |Humidity |
+ROW |1297 |1252 |0 |2 |Humidity |
+ROW |1298 |1253 |0 |2 |Humidity |
+ROW |1299 |1254 |0 |2 |Humidity |
+ROW |1300 |1255 |0 |2 |Humidity |
+ROW |1301 |1256 |0 |2 |Humidity |
+ROW |1302 |1257 |0 |2 |Humidity |
+ROW |1303 |1258 |0 |2 |Humidity |
+ROW |1304 |1259 |0 |2 |Humidity |
+ROW |1305 |1260 |0 |2 |Humidity |
+ROW |1306 |1261 |0 |2 |Humidity |
+ROW |1307 |1262 |0 |2 |Humidity |
+ROW |1308 |1263 |0 |2 |Humidity |
+ROW |1309 |1264 |0 |2 |Humidity |
+ROW |1310 |1265 |0 |2 |Humidity |
+ROW |1311 |1266 |0 |2 |Saved |
+ROW |1312 |1267 |1 |2 |{#SENSOR_HI_CRIT} |
+ROW |1313 |1268 |1 |2 |{#SENSOR_HI_DISAST} |
+ROW |1314 |1269 |1 |2 |{#SENSOR_HI_WARN} |
+ROW |1315 |1270 |1 |2 |{#SENSOR_LO_CRIT} |
+ROW |1316 |1271 |1 |2 |{#SENSOR_LO_DISAST} |
+ROW |1317 |1272 |1 |2 |{#SENSOR_LO_WARN} |
TABLE |lld_override_opstatus
FIELDS|lld_override_operationid|status|
ROW |201 |0 |
ROW |202 |0 |
-ROW |1150 |0 |
-ROW |1151 |0 |
-ROW |1152 |0 |
-ROW |1153 |0 |
-ROW |1154 |0 |
-ROW |1155 |0 |
-ROW |1156 |0 |
-ROW |1157 |0 |
-ROW |1158 |0 |
-ROW |1159 |0 |
-ROW |1160 |0 |
-ROW |1161 |0 |
-ROW |1162 |0 |
-ROW |1163 |0 |
-ROW |1164 |0 |
-ROW |1165 |0 |
-ROW |1166 |0 |
-ROW |1167 |0 |
-ROW |1168 |0 |
-ROW |1169 |0 |
-ROW |1170 |0 |
-ROW |1171 |0 |
-ROW |1172 |0 |
-ROW |1173 |0 |
-ROW |1174 |0 |
-ROW |1175 |0 |
-ROW |1176 |0 |
-ROW |1177 |0 |
-ROW |1178 |0 |
-ROW |1179 |0 |
-ROW |1180 |0 |
-ROW |1181 |0 |
-ROW |1182 |0 |
-ROW |1183 |0 |
-ROW |1184 |0 |
-ROW |1185 |0 |
-ROW |1186 |0 |
-ROW |1187 |0 |
-ROW |1188 |0 |
-ROW |1189 |0 |
-ROW |1190 |0 |
-ROW |1191 |0 |
-ROW |1192 |0 |
-ROW |1193 |0 |
-ROW |1194 |0 |
-ROW |1195 |0 |
-ROW |1196 |0 |
-ROW |1197 |0 |
-ROW |1198 |0 |
-ROW |1199 |0 |
-ROW |1200 |0 |
-ROW |1201 |0 |
-ROW |1202 |0 |
-ROW |1203 |0 |
-ROW |1204 |0 |
-ROW |1205 |0 |
-ROW |1206 |0 |
-ROW |1207 |0 |
-ROW |1208 |0 |
-ROW |1209 |0 |
-ROW |1210 |0 |
-ROW |1211 |0 |
-ROW |1212 |0 |
-ROW |1213 |0 |
-ROW |1214 |0 |
-ROW |1215 |0 |
-ROW |1216 |0 |
-ROW |1217 |0 |
-ROW |1218 |0 |
-ROW |1219 |0 |
-ROW |1220 |0 |
-ROW |1221 |0 |
-ROW |1222 |0 |
-ROW |1223 |0 |
-ROW |1224 |0 |
-ROW |1225 |0 |
-ROW |1226 |0 |
-ROW |1227 |0 |
-ROW |1228 |0 |
-ROW |1229 |0 |
-ROW |1230 |0 |
-ROW |1231 |0 |
-ROW |1232 |0 |
-ROW |1233 |0 |
+ROW |1234 |0 |
+ROW |1235 |0 |
+ROW |1236 |0 |
+ROW |1237 |0 |
+ROW |1238 |0 |
+ROW |1239 |0 |
+ROW |1240 |0 |
+ROW |1241 |0 |
+ROW |1242 |0 |
+ROW |1243 |0 |
+ROW |1244 |0 |
+ROW |1245 |0 |
+ROW |1246 |0 |
+ROW |1247 |0 |
+ROW |1248 |0 |
+ROW |1249 |0 |
+ROW |1250 |0 |
+ROW |1251 |0 |
+ROW |1252 |0 |
+ROW |1253 |0 |
+ROW |1254 |0 |
+ROW |1255 |0 |
+ROW |1256 |0 |
+ROW |1257 |0 |
+ROW |1258 |0 |
+ROW |1259 |0 |
+ROW |1260 |0 |
+ROW |1261 |0 |
+ROW |1262 |0 |
+ROW |1263 |0 |
+ROW |1264 |0 |
+ROW |1265 |0 |
+ROW |1266 |0 |
+ROW |1267 |0 |
+ROW |1268 |0 |
+ROW |1269 |0 |
+ROW |1270 |0 |
+ROW |1271 |0 |
+ROW |1272 |0 |
+ROW |1273 |0 |
+ROW |1274 |0 |
+ROW |1275 |0 |
+ROW |1276 |0 |
+ROW |1277 |0 |
+ROW |1278 |0 |
+ROW |1279 |0 |
+ROW |1280 |0 |
+ROW |1281 |0 |
+ROW |1282 |0 |
+ROW |1283 |0 |
+ROW |1284 |0 |
+ROW |1285 |0 |
+ROW |1286 |0 |
+ROW |1287 |0 |
+ROW |1288 |0 |
+ROW |1289 |0 |
+ROW |1290 |0 |
+ROW |1291 |0 |
+ROW |1292 |0 |
+ROW |1293 |0 |
+ROW |1294 |0 |
+ROW |1295 |0 |
+ROW |1296 |0 |
+ROW |1297 |0 |
+ROW |1298 |0 |
+ROW |1299 |0 |
+ROW |1300 |0 |
+ROW |1301 |0 |
+ROW |1302 |0 |
+ROW |1303 |0 |
+ROW |1304 |0 |
+ROW |1305 |0 |
+ROW |1306 |0 |
+ROW |1307 |0 |
+ROW |1308 |0 |
+ROW |1309 |0 |
+ROW |1310 |0 |
+ROW |1311 |0 |
+ROW |1312 |0 |
+ROW |1313 |0 |
+ROW |1314 |0 |
+ROW |1315 |0 |
+ROW |1316 |0 |
+ROW |1317 |0 |
TABLE |lld_override_opdiscover
FIELDS|lld_override_operationid|discover|
ROW |201 |1 |
ROW |202 |1 |
-ROW |1150 |0 |
-ROW |1151 |1 |
-ROW |1152 |1 |
-ROW |1153 |1 |
-ROW |1154 |1 |
-ROW |1155 |1 |
-ROW |1156 |1 |
-ROW |1157 |1 |
-ROW |1158 |0 |
-ROW |1159 |0 |
-ROW |1160 |0 |
-ROW |1161 |1 |
-ROW |1162 |1 |
-ROW |1163 |0 |
-ROW |1164 |0 |
-ROW |1165 |0 |
-ROW |1166 |0 |
-ROW |1167 |1 |
-ROW |1168 |1 |
-ROW |1169 |1 |
-ROW |1170 |1 |
-ROW |1171 |1 |
-ROW |1172 |1 |
-ROW |1173 |1 |
-ROW |1174 |1 |
-ROW |1175 |1 |
-ROW |1176 |1 |
-ROW |1177 |1 |
-ROW |1178 |1 |
-ROW |1179 |1 |
-ROW |1180 |1 |
-ROW |1181 |1 |
-ROW |1182 |1 |
-ROW |1183 |1 |
-ROW |1184 |1 |
-ROW |1185 |1 |
-ROW |1186 |1 |
-ROW |1187 |1 |
-ROW |1188 |1 |
-ROW |1189 |1 |
-ROW |1190 |1 |
-ROW |1191 |1 |
-ROW |1192 |1 |
-ROW |1193 |1 |
-ROW |1194 |1 |
-ROW |1195 |1 |
-ROW |1196 |0 |
-ROW |1197 |1 |
-ROW |1198 |1 |
-ROW |1199 |1 |
-ROW |1200 |1 |
-ROW |1201 |1 |
-ROW |1202 |1 |
-ROW |1203 |1 |
-ROW |1204 |1 |
-ROW |1205 |1 |
-ROW |1206 |1 |
-ROW |1207 |1 |
-ROW |1208 |1 |
-ROW |1209 |1 |
-ROW |1210 |1 |
-ROW |1211 |1 |
-ROW |1212 |1 |
-ROW |1213 |1 |
-ROW |1214 |1 |
-ROW |1215 |1 |
-ROW |1216 |1 |
-ROW |1217 |1 |
-ROW |1218 |1 |
-ROW |1219 |1 |
-ROW |1220 |1 |
-ROW |1221 |1 |
-ROW |1222 |1 |
-ROW |1223 |1 |
-ROW |1224 |1 |
-ROW |1225 |1 |
-ROW |1226 |1 |
-ROW |1227 |1 |
-ROW |1228 |1 |
-ROW |1229 |1 |
-ROW |1230 |1 |
-ROW |1231 |1 |
-ROW |1232 |1 |
-ROW |1233 |1 |
+ROW |1234 |0 |
+ROW |1235 |1 |
+ROW |1236 |1 |
+ROW |1237 |1 |
+ROW |1238 |1 |
+ROW |1239 |1 |
+ROW |1240 |1 |
+ROW |1241 |1 |
+ROW |1242 |0 |
+ROW |1243 |0 |
+ROW |1244 |0 |
+ROW |1245 |1 |
+ROW |1246 |1 |
+ROW |1247 |0 |
+ROW |1248 |0 |
+ROW |1249 |0 |
+ROW |1250 |0 |
+ROW |1251 |1 |
+ROW |1252 |1 |
+ROW |1253 |1 |
+ROW |1254 |1 |
+ROW |1255 |1 |
+ROW |1256 |1 |
+ROW |1257 |1 |
+ROW |1258 |1 |
+ROW |1259 |1 |
+ROW |1260 |1 |
+ROW |1261 |1 |
+ROW |1262 |1 |
+ROW |1263 |1 |
+ROW |1264 |1 |
+ROW |1265 |1 |
+ROW |1266 |1 |
+ROW |1267 |1 |
+ROW |1268 |1 |
+ROW |1269 |1 |
+ROW |1270 |1 |
+ROW |1271 |1 |
+ROW |1272 |1 |
+ROW |1273 |1 |
+ROW |1274 |1 |
+ROW |1275 |1 |
+ROW |1276 |1 |
+ROW |1277 |1 |
+ROW |1278 |1 |
+ROW |1279 |1 |
+ROW |1280 |0 |
+ROW |1281 |1 |
+ROW |1282 |1 |
+ROW |1283 |1 |
+ROW |1284 |1 |
+ROW |1285 |1 |
+ROW |1286 |1 |
+ROW |1287 |1 |
+ROW |1288 |1 |
+ROW |1289 |1 |
+ROW |1290 |1 |
+ROW |1291 |1 |
+ROW |1292 |1 |
+ROW |1293 |1 |
+ROW |1294 |1 |
+ROW |1295 |1 |
+ROW |1296 |1 |
+ROW |1297 |1 |
+ROW |1298 |1 |
+ROW |1299 |1 |
+ROW |1300 |1 |
+ROW |1301 |1 |
+ROW |1302 |1 |
+ROW |1303 |1 |
+ROW |1304 |1 |
+ROW |1305 |1 |
+ROW |1306 |1 |
+ROW |1307 |1 |
+ROW |1308 |1 |
+ROW |1309 |1 |
+ROW |1310 |1 |
+ROW |1311 |1 |
+ROW |1312 |1 |
+ROW |1313 |1 |
+ROW |1314 |1 |
+ROW |1315 |1 |
+ROW |1316 |1 |
+ROW |1317 |1 |
TABLE |item_parameter
FIELDS|item_parameterid|itemid|name |value |
@@ -51252,216 +51260,6 @@ ROW |5704 |34447 |Application |TiKV node
ROW |5705 |34448 |Application |TiKV node |
ROW |5706 |34449 |Application |TiKV node |
ROW |5707 |34450 |Application |TiKV node |
-ROW |5708 |34451 |Status | |
-ROW |5709 |34452 |Status | |
-ROW |5710 |34453 |Status | |
-ROW |5711 |34454 |General | |
-ROW |5712 |34455 |General | |
-ROW |5713 |34456 |General | |
-ROW |5714 |34457 |General | |
-ROW |5715 |34458 |General | |
-ROW |5716 |34459 |General | |
-ROW |5717 |34460 |General | |
-ROW |5718 |34461 |General | |
-ROW |5719 |34462 |Status | |
-ROW |5720 |34463 |Status | |
-ROW |5721 |34464 |Status | |
-ROW |5722 |34465 |Status | |
-ROW |5723 |34466 |Status | |
-ROW |5724 |34467 |Status | |
-ROW |5725 |34468 |Status | |
-ROW |5726 |34469 |Status | |
-ROW |5727 |34470 |Status | |
-ROW |5728 |34471 |Status | |
-ROW |5729 |34472 |Status | |
-ROW |5730 |34473 |Status | |
-ROW |5731 |34474 |Status | |
-ROW |5732 |34475 |Status | |
-ROW |5733 |34482 |Status | |
-ROW |5734 |34483 |Status | |
-ROW |5735 |34484 |Status | |
-ROW |5736 |34485 |Status | |
-ROW |5737 |34486 |Status | |
-ROW |5738 |34487 |General | |
-ROW |5739 |34488 |Status | |
-ROW |5740 |34489 |Status | |
-ROW |5741 |34490 |Status | |
-ROW |5742 |34491 |Status | |
-ROW |5743 |34492 |Status | |
-ROW |5744 |34493 |Status | |
-ROW |5745 |34494 |Status | |
-ROW |5746 |34495 |Status | |
-ROW |5747 |34496 |Status | |
-ROW |5748 |34497 |Status | |
-ROW |5749 |34498 |Status | |
-ROW |5750 |34499 |Status | |
-ROW |5751 |34500 |Status | |
-ROW |5752 |34501 |Status | |
-ROW |5753 |34502 |General | |
-ROW |5754 |34503 |General | |
-ROW |5755 |34504 |General | |
-ROW |5756 |34505 |General | |
-ROW |5757 |34506 |General | |
-ROW |5758 |34507 |General | |
-ROW |5759 |34508 |General | |
-ROW |5760 |34509 |General | |
-ROW |5761 |34510 |Status | |
-ROW |5762 |34511 |Status | |
-ROW |5763 |34512 |Status | |
-ROW |5764 |34513 |Status | |
-ROW |5765 |34514 |Status | |
-ROW |5766 |34515 |Status | |
-ROW |5767 |34516 |Status | |
-ROW |5768 |34517 |Status | |
-ROW |5769 |34518 |Status | |
-ROW |5770 |34519 |Status | |
-ROW |5771 |34520 |Status | |
-ROW |5772 |34521 |Status | |
-ROW |5773 |34522 |Status | |
-ROW |5774 |34523 |Status | |
-ROW |5775 |34530 |Status | |
-ROW |5776 |34531 |Status | |
-ROW |5777 |34532 |Status | |
-ROW |5778 |34533 |Status | |
-ROW |5779 |34534 |Status | |
-ROW |5780 |34535 |General | |
-ROW |5781 |34536 |Status | |
-ROW |5782 |34537 |Status | |
-ROW |5783 |34538 |Status | |
-ROW |5784 |34539 |Status | |
-ROW |5785 |34540 |Status | |
-ROW |5786 |34541 |Status | |
-ROW |5787 |34542 |Status | |
-ROW |5788 |34543 |Status | |
-ROW |5789 |34544 |Status | |
-ROW |5790 |34545 |Status | |
-ROW |5791 |34546 |Status | |
-ROW |5792 |34547 |Status | |
-ROW |5793 |34548 |Status | |
-ROW |5794 |34549 |Status | |
-ROW |5795 |34550 |General | |
-ROW |5796 |34551 |General | |
-ROW |5797 |34552 |General | |
-ROW |5798 |34553 |General | |
-ROW |5799 |34554 |General | |
-ROW |5800 |34555 |General | |
-ROW |5801 |34556 |General | |
-ROW |5802 |34557 |General | |
-ROW |5803 |34558 |Status | |
-ROW |5804 |34559 |Status | |
-ROW |5805 |34560 |Status | |
-ROW |5806 |34561 |Status | |
-ROW |5807 |34562 |Status | |
-ROW |5808 |34563 |Status | |
-ROW |5809 |34564 |Status | |
-ROW |5810 |34565 |Status | |
-ROW |5811 |34566 |Status | |
-ROW |5812 |34567 |Status | |
-ROW |5813 |34568 |Status | |
-ROW |5814 |34569 |Status | |
-ROW |5815 |34570 |Status | |
-ROW |5816 |34571 |Status | |
-ROW |5817 |34578 |Status | |
-ROW |5818 |34579 |Status | |
-ROW |5819 |34580 |Status | |
-ROW |5820 |34581 |Status | |
-ROW |5821 |34582 |Status | |
-ROW |5822 |34583 |General | |
-ROW |5823 |34584 |Status | |
-ROW |5824 |34585 |Status | |
-ROW |5825 |34586 |Status | |
-ROW |5826 |34587 |Status | |
-ROW |5827 |34588 |Status | |
-ROW |5828 |34589 |Status | |
-ROW |5829 |34590 |Status | |
-ROW |5830 |34591 |Status | |
-ROW |5831 |34592 |Status | |
-ROW |5832 |34593 |Status | |
-ROW |5833 |34594 |Status | |
-ROW |5834 |34595 |Status | |
-ROW |5835 |34596 |Status | |
-ROW |5836 |34597 |Status | |
-ROW |5837 |34598 |General | |
-ROW |5838 |34599 |General | |
-ROW |5839 |34600 |General | |
-ROW |5840 |34601 |General | |
-ROW |5841 |34602 |General | |
-ROW |5842 |34603 |General | |
-ROW |5843 |34604 |General | |
-ROW |5844 |34605 |General | |
-ROW |5845 |34606 |Status | |
-ROW |5846 |34607 |Status | |
-ROW |5847 |34608 |Status | |
-ROW |5848 |34609 |Status | |
-ROW |5849 |34610 |Status | |
-ROW |5850 |34611 |Status | |
-ROW |5851 |34612 |Status | |
-ROW |5852 |34613 |Status | |
-ROW |5853 |34614 |Status | |
-ROW |5854 |34615 |Status | |
-ROW |5855 |34616 |Status | |
-ROW |5856 |34617 |Status | |
-ROW |5857 |34618 |Status | |
-ROW |5858 |34619 |Status | |
-ROW |5859 |34626 |Status | |
-ROW |5860 |34627 |Status | |
-ROW |5861 |34628 |Status | |
-ROW |5862 |34629 |Status | |
-ROW |5863 |34630 |Status | |
-ROW |5864 |34631 |General | |
-ROW |5865 |34632 |Status | |
-ROW |5866 |34633 |Status | |
-ROW |5867 |34634 |Status | |
-ROW |5868 |34635 |Status | |
-ROW |5869 |34636 |Status | |
-ROW |5870 |34637 |Status | |
-ROW |5871 |34638 |Status | |
-ROW |5872 |34639 |Status | |
-ROW |5873 |34640 |Status | |
-ROW |5874 |34641 |Status | |
-ROW |5875 |34642 |Status | |
-ROW |5876 |34643 |Status | |
-ROW |5877 |34644 |Status | |
-ROW |5878 |34645 |Status | |
-ROW |5879 |34646 |General | |
-ROW |5880 |34647 |General | |
-ROW |5881 |34648 |General | |
-ROW |5882 |34649 |General | |
-ROW |5883 |34650 |General | |
-ROW |5884 |34651 |General | |
-ROW |5885 |34652 |General | |
-ROW |5886 |34653 |General | |
-ROW |5887 |34654 |Status | |
-ROW |5888 |34655 |Status | |
-ROW |5889 |34656 |Status | |
-ROW |5890 |34657 |Status | |
-ROW |5891 |34658 |Status | |
-ROW |5892 |34659 |Status | |
-ROW |5893 |34660 |Status | |
-ROW |5894 |34661 |Status | |
-ROW |5895 |34662 |Status | |
-ROW |5896 |34663 |Status | |
-ROW |5897 |34664 |Status | |
-ROW |5898 |34665 |Status | |
-ROW |5899 |34666 |Status | |
-ROW |5900 |34667 |Status | |
-ROW |5901 |34674 |Status | |
-ROW |5902 |34675 |Status | |
-ROW |5903 |34676 |Status | |
-ROW |5904 |34677 |Status | |
-ROW |5905 |34678 |Status | |
-ROW |5906 |34679 |General | |
-ROW |5907 |34680 |Status | |
-ROW |5908 |34681 |Status | |
-ROW |5909 |34682 |Status | |
-ROW |5910 |34683 |Status | |
-ROW |5911 |34684 |Status | |
-ROW |5912 |34685 |Status | |
-ROW |5913 |34686 |Status | |
-ROW |5914 |34687 |Status | |
-ROW |5915 |34688 |Status | |
-ROW |5916 |34689 |Status | |
-ROW |5917 |34690 |Status | |
ROW |5918 |34691 |Status | |
ROW |5919 |34692 |Status | |
ROW |5920 |34693 |Status | |
@@ -51504,216 +51302,6 @@ ROW |5956 |34735 |Status |
ROW |5957 |34736 |Status | |
ROW |5958 |34737 |Status | |
ROW |5959 |34738 |Status | |
-ROW |5960 |34739 |Status | |
-ROW |5961 |34740 |Status | |
-ROW |5962 |34741 |Status | |
-ROW |5963 |34742 |General | |
-ROW |5964 |34743 |General | |
-ROW |5965 |34744 |General | |
-ROW |5966 |34745 |General | |
-ROW |5967 |34746 |General | |
-ROW |5968 |34747 |General | |
-ROW |5969 |34748 |General | |
-ROW |5970 |34749 |General | |
-ROW |5971 |34750 |Status | |
-ROW |5972 |34751 |Status | |
-ROW |5973 |34752 |Status | |
-ROW |5974 |34753 |Status | |
-ROW |5975 |34754 |Status | |
-ROW |5976 |34755 |Status | |
-ROW |5977 |34756 |Status | |
-ROW |5978 |34757 |Status | |
-ROW |5979 |34758 |Status | |
-ROW |5980 |34759 |Status | |
-ROW |5981 |34760 |Status | |
-ROW |5982 |34761 |Status | |
-ROW |5983 |34762 |Status | |
-ROW |5984 |34763 |Status | |
-ROW |5985 |34770 |Status | |
-ROW |5986 |34771 |Status | |
-ROW |5987 |34772 |Status | |
-ROW |5988 |34773 |Status | |
-ROW |5989 |34774 |Status | |
-ROW |5990 |34775 |General | |
-ROW |5991 |34776 |Status | |
-ROW |5992 |34777 |Status | |
-ROW |5993 |34778 |Status | |
-ROW |5994 |34779 |Status | |
-ROW |5995 |34780 |Status | |
-ROW |5996 |34781 |Status | |
-ROW |5997 |34782 |Status | |
-ROW |5998 |34783 |Status | |
-ROW |5999 |34784 |Status | |
-ROW |6000 |34785 |Status | |
-ROW |6001 |34786 |Status | |
-ROW |6002 |34787 |Status | |
-ROW |6003 |34788 |General | |
-ROW |6004 |34180 |Status | |
-ROW |6005 |34181 |Status | |
-ROW |6006 |34182 |General | |
-ROW |6007 |34183 |General | |
-ROW |6008 |34185 |General | |
-ROW |6009 |34186 |General | |
-ROW |6010 |34187 |General | |
-ROW |6011 |34188 |General | |
-ROW |6012 |34189 |General | |
-ROW |6013 |34190 |Status | |
-ROW |6014 |34191 |Status | |
-ROW |6015 |34192 |Status | |
-ROW |6016 |34193 |Status | |
-ROW |6017 |34194 |Status | |
-ROW |6018 |34195 |Status | |
-ROW |6019 |34196 |Status | |
-ROW |6020 |34200 |Status | |
-ROW |6021 |34201 |Status | |
-ROW |6022 |34202 |Status | |
-ROW |6023 |34203 |Status | |
-ROW |6024 |34204 |Status | |
-ROW |6025 |34205 |Status | |
-ROW |6026 |34206 |Status | |
-ROW |6027 |34790 |Status | |
-ROW |6028 |34791 |Status | |
-ROW |6029 |34792 |Status | |
-ROW |6030 |34212 |Status | |
-ROW |6031 |34213 |Status | |
-ROW |6032 |34214 |Status | |
-ROW |6033 |34215 |Status | |
-ROW |6034 |34216 |Status | |
-ROW |6035 |34217 |General | |
-ROW |6036 |34218 |Status | |
-ROW |6037 |34219 |Status | |
-ROW |6038 |34220 |Status | |
-ROW |6039 |34221 |Status | |
-ROW |6040 |34222 |Status | |
-ROW |6041 |34223 |Status | |
-ROW |6042 |34224 |Status | |
-ROW |6043 |34225 |Status | |
-ROW |6044 |34793 |Status | |
-ROW |6045 |34794 |Status | |
-ROW |6046 |34795 |Status | |
-ROW |6047 |34796 |General | |
-ROW |6048 |34797 |General | |
-ROW |6049 |34798 |General | |
-ROW |6050 |34799 |General | |
-ROW |6051 |34800 |General | |
-ROW |6052 |34801 |General | |
-ROW |6053 |34802 |General | |
-ROW |6054 |34803 |General | |
-ROW |6055 |34804 |Status | |
-ROW |6056 |34805 |Status | |
-ROW |6057 |34806 |Status | |
-ROW |6058 |34807 |Status | |
-ROW |6059 |34808 |Status | |
-ROW |6060 |34809 |Status | |
-ROW |6061 |34810 |Status | |
-ROW |6062 |34811 |Status | |
-ROW |6063 |34812 |Status | |
-ROW |6064 |34813 |Status | |
-ROW |6065 |34814 |Status | |
-ROW |6066 |34815 |Status | |
-ROW |6067 |34816 |Status | |
-ROW |6068 |34817 |Status | |
-ROW |6069 |34824 |Status | |
-ROW |6070 |34825 |Status | |
-ROW |6071 |34826 |Status | |
-ROW |6072 |34827 |Status | |
-ROW |6073 |34828 |Status | |
-ROW |6074 |34829 |General | |
-ROW |6075 |34830 |Status | |
-ROW |6076 |34831 |Status | |
-ROW |6077 |34832 |Status | |
-ROW |6078 |34833 |Status | |
-ROW |6079 |34834 |Status | |
-ROW |6080 |34835 |Status | |
-ROW |6081 |34836 |Status | |
-ROW |6082 |34837 |Status | |
-ROW |6083 |34838 |Status | |
-ROW |6084 |34839 |Status | |
-ROW |6085 |34840 |Status | |
-ROW |6086 |34841 |Status | |
-ROW |6087 |34842 |Status | |
-ROW |6088 |34843 |Status | |
-ROW |6089 |34844 |General | |
-ROW |6090 |34845 |General | |
-ROW |6091 |34846 |General | |
-ROW |6092 |34847 |General | |
-ROW |6093 |34848 |General | |
-ROW |6094 |34849 |General | |
-ROW |6095 |34850 |General | |
-ROW |6096 |34851 |General | |
-ROW |6097 |34852 |Status | |
-ROW |6098 |34853 |Status | |
-ROW |6099 |34854 |Status | |
-ROW |6100 |34855 |Status | |
-ROW |6101 |34856 |Status | |
-ROW |6102 |34857 |Status | |
-ROW |6103 |34858 |Status | |
-ROW |6104 |34859 |Status | |
-ROW |6105 |34860 |Status | |
-ROW |6106 |34861 |Status | |
-ROW |6107 |34862 |Status | |
-ROW |6108 |34863 |Status | |
-ROW |6109 |34864 |Status | |
-ROW |6110 |34865 |Status | |
-ROW |6111 |34872 |Status | |
-ROW |6112 |34873 |Status | |
-ROW |6113 |34874 |Status | |
-ROW |6114 |34875 |Status | |
-ROW |6115 |34876 |Status | |
-ROW |6116 |34877 |General | |
-ROW |6117 |34878 |Status | |
-ROW |6118 |34879 |Status | |
-ROW |6119 |34880 |Status | |
-ROW |6120 |34881 |Status | |
-ROW |6121 |34882 |Status | |
-ROW |6122 |34883 |Status | |
-ROW |6123 |34884 |Status | |
-ROW |6124 |34885 |Status | |
-ROW |6125 |34886 |Status | |
-ROW |6126 |34887 |Status | |
-ROW |6127 |34888 |Status | |
-ROW |6128 |34889 |Status | |
-ROW |6129 |34890 |Status | |
-ROW |6130 |34891 |Status | |
-ROW |6131 |34892 |General | |
-ROW |6132 |34893 |General | |
-ROW |6133 |34894 |General | |
-ROW |6134 |34895 |General | |
-ROW |6135 |34896 |General | |
-ROW |6136 |34897 |General | |
-ROW |6137 |34898 |General | |
-ROW |6138 |34899 |General | |
-ROW |6139 |34900 |Status | |
-ROW |6140 |34901 |Status | |
-ROW |6141 |34902 |Status | |
-ROW |6142 |34903 |Status | |
-ROW |6143 |34904 |Status | |
-ROW |6144 |34905 |Status | |
-ROW |6145 |34906 |Status | |
-ROW |6146 |34907 |Status | |
-ROW |6147 |34908 |Status | |
-ROW |6148 |34909 |Status | |
-ROW |6149 |34910 |Status | |
-ROW |6150 |34911 |Status | |
-ROW |6151 |34912 |Status | |
-ROW |6152 |34913 |Status | |
-ROW |6153 |34920 |Status | |
-ROW |6154 |34921 |Status | |
-ROW |6155 |34922 |Status | |
-ROW |6156 |34923 |Status | |
-ROW |6157 |34924 |Status | |
-ROW |6158 |34925 |General | |
-ROW |6159 |34926 |Status | |
-ROW |6160 |34927 |Status | |
-ROW |6161 |34928 |Status | |
-ROW |6162 |34929 |Status | |
-ROW |6163 |34930 |Status | |
-ROW |6164 |34931 |Status | |
-ROW |6165 |34932 |Status | |
-ROW |6166 |34933 |Status | |
-ROW |6167 |34934 |Status | |
-ROW |6168 |34935 |Status | |
-ROW |6169 |34936 |Status | |
ROW |6170 |34937 |Application |WildFly |
ROW |6171 |34938 |Application |WildFly |
ROW |6172 |34939 |Application |WildFly |
@@ -54392,4 +53980,425 @@ ROW |8844 |36877 |Application |Monitoring agent
ROW |8845 |36878 |Application |Monitoring agent |
ROW |8846 |36879 |Application |Status |
ROW |8847 |36880 |Application |Monitoring agent |
+ROW |8848 |36881 |Application |Docker: Container {#NAME} |
+ROW |8849 |34451 |Application |Status |
+ROW |8850 |34452 |Application |Status |
+ROW |8851 |34453 |Application |Status |
+ROW |8852 |34454 |Application |General |
+ROW |8853 |34455 |Application |General |
+ROW |8854 |34456 |Application |General |
+ROW |8855 |34457 |Application |General |
+ROW |8856 |34458 |Application |General |
+ROW |8857 |34459 |Application |General |
+ROW |8858 |34460 |Application |General |
+ROW |8859 |34461 |Application |General |
+ROW |8860 |34462 |Application |Status |
+ROW |8861 |34463 |Application |Status |
+ROW |8862 |34464 |Application |Status |
+ROW |8863 |34465 |Application |Status |
+ROW |8864 |34466 |Application |Status |
+ROW |8865 |34467 |Application |Status |
+ROW |8866 |34468 |Application |Status |
+ROW |8867 |34469 |Application |Status |
+ROW |8868 |34470 |Application |Status |
+ROW |8869 |34471 |Application |Status |
+ROW |8870 |34472 |Application |Status |
+ROW |8871 |34473 |Application |Status |
+ROW |8872 |34474 |Application |Status |
+ROW |8873 |34475 |Application |Status |
+ROW |8874 |34482 |Application |Status |
+ROW |8875 |34483 |Application |Status |
+ROW |8876 |34484 |Application |Status |
+ROW |8877 |34485 |Application |Status |
+ROW |8878 |34486 |Application |Status |
+ROW |8879 |34487 |Application |General |
+ROW |8880 |34488 |Application |Status |
+ROW |8881 |34489 |Application |Status |
+ROW |8882 |34490 |Application |Status |
+ROW |8883 |34491 |Application |Status |
+ROW |8884 |34492 |Application |Status |
+ROW |8885 |34493 |Application |Status |
+ROW |8886 |34494 |Application |Status |
+ROW |8887 |34495 |Application |Status |
+ROW |8888 |34496 |Application |Status |
+ROW |8889 |34497 |Application |Status |
+ROW |8890 |34498 |Application |Status |
+ROW |8891 |34499 |Application |Status |
+ROW |8892 |34500 |Application |Status |
+ROW |8893 |34501 |Application |Status |
+ROW |8894 |34502 |Application |General |
+ROW |8895 |34503 |Application |General |
+ROW |8896 |34504 |Application |General |
+ROW |8897 |34505 |Application |General |
+ROW |8898 |34506 |Application |General |
+ROW |8899 |34507 |Application |General |
+ROW |8900 |34508 |Application |General |
+ROW |8901 |34509 |Application |General |
+ROW |8902 |34510 |Application |Status |
+ROW |8903 |34511 |Application |Status |
+ROW |8904 |34512 |Application |Status |
+ROW |8905 |34513 |Application |Status |
+ROW |8906 |34514 |Application |Status |
+ROW |8907 |34515 |Application |Status |
+ROW |8908 |34516 |Application |Status |
+ROW |8909 |34517 |Application |Status |
+ROW |8910 |34518 |Application |Status |
+ROW |8911 |34519 |Application |Status |
+ROW |8912 |34520 |Application |Status |
+ROW |8913 |34521 |Application |Status |
+ROW |8914 |34522 |Application |Status |
+ROW |8915 |34523 |Application |Status |
+ROW |8916 |34530 |Application |Status |
+ROW |8917 |34531 |Application |Status |
+ROW |8918 |34532 |Application |Status |
+ROW |8919 |34533 |Application |Status |
+ROW |8920 |34534 |Application |Status |
+ROW |8921 |34535 |Application |General |
+ROW |8922 |34536 |Application |Status |
+ROW |8923 |34537 |Application |Status |
+ROW |8924 |34538 |Application |Status |
+ROW |8925 |34539 |Application |Status |
+ROW |8926 |34540 |Application |Status |
+ROW |8927 |34541 |Application |Status |
+ROW |8928 |34542 |Application |Status |
+ROW |8929 |34543 |Application |Status |
+ROW |8930 |34544 |Application |Status |
+ROW |8931 |34545 |Application |Status |
+ROW |8932 |34546 |Application |Status |
+ROW |8933 |34547 |Application |Status |
+ROW |8934 |34548 |Application |Status |
+ROW |8935 |34549 |Application |Status |
+ROW |8936 |34550 |Application |General |
+ROW |8937 |34551 |Application |General |
+ROW |8938 |34552 |Application |General |
+ROW |8939 |34553 |Application |General |
+ROW |8940 |34554 |Application |General |
+ROW |8941 |34555 |Application |General |
+ROW |8942 |34556 |Application |General |
+ROW |8943 |34557 |Application |General |
+ROW |8944 |34558 |Application |Status |
+ROW |8945 |34559 |Application |Status |
+ROW |8946 |34560 |Application |Status |
+ROW |8947 |34561 |Application |Status |
+ROW |8948 |34562 |Application |Status |
+ROW |8949 |34563 |Application |Status |
+ROW |8950 |34564 |Application |Status |
+ROW |8951 |34565 |Application |Status |
+ROW |8952 |34566 |Application |Status |
+ROW |8953 |34567 |Application |Status |
+ROW |8954 |34568 |Application |Status |
+ROW |8955 |34569 |Application |Status |
+ROW |8956 |34570 |Application |Status |
+ROW |8957 |34571 |Application |Status |
+ROW |8958 |34578 |Application |Status |
+ROW |8959 |34579 |Application |Status |
+ROW |8960 |34580 |Application |Status |
+ROW |8961 |34581 |Application |Status |
+ROW |8962 |34582 |Application |Status |
+ROW |8963 |34583 |Application |General |
+ROW |8964 |34584 |Application |Status |
+ROW |8965 |34585 |Application |Status |
+ROW |8966 |34586 |Application |Status |
+ROW |8967 |34587 |Application |Status |
+ROW |8968 |34588 |Application |Status |
+ROW |8969 |34589 |Application |Status |
+ROW |8970 |34590 |Application |Status |
+ROW |8971 |34591 |Application |Status |
+ROW |8972 |34592 |Application |Status |
+ROW |8973 |34593 |Application |Status |
+ROW |8974 |34594 |Application |Status |
+ROW |8975 |34595 |Application |Status |
+ROW |8976 |34596 |Application |Status |
+ROW |8977 |34597 |Application |Status |
+ROW |8978 |34598 |Application |General |
+ROW |8979 |34599 |Application |General |
+ROW |8980 |34600 |Application |General |
+ROW |8981 |34601 |Application |General |
+ROW |8982 |34602 |Application |General |
+ROW |8983 |34603 |Application |General |
+ROW |8984 |34604 |Application |General |
+ROW |8985 |34605 |Application |General |
+ROW |8986 |34606 |Application |Status |
+ROW |8987 |34607 |Application |Status |
+ROW |8988 |34608 |Application |Status |
+ROW |8989 |34609 |Application |Status |
+ROW |8990 |34610 |Application |Status |
+ROW |8991 |34611 |Application |Status |
+ROW |8992 |34612 |Application |Status |
+ROW |8993 |34613 |Application |Status |
+ROW |8994 |34614 |Application |Status |
+ROW |8995 |34615 |Application |Status |
+ROW |8996 |34616 |Application |Status |
+ROW |8997 |34617 |Application |Status |
+ROW |8998 |34618 |Application |Status |
+ROW |8999 |34619 |Application |Status |
+ROW |9000 |34626 |Application |Status |
+ROW |9001 |34627 |Application |Status |
+ROW |9002 |34628 |Application |Status |
+ROW |9003 |34629 |Application |Status |
+ROW |9004 |34630 |Application |Status |
+ROW |9005 |34631 |Application |General |
+ROW |9006 |34632 |Application |Status |
+ROW |9007 |34633 |Application |Status |
+ROW |9008 |34634 |Application |Status |
+ROW |9009 |34635 |Application |Status |
+ROW |9010 |34636 |Application |Status |
+ROW |9011 |34637 |Application |Status |
+ROW |9012 |34638 |Application |Status |
+ROW |9013 |34639 |Application |Status |
+ROW |9014 |34640 |Application |Status |
+ROW |9015 |34641 |Application |Status |
+ROW |9016 |34642 |Application |Status |
+ROW |9017 |34643 |Application |Status |
+ROW |9018 |34644 |Application |Status |
+ROW |9019 |34645 |Application |Status |
+ROW |9020 |34646 |Application |General |
+ROW |9021 |34647 |Application |General |
+ROW |9022 |34648 |Application |General |
+ROW |9023 |34649 |Application |General |
+ROW |9024 |34650 |Application |General |
+ROW |9025 |34651 |Application |General |
+ROW |9026 |34652 |Application |General |
+ROW |9027 |34653 |Application |General |
+ROW |9028 |34654 |Application |Status |
+ROW |9029 |34655 |Application |Status |
+ROW |9030 |34656 |Application |Status |
+ROW |9031 |34657 |Application |Status |
+ROW |9032 |34658 |Application |Status |
+ROW |9033 |34659 |Application |Status |
+ROW |9034 |34660 |Application |Status |
+ROW |9035 |34661 |Application |Status |
+ROW |9036 |34662 |Application |Status |
+ROW |9037 |34663 |Application |Status |
+ROW |9038 |34664 |Application |Status |
+ROW |9039 |34665 |Application |Status |
+ROW |9040 |34666 |Application |Status |
+ROW |9041 |34667 |Application |Status |
+ROW |9042 |34674 |Application |Status |
+ROW |9043 |34675 |Application |Status |
+ROW |9044 |34676 |Application |Status |
+ROW |9045 |34677 |Application |Status |
+ROW |9046 |34678 |Application |Status |
+ROW |9047 |34679 |Application |General |
+ROW |9048 |34680 |Application |Status |
+ROW |9049 |34681 |Application |Status |
+ROW |9050 |34682 |Application |Status |
+ROW |9051 |34683 |Application |Status |
+ROW |9052 |34684 |Application |Status |
+ROW |9053 |34685 |Application |Status |
+ROW |9054 |34686 |Application |Status |
+ROW |9055 |34687 |Application |Status |
+ROW |9056 |34688 |Application |Status |
+ROW |9057 |34689 |Application |Status |
+ROW |9058 |34690 |Application |Status |
+ROW |9059 |34739 |Application |Status |
+ROW |9060 |34740 |Application |Status |
+ROW |9061 |34741 |Application |Status |
+ROW |9062 |34742 |Application |General |
+ROW |9063 |34743 |Application |General |
+ROW |9064 |34744 |Application |General |
+ROW |9065 |34745 |Application |General |
+ROW |9066 |34746 |Application |General |
+ROW |9067 |34747 |Application |General |
+ROW |9068 |34748 |Application |General |
+ROW |9069 |34749 |Application |General |
+ROW |9070 |34750 |Application |Status |
+ROW |9071 |34751 |Application |Status |
+ROW |9072 |34752 |Application |Status |
+ROW |9073 |34753 |Application |Status |
+ROW |9074 |34754 |Application |Status |
+ROW |9075 |34755 |Application |Status |
+ROW |9076 |34756 |Application |Status |
+ROW |9077 |34757 |Application |Status |
+ROW |9078 |34758 |Application |Status |
+ROW |9079 |34759 |Application |Status |
+ROW |9080 |34760 |Application |Status |
+ROW |9081 |34761 |Application |Status |
+ROW |9082 |34762 |Application |Status |
+ROW |9083 |34763 |Application |Status |
+ROW |9084 |34770 |Application |Status |
+ROW |9085 |34771 |Application |Status |
+ROW |9086 |34772 |Application |Status |
+ROW |9087 |34773 |Application |Status |
+ROW |9088 |34774 |Application |Status |
+ROW |9089 |34775 |Application |General |
+ROW |9090 |34776 |Application |Status |
+ROW |9091 |34777 |Application |Status |
+ROW |9092 |34778 |Application |Status |
+ROW |9093 |34779 |Application |Status |
+ROW |9094 |34780 |Application |Status |
+ROW |9095 |34781 |Application |Status |
+ROW |9096 |34782 |Application |Status |
+ROW |9097 |34783 |Application |Status |
+ROW |9098 |34784 |Application |Status |
+ROW |9099 |34785 |Application |Status |
+ROW |9100 |34786 |Application |Status |
+ROW |9101 |34180 |Application |Status |
+ROW |9102 |34181 |Application |Status |
+ROW |9103 |34182 |Application |General |
+ROW |9104 |34183 |Application |General |
+ROW |9105 |34185 |Application |General |
+ROW |9106 |34186 |Application |General |
+ROW |9107 |34187 |Application |General |
+ROW |9108 |34188 |Application |General |
+ROW |9109 |34189 |Application |General |
+ROW |9110 |34190 |Application |Status |
+ROW |9111 |34191 |Application |Status |
+ROW |9112 |34192 |Application |Status |
+ROW |9113 |34193 |Application |Status |
+ROW |9114 |34194 |Application |Status |
+ROW |9115 |34195 |Application |Status |
+ROW |9116 |34196 |Application |Status |
+ROW |9117 |34200 |Application |Status |
+ROW |9118 |34201 |Application |Status |
+ROW |9119 |34202 |Application |Status |
+ROW |9120 |34203 |Application |Status |
+ROW |9121 |34204 |Application |Status |
+ROW |9122 |34205 |Application |Status |
+ROW |9123 |34206 |Application |Status |
+ROW |9124 |34787 |Application |Status |
+ROW |9125 |34788 |Application |General |
+ROW |9126 |34212 |Application |Status |
+ROW |9127 |34213 |Application |Status |
+ROW |9128 |34214 |Application |Status |
+ROW |9129 |34215 |Application |Status |
+ROW |9130 |34216 |Application |Status |
+ROW |9131 |34217 |Application |General |
+ROW |9132 |34218 |Application |Status |
+ROW |9133 |34219 |Application |Status |
+ROW |9134 |34220 |Application |Status |
+ROW |9135 |34221 |Application |Status |
+ROW |9136 |34222 |Application |Status |
+ROW |9137 |34223 |Application |Status |
+ROW |9138 |34224 |Application |Status |
+ROW |9139 |34225 |Application |Status |
+ROW |9140 |34790 |Application |Status |
+ROW |9141 |34791 |Application |Status |
+ROW |9142 |34792 |Application |Status |
+ROW |9143 |34793 |Application |Status |
+ROW |9144 |34794 |Application |Status |
+ROW |9145 |34795 |Application |Status |
+ROW |9146 |34796 |Application |General |
+ROW |9147 |34797 |Application |General |
+ROW |9148 |34798 |Application |General |
+ROW |9149 |34799 |Application |General |
+ROW |9150 |34800 |Application |General |
+ROW |9151 |34801 |Application |General |
+ROW |9152 |34802 |Application |General |
+ROW |9153 |34803 |Application |General |
+ROW |9154 |34804 |Application |Status |
+ROW |9155 |34805 |Application |Status |
+ROW |9156 |34806 |Application |Status |
+ROW |9157 |34807 |Application |Status |
+ROW |9158 |34808 |Application |Status |
+ROW |9159 |34809 |Application |Status |
+ROW |9160 |34810 |Application |Status |
+ROW |9161 |34811 |Application |Status |
+ROW |9162 |34812 |Application |Status |
+ROW |9163 |34813 |Application |Status |
+ROW |9164 |34814 |Application |Status |
+ROW |9165 |34815 |Application |Status |
+ROW |9166 |34816 |Application |Status |
+ROW |9167 |34817 |Application |Status |
+ROW |9168 |34824 |Application |Status |
+ROW |9169 |34825 |Application |Status |
+ROW |9170 |34826 |Application |Status |
+ROW |9171 |34827 |Application |Status |
+ROW |9172 |34828 |Application |Status |
+ROW |9173 |34829 |Application |General |
+ROW |9174 |34830 |Application |Status |
+ROW |9175 |34831 |Application |Status |
+ROW |9176 |34832 |Application |Status |
+ROW |9177 |34833 |Application |Status |
+ROW |9178 |34834 |Application |Status |
+ROW |9179 |34835 |Application |Status |
+ROW |9180 |34836 |Application |Status |
+ROW |9181 |34837 |Application |Status |
+ROW |9182 |34838 |Application |Status |
+ROW |9183 |34839 |Application |Status |
+ROW |9184 |34840 |Application |Status |
+ROW |9185 |34841 |Application |Status |
+ROW |9186 |34842 |Application |Status |
+ROW |9187 |34843 |Application |Status |
+ROW |9188 |34844 |Application |General |
+ROW |9189 |34845 |Application |General |
+ROW |9190 |34846 |Application |General |
+ROW |9191 |34847 |Application |General |
+ROW |9192 |34848 |Application |General |
+ROW |9193 |34849 |Application |General |
+ROW |9194 |34850 |Application |General |
+ROW |9195 |34851 |Application |General |
+ROW |9196 |34852 |Application |Status |
+ROW |9197 |34853 |Application |Status |
+ROW |9198 |34854 |Application |Status |
+ROW |9199 |34855 |Application |Status |
+ROW |9200 |34856 |Application |Status |
+ROW |9201 |34857 |Application |Status |
+ROW |9202 |34858 |Application |Status |
+ROW |9203 |34859 |Application |Status |
+ROW |9204 |34860 |Application |Status |
+ROW |9205 |34861 |Application |Status |
+ROW |9206 |34862 |Application |Status |
+ROW |9207 |34863 |Application |Status |
+ROW |9208 |34864 |Application |Status |
+ROW |9209 |34865 |Application |Status |
+ROW |9210 |34872 |Application |Status |
+ROW |9211 |34873 |Application |Status |
+ROW |9212 |34874 |Application |Status |
+ROW |9213 |34875 |Application |Status |
+ROW |9214 |34876 |Application |Status |
+ROW |9215 |34877 |Application |General |
+ROW |9216 |34878 |Application |Status |
+ROW |9217 |34879 |Application |Status |
+ROW |9218 |34880 |Application |Status |
+ROW |9219 |34881 |Application |Status |
+ROW |9220 |34882 |Application |Status |
+ROW |9221 |34883 |Application |Status |
+ROW |9222 |34884 |Application |Status |
+ROW |9223 |34885 |Application |Status |
+ROW |9224 |34886 |Application |Status |
+ROW |9225 |34887 |Application |Status |
+ROW |9226 |34888 |Application |Status |
+ROW |9227 |34889 |Application |Status |
+ROW |9228 |34890 |Application |Status |
+ROW |9229 |34891 |Application |Status |
+ROW |9230 |34892 |Application |General |
+ROW |9231 |34893 |Application |General |
+ROW |9232 |34894 |Application |General |
+ROW |9233 |34895 |Application |General |
+ROW |9234 |34896 |Application |General |
+ROW |9235 |34897 |Application |General |
+ROW |9236 |34898 |Application |General |
+ROW |9237 |34899 |Application |General |
+ROW |9238 |34900 |Application |Status |
+ROW |9239 |34901 |Application |Status |
+ROW |9240 |34902 |Application |Status |
+ROW |9241 |34903 |Application |Status |
+ROW |9242 |34904 |Application |Status |
+ROW |9243 |34905 |Application |Status |
+ROW |9244 |34906 |Application |Status |
+ROW |9245 |34907 |Application |Status |
+ROW |9246 |34908 |Application |Status |
+ROW |9247 |34909 |Application |Status |
+ROW |9248 |34910 |Application |Status |
+ROW |9249 |34911 |Application |Status |
+ROW |9250 |34912 |Application |Status |
+ROW |9251 |34913 |Application |Status |
+ROW |9252 |34920 |Application |Status |
+ROW |9253 |34921 |Application |Status |
+ROW |9254 |34922 |Application |Status |
+ROW |9255 |34923 |Application |Status |
+ROW |9256 |34924 |Application |Status |
+ROW |9257 |34925 |Application |General |
+ROW |9258 |34926 |Application |Status |
+ROW |9259 |34927 |Application |Status |
+ROW |9260 |34928 |Application |Status |
+ROW |9261 |34929 |Application |Status |
+ROW |9262 |34930 |Application |Status |
+ROW |9263 |34931 |Application |Status |
+ROW |9264 |34932 |Application |Status |
+ROW |9265 |34933 |Application |Status |
+ROW |9266 |34934 |Application |Status |
+ROW |9267 |34935 |Application |Status |
+ROW |9268 |34936 |Application |Status |